kaddressbook
imaddressbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef IMADDRESSBASE_H
00010 #define IMADDRESSBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QComboBox;
00020 class QLabel;
00021 class QLineEdit;
00022
00023 class IMAddressBase : public QWidget
00024 {
00025 Q_OBJECT
00026
00027 public:
00028 IMAddressBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00029 ~IMAddressBase();
00030
00031 QComboBox* cmbProtocol;
00032 QLabel* labelProtocol;
00033 QLineEdit* edtAddress;
00034 QLabel* labelAddress;
00035 QLabel* labelNetwork;
00036 QLineEdit* edtNetwork;
00037
00038 public slots:
00039 virtual void slotProtocolChanged( const QString & );
00040 virtual void slotProtocolChanged();
00041
00042 protected:
00043 QGridLayout* IMAddressBaseLayout;
00044
00045 protected slots:
00046 virtual void languageChange();
00047
00048 };
00049
00050 #endif // IMADDRESSBASE_H
|