summaryrefslogtreecommitdiffabout
path: root/microkde/kdialog.h
Side-by-side diff
Diffstat (limited to 'microkde/kdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kdialog.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/microkde/kdialog.h b/microkde/kdialog.h
new file mode 100644
index 0000000..703d268
--- a/dev/null
+++ b/microkde/kdialog.h
@@ -0,0 +1,18 @@
+#ifndef MINIKDE_KDIALOG_H
+#define MINIKDE_KDIALOG_H
+
+#include <qdialog.h>
+
+class KDialog : public QDialog
+{
+ Q_OBJECT
+ public:
+ KDialog( QWidget *parent=0, const char *name=0, bool modal=true );
+
+ static int spacingHint();
+ static int marginHint();
+ static int spacingHintSmall();
+ static int marginHintSmall();
+};
+
+#endif