summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/terminalwidget.h
authorzecke <zecke>2002-10-08 20:03:29 (UTC)
committer zecke <zecke>2002-10-08 20:03:29 (UTC)
commit9237d1adcf23ee11f16881fbeea51e0bb3ec0b2f (patch) (unidiff)
treeda7ac82c0abd3948d5e18e6e8db3a9277d4922ac /noncore/apps/opie-console/terminalwidget.h
parentb81a4afcb4d363bf1ee50aa7b43a1f1566addc9d (diff)
downloadopie-9237d1adcf23ee11f16881fbeea51e0bb3ec0b2f.zip
opie-9237d1adcf23ee11f16881fbeea51e0bb3ec0b2f.tar.gz
opie-9237d1adcf23ee11f16881fbeea51e0bb3ec0b2f.tar.bz2
Default added the TerminalEmulation Widget
MainWindow: do save the profiles on deconstruction MetaFactory Brown Paper bag bug fixed. take care of the right name in terminalWidget.... opie-console.pro add the widgets IOLayerBase a basic widget for speed, parity and flow control settings Terminal Widget a the ported TerminalConfiguration dialog
Diffstat (limited to 'noncore/apps/opie-console/terminalwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/terminalwidget.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/terminalwidget.h b/noncore/apps/opie-console/terminalwidget.h
new file mode 100644
index 0000000..c6c2be2
--- a/dev/null
+++ b/noncore/apps/opie-console/terminalwidget.h
@@ -0,0 +1,46 @@
1#ifndef OPIE_TERMINAL_WIDGET_H
2#define OPIE_TERMINAL_WIDGET_H
3
4#include "profiledialogwidget.h"
5
6class QComboBox;
7class QLabel;
8class QVBoxLayout;
9class QHBoxLayout;
10class QButtonGroup;
11class QRadioButton;
12class QCheckBox;
13class QHGroupBox;
14
15class TerminalWidget : public ProfileDialogTerminalWidget {
16 Q_OBJECT
17public:
18 TerminalWidget(const QString& name, QWidget* wid,
19 const char* na ) ;
20 ~TerminalWidget();
21
22 void load( const Profile& );
23 void save( Profile& );
24private:
25 QVBoxLayout* m_lroot, *m_typeBox, *m_colorBox;
26
27 QHBoxLayout* m_hbox;
28
29 QLabel* m_terminal, *m_colorLabel;
30
31 QComboBox* m_terminalBox, *m_colorCmb;
32
33 QButtonGroup* m_groupSize;
34
35 QRadioButton* m_sizeSmall, *m_sizeMedium,
36 *m_sizeLarge;
37
38 QHGroupBox *m_groupConv, *m_groupOptions;
39
40 QCheckBox *m_convInbound,
41 *m_convOutbound, *m_optionEcho,
42 *m_optionWrap;
43
44};
45
46#endif