libkdepim
addresspicker.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef ADDRESSPICKERUI_H
00010 #define ADDRESSPICKERUI_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 KListView;
00020 class QListViewItem;
00021 class KPushButton;
00022 class QPushButton;
00023 class QLabel;
00024 class QLineEdit;
00025
00026 class AddressPickerUI : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 AddressPickerUI( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~AddressPickerUI();
00033
00034 KListView* mAvailableView;
00035 KPushButton* mToButton;
00036 KPushButton* mCCButton;
00037 KPushButton* mBCCButton;
00038 KPushButton* mRemoveButton;
00039 QPushButton* mSaveAs;
00040 QLabel* textLabel2;
00041 QLabel* textLabel1;
00042 QLabel* TextLabel2;
00043 QLineEdit* mFilterEdit;
00044 KListView* mSelectedView;
00045
00046 protected:
00047 QGridLayout* AddressPickerUILayout;
00048 QVBoxLayout* layout10;
00049 QSpacerItem* spacer1;
00050 QSpacerItem* spacer2;
00051 QSpacerItem* spacer2_2;
00052 QHBoxLayout* layout1;
00053
00054 protected slots:
00055 virtual void languageChange();
00056
00057 };
00058
00059 #endif // ADDRESSPICKERUI_H
|