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"
|
2022-12-10 14:26:38 +02:00
|
|
|
|
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:
|
2022-12-10 14:26:38 +02:00
|
|
|
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:
|
2022-12-10 14:26:38 +02:00
|
|
|
void selectTerminalApp();
|
|
|
|
void configChanged();
|
2014-11-15 03:14:34 +02:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
2022-12-10 14:26:38 +02:00
|
|
|
void changed(bool);
|
2014-11-15 03:14:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|