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.
tdebase/kcontrol/kcontrol/proxywidget.h

83 lines
1.7 KiB

/*
Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@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
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __PROXYWIDGET_H__
#define __PROXYWIDGET_H__
class TQWidget;
class TQPushButton;
class TQFrame;
class KCModule;
class KAboutData;
#include "dockcontainer.h"
#include <tqscrollview.h>
class ProxyView;
class ProxyWidget : public QWidget
{
Q_OBJECT
public:
ProxyWidget(KCModule *client, TQString title, const char *name=0, bool run_as_root = false);
~ProxyWidget();
TQString quickHelp() const;
const KAboutData *aboutData() const;
public slots:
void handbookClicked();
void helpClicked();
void defaultClicked();
void applyClicked();
void resetClicked();
void rootClicked();
void clientChanged(bool state);
signals:
void closed();
void handbookRequest();
void helpRequest();
void changed(bool state);
void runAsRoot();
void quickHelpChanged();
private:
TQPushButton *_handbook, *_default, *_apply, *_reset, *_root;
TQFrame *_sep;
KCModule *_client;
ProxyView *view;
};
#endif