NepomukDaemons
nepomukserverkcm.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _NEPOMUK_SERVER_KCM_H_
00020 #define _NEPOMUK_SERVER_KCM_H_
00021
00022 #include <KCModule>
00023 #include "ui_nepomukconfigwidget.h"
00024 #include "nepomukserverinterface.h"
00025
00026 namespace Nepomuk {
00027 class ServerConfigModule : public KCModule, private Ui::NepomukConfigWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 ServerConfigModule( QWidget* parent, const QVariantList& args );
00033 ~ServerConfigModule();
00034
00035 public Q_SLOTS:
00036 void load();
00037 void save();
00038 void defaults();
00039
00040 private Q_SLOTS:
00041 void updateStrigiStatus();
00042 void updateStrigiSettingsInRunningInstance();
00043
00044 private:
00045 bool isStrigiRunning();
00046
00047 org::kde::NepomukServer m_serverInterface;
00048 };
00049 }
00050
00051 #endif