summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/serialconfigwidget.h
authorzecke <zecke>2002-10-08 23:13:17 (UTC)
committer zecke <zecke>2002-10-08 23:13:17 (UTC)
commit8c353ec8b86ee8f82cc25172fb69dd5fee65e848 (patch) (unidiff)
treea4549bcba962689edb9c40efcb23114cae5fcda2 /noncore/apps/opie-console/serialconfigwidget.h
parentca0c224318a50c6618691fb30f39aa1d9b0b8a4f (diff)
downloadopie-8c353ec8b86ee8f82cc25172fb69dd5fee65e848.zip
opie-8c353ec8b86ee8f82cc25172fb69dd5fee65e848.tar.gz
opie-8c353ec8b86ee8f82cc25172fb69dd5fee65e848.tar.bz2
default I dunno
IOLayerBase the return values for speed()/parity()/flow() added MainWindow debug code :( opie-console.pro addition of serialconfigwidget.* ProfileManager fix removing of Profiles quite rude way of doing it Configure stuff is done and roughly tested The migration is done! TO WAZLAF: you might want to adjust Parity stuff for your needs!
Diffstat (limited to 'noncore/apps/opie-console/serialconfigwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/serialconfigwidget.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/serialconfigwidget.h b/noncore/apps/opie-console/serialconfigwidget.h
new file mode 100644
index 0000000..8b5c8aa
--- a/dev/null
+++ b/noncore/apps/opie-console/serialconfigwidget.h
@@ -0,0 +1,27 @@
1#ifndef OPIE_SERIAL_CONFIG_WIDGET_H
2#define OPIE_SERIAL_CONFIG_WIDGET_H
3
4#include "profiledialogwidget.h"
5
6class QVBoxLayout;
7class QLabel;
8class QComboBox;
9class IOLayerBase;
10class SerialConfigWidget : public ProfileDialogConnectionWidget {
11 Q_OBJECT
12public:
13 SerialConfigWidget( const QString& name, QWidget* parent, const char* name = 0l );
14 ~SerialConfigWidget();
15
16 void load( const Profile& );
17 void save( Profile& );
18private:
19 QVBoxLayout* m_lay;
20 QLabel* m_device;
21 QComboBox* m_deviceCmb;
22 IOLayerBase* m_base;
23
24};
25
26
27#endif