You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.2 KiB
86 lines
2.2 KiB
/*
|
|
* Copyright (c) 2000 Matthias Elter <elter@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; 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__
|