summaryrefslogtreecommitdiffabout
path: root/microkde/kdialog.h
Unidiff
Diffstat (limited to 'microkde/kdialog.h') (more/less context) (show 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 @@
1#ifndef MINIKDE_KDIALOG_H
2#define MINIKDE_KDIALOG_H
3
4#include <qdialog.h>
5
6class KDialog : public QDialog
7{
8 Q_OBJECT
9 public:
10 KDialog( QWidget *parent=0, const char *name=0, bool modal=true );
11
12 static int spacingHint();
13 static int marginHint();
14 static int spacingHintSmall();
15 static int marginHintSmall();
16};
17
18#endif