kde-workspace/kcontrol/componentchooser/componentchooserterminal.h

44 lines
1.5 KiB
C
Raw Normal View History

2014-11-15 03:14:34 +02:00
/***************************************************************************
componentchooserterminal.h - description
-------------------
copyright : (C) 2002 by Joseph Wenninger
email : jowenn@kde.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License version 2 as *
* published by the Free Software Foundationi *
* *
***************************************************************************/
#ifndef _COMPONENTCHOOSERTERMINAL_H_
#define _COMPONENTCHOOSERTERMINAL_H_
#include "ui_terminalemulatorconfig_ui.h"
#include "componentchooser.h"
2014-11-15 03:14:34 +02:00
class KConfig;
class CfgPlugin;
class CfgTerminalEmulator: public QWidget, public Ui::TerminalEmulatorConfig_UI, public CfgPlugin
{
Q_OBJECT
public:
CfgTerminalEmulator(QWidget *parent);
virtual ~CfgTerminalEmulator();
virtual void load(KConfig *cfg);
virtual void save(KConfig *cfg);
virtual void defaults();
2014-11-15 03:14:34 +02:00
protected Q_SLOTS:
void selectTerminalApp();
void configChanged();
2014-11-15 03:14:34 +02:00
Q_SIGNALS:
void changed(bool);
2014-11-15 03:14:34 +02:00
};
#endif