summaryrefslogtreecommitdiffstats
path: root/yakuake/src/first_run_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'yakuake/src/first_run_dialog.h')
-rw-r--r--yakuake/src/first_run_dialog.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/yakuake/src/first_run_dialog.h b/yakuake/src/first_run_dialog.h
new file mode 100644
index 0000000..1dbe33a
--- /dev/null
+++ b/yakuake/src/first_run_dialog.h
@@ -0,0 +1,42 @@
+/*
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+*/
+
+/*
+ Copyright (C) 2007 Eike Hein <hein@kde.org>
+*/
+
+
+#ifndef FIRST_RUN_DIALOG_H
+#define FIRST_RUN_DIALOG_H
+
+
+#include "first_run_dialog_ui.h"
+
+
+class KShortcut;
+
+class FirstRunDialog : public FirstRunDialogUI
+{
+ Q_OBJECT
+
+ public:
+ explicit FirstRunDialog(QWidget* parent, const char* name=NULL);
+ ~FirstRunDialog();
+
+ KShortcut shortcut();
+
+
+ public slots:
+ void setShortcut(const KShortcut& shortcut);
+
+
+ private slots:
+ void validateShortcut(const KShortcut& shortcut);
+};
+
+
+#endif /* FIRST_RUN_DIALOG_H */