summaryrefslogtreecommitdiffstats
path: root/ksysv/ServiceDlg.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit37333bf25ad9a4c538250f5af2f9f1d666362883 (patch)
treec45e8df5b9efbffe07eb3d9340df7811c7e16943 /ksysv/ServiceDlg.h
downloadtdeadmin-37333bf2.tar.gz
tdeadmin-37333bf2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysv/ServiceDlg.h')
-rw-r--r--ksysv/ServiceDlg.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/ksysv/ServiceDlg.h b/ksysv/ServiceDlg.h
new file mode 100644
index 0000000..34fb69c
--- /dev/null
+++ b/ksysv/ServiceDlg.h
@@ -0,0 +1,56 @@
+/***************************************************************************
+ begin : Sun Oct 3 1999
+ copyright : (C) 1999 by Peter Putzer
+ email : putzer@kde.org
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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; version 2. *
+ * *
+ ***************************************************************************/
+
+#ifndef KSV_SERVICE_DIALOG_H
+#define KSV_SERVICE_DIALOG_H
+
+#include <kdialogbase.h>
+#include <qmap.h>
+
+class KSVDragList;
+class KSVItem;
+class QString;
+class QComboBox;
+
+class ServiceDlg : public KDialogBase
+{
+ Q_OBJECT
+
+public:
+ ServiceDlg (const QString& action, const QString& label,
+ QWidget* parent = 0, const char* name = 0);
+ virtual ~ServiceDlg();
+
+ int count() const;
+
+ void resetChooser (KSVDragList* data, bool edit);
+
+public slots:
+ virtual void show ();
+ virtual void hide ();
+ void toggle ();
+
+private:
+ QComboBox* mServices;
+ QMap<QString,const KSVItem*> mMapServices;
+
+protected slots:
+ virtual void slotApply();
+
+signals:
+ void doAction (const QString& on);
+ void display (bool);
+};
+
+#endif