blob: d0b95632607a7c419bf287f4c811676212b1af07 (
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
|
/***************************************************************************
begin : Sun Oct 3 1999
copyright : (C) 1997-99 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_CORE_H
#define KSV_CORE_H
class TQPushButton;
class TQStyleSheet;
class KAboutData;
class KCompletion;
class KSVItem;
namespace ksv
{
bool getServiceDescription (const TQString& path, TQString& res);
TQString breakWords (const TQString& s, int amount);
/**
* \return the Unicode string for the (c) symbol.
*/
const TQString& copyrightSymbol ();
TQStyleSheet* styleSheet ();
const TQString& logFileFilter ();
const TQString& nativeFileFilter ();
const TQString& logFileExtension ();
const TQString& nativeFileExtension ();
KCompletion* serviceCompletion ();
KCompletion* numberCompletion ();
extern const int runlevelNumber;
extern KAboutData* about;
enum Messages {
RunlevelsReadOnly = 0,
CouldNotGenerateSortingNumber
};
extern const char* notifications[];
}
#endif // KSV_CORE_H
|