blob: 9cab355e96c2f8caa14484434c4bcdfbec626257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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 <tqstring.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 TQString &name, const TQString &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
*/
TQString description () const;
private:
/**
* Copy Constructor
*/
KSVService(const KSVService&);
/**
* Default Constructor
*/
KSVService();
protected:
friend class KServiceGUI;
friend class KServiceManagerWidget;
/**
* Constructor
*/
KSVService (const TQString &name, const TQString &basedir);
/**
* Name of the service
*/
TQString name_;
/**
* Description of the service (i.e. what it does)
*/
TQString desc_;
/**
* Base dir for storing runlevel dirs
*/
TQString base_;
int levels, kPriority, sPriority;
};
#endif // KSV_SERVICE_H
|