summaryrefslogtreecommitdiffstats
path: root/krusader/ActionMan/actionman.h
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/ActionMan/actionman.h')
-rw-r--r--krusader/ActionMan/actionman.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/krusader/ActionMan/actionman.h b/krusader/ActionMan/actionman.h
new file mode 100644
index 0000000..bbfe33f
--- /dev/null
+++ b/krusader/ActionMan/actionman.h
@@ -0,0 +1,36 @@
+//
+// C++ Interface: actionman
+//
+// Description: This manages all useractions
+//
+//
+// Author: Jonas B�r (C) 2006
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#ifndef ACTIONMAN_H
+#define ACTIONMAN_H
+
+#include <kdialogbase.h>
+
+class UserActionPage;
+
+class ActionMan : public KDialogBase {
+Q_OBJECT
+public:
+ ActionMan( QWidget* parent=0 );
+ ~ActionMan();
+
+protected slots:
+ void slotClose();
+ void slotApply();
+ void slotEnableApplyButton();
+ void slotDisableApplyButton();
+
+private:
+ UserActionPage* userActionPage;
+};
+
+#endif // ifndef ACTIONMAN_H