summaryrefslogtreecommitdiffstats
path: root/ksysv/ksv_service.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/ksv_service.h
downloadtdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.tar.gz
tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.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/ksv_service.h')
-rw-r--r--ksysv/ksv_service.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/ksysv/ksv_service.h b/ksysv/ksv_service.h
new file mode 100644
index 0000000..cdf42e1
--- /dev/null
+++ b/ksysv/ksv_service.h
@@ -0,0 +1,99 @@
+/***************************************************************************
+ 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_H
+#define KSV_SERVICE_H
+
+#include <qstring.h>
+
+/**
+ * The long description for this class goes here
+ *
+ * @short This is the short description
+ * @author Peter Putzer <putzer@kde.org>
+ * @version 0.1
+ */
+class KSVService
+{
+public:
+
+ /**
+ * Named constructor
+ */
+ static KSVService* newService (const QString &name, const QString &basedir);
+
+ /**
+ * Destructor
+ */
+ ~KSVService();
+
+ /**
+ * Is the service active in runlevel "level"?
+ */
+ bool isOn (int level) const;
+
+ /**
+ * Is the service configured for runlevel "level"?
+ */
+ bool isConfigured (int level) const;
+
+ /**
+ * Set the service on or off in runlevel "level"
+ */
+ int set( int level, bool on = true );
+
+ /**
+ * Returns the description of the service
+ */
+ QString description () const;
+
+private:
+ /**
+ * Copy Constructor
+ */
+ KSVService(const KSVService&);
+
+ /**
+ * Default Constructor
+ */
+ KSVService();
+
+protected:
+ friend class KServiceGUI;
+ friend class KServiceManagerWidget;
+
+ /**
+ * Constructor
+ */
+ KSVService (const QString &name, const QString &basedir);
+
+ /**
+ * Name of the service
+ */
+ QString name_;
+
+ /**
+ * Description of the service (i.e. what it does)
+ */
+ QString desc_;
+
+ /**
+ * Base dir for storing runlevel dirs
+ */
+ QString base_;
+
+ int levels, kPriority, sPriority;
+};
+
+#endif // KSV_SERVICE_H