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