kaddressbook
imeditorbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef IMEDITORBASE_H
00010 #define IMEDITORBASE_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 QPushButton;
00020 class KPushButton;
00021 class KListView;
00022 class QListViewItem;
00023 class KActiveLabel;
00024
00025 class IMEditorBase : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 IMEditorBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~IMEditorBase();
00032
00033 QPushButton* btnSetStandard;
00034 KPushButton* btnDelete;
00035 KPushButton* btnEdit;
00036 KPushButton* btnAdd;
00037 KListView* lvAddresses;
00038 KActiveLabel* lblWarning;
00039
00040 protected:
00041 QGridLayout* IMEditorBaseLayout;
00042 QSpacerItem* spacer1;
00043
00044 protected slots:
00045 virtual void languageChange();
00046
00047 };
00048
00049 #endif // IMEDITORBASE_H
|