diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 37333bf25ad9a4c538250f5af2f9f1d666362883 (patch) | |
tree | c45e8df5b9efbffe07eb3d9340df7811c7e16943 /ksysv/ksv_core.h | |
download | tdeadmin-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_core.h')
-rw-r--r-- | ksysv/ksv_core.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/ksysv/ksv_core.h b/ksysv/ksv_core.h new file mode 100644 index 0000000..58d1fa2 --- /dev/null +++ b/ksysv/ksv_core.h @@ -0,0 +1,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 QPushButton; +class QStyleSheet; +class KAboutData; +class KCompletion; +class KSVItem; + +namespace ksv +{ + bool getServiceDescription (const QString& path, QString& res); + + QString breakWords (const QString& s, int amount); + + /** + * \return the Unicode string for the (c) symbol. + */ + const QString& copyrightSymbol (); + + QStyleSheet* styleSheet (); + + const QString& logFileFilter (); + const QString& nativeFileFilter (); + + const QString& logFileExtension (); + const QString& 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 + |