delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / runtime / kcontrol / componentchooser / componentchooserterminal.h
blob76e61aa890d95e89e2be83017a7113b5767f9d69
1 /***************************************************************************
2 componentchooserterminal.h - description
3 -------------------
4 copyright : (C) 2002 by Joseph Wenninger
5 email : jowenn@kde.org
6 ***************************************************************************/
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License version 2 as *
12 * published by the Free Software Foundationi *
13 * *
14 ***************************************************************************/
16 #ifndef _COMPONENTCHOOSERTERMINAL_H_
17 #define _COMPONENTCHOOSERTERMINAL_H_
19 #include "ui_terminalemulatorconfig_ui.h"
20 #include "componentchooser.h"
21 class KConfig;
22 class CfgPlugin;
24 class CfgTerminalEmulator: public QWidget, public Ui::TerminalEmulatorConfig_UI, public CfgPlugin
26 Q_OBJECT
27 public:
28 CfgTerminalEmulator(QWidget *parent);
29 virtual ~CfgTerminalEmulator();
30 virtual void load(KConfig *cfg);
31 virtual void save(KConfig *cfg);
32 virtual void defaults();
34 protected Q_SLOTS:
35 void selectTerminalApp();
36 void configChanged();
38 Q_SIGNALS:
39 void changed(bool);
42 #endif