From 37333bf25ad9a4c538250f5af2f9f1d666362883 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- ksysv/ksv_service.h | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 ksysv/ksv_service.h (limited to 'ksysv/ksv_service.h') 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 + +/** + * The long description for this class goes here + * + * @short This is the short description + * @author Peter Putzer + * @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 -- cgit v1.2.3