summaryrefslogtreecommitdiffstats
path: root/kcontrol/kicker/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/kicker/main.h')
-rw-r--r--kcontrol/kicker/main.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/kcontrol/kicker/main.h b/kcontrol/kicker/main.h
new file mode 100644
index 000000000..06bf2ec03
--- /dev/null
+++ b/kcontrol/kicker/main.h
@@ -0,0 +1,85 @@
+/*
+ * Copyright (c) 2000 Matthias Elter <[email protected]>
+ *
+ * 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ */
+
+#ifndef __main_h__
+#define __main_h__
+
+#include <dcopobject.h>
+#include <tdeconfig.h>
+
+#include "extensionInfo.h"
+
+class TQComboBox;
+class TDEAboutData;
+class KDirWatch;
+
+class KickerConfig : public TQObject, public DCOPObject
+{
+ Q_OBJECT
+ K_DCOP
+
+public:
+ static KickerConfig *the();
+ ~KickerConfig();
+
+ void populateExtensionInfoList(TQComboBox* list);
+ void reloadExtensionInfo();
+ void saveExtentionInfo();
+ const ExtensionInfoList& extensionsInfo();
+
+ TQString configName();
+ void notifyKicker();
+ void restartKicker();
+
+ TQString quickHelp() const;
+ TDEAboutData *aboutData();
+
+ int currentPanelIndex() const { return m_currentPanelIndex; }
+
+k_dcop:
+ void jumpToPanel(const TQString& panelConfig);
+
+signals:
+ void positionPanelChanged(int);
+ void hidingPanelChanged(int);
+ void extensionInfoChanged();
+ void extensionAdded(ExtensionInfo*);
+ void extensionRemoved(ExtensionInfo*);
+ void extensionChanged(const TQString&);
+ void extensionAboutToChange(const TQString&);
+ void aboutToNotifyKicker();
+
+protected:
+ void init();
+ void setupExtensionInfo(TDEConfig& c, bool checkExists, bool reloadIfExists = false);
+
+protected slots:
+ void configChanged(const TQString&);
+ void setCurrentPanelIndex(int);
+
+private:
+ KickerConfig(TQWidget *parent = 0, const char *name = 0);
+
+ static KickerConfig *m_self;
+
+ KDirWatch *configFileWatch;
+ ExtensionInfoList m_extensionInfo;
+ int m_screenNumber;
+ uint m_currentPanelIndex;
+};
+
+#endif // __main_h__