00001 #ifndef OPIE_SERIAL_CONFIG_WIDGET_H 00002 #define OPIE_SERIAL_CONFIG_WIDGET_H 00003 00004 #include "profiledialogwidget.h" 00005 00006 class QVBoxLayout; 00007 class QLabel; 00008 class QComboBox; 00009 class IOLayerBase; 00010 class SerialConfigWidget : public ProfileDialogConnectionWidget { 00011 Q_OBJECT 00012 public: 00013 SerialConfigWidget( const QString& name, QWidget* parent, const char* name = 0l ); 00014 ~SerialConfigWidget(); 00015 00016 void load( const Profile& ); 00017 void save( Profile& ); 00018 private: 00019 QVBoxLayout* m_lay; 00020 QLabel* m_device; 00021 QComboBox* m_deviceCmb; 00022 IOLayerBase* m_base; 00023 00024 }; 00025 00026 00027 #endif
1.4.2