korganizer
publishdialog_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef PUBLISHDIALOG_BASE_H
00010 #define PUBLISHDIALOG_BASE_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 QListView;
00020 class QListViewItem;
00021 class QLabel;
00022 class QLineEdit;
00023 class QPushButton;
00024
00025 class PublishDialog_base : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 PublishDialog_base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~PublishDialog_base();
00032
00033 QListView* mAddressListView;
00034 QLabel* TextLabel1;
00035 QLabel* TextLabel2;
00036 QLineEdit* mEmailLineEdit;
00037 QLineEdit* mNameLineEdit;
00038 QPushButton* mNew;
00039 QPushButton* mSelectAddressee;
00040 QPushButton* mRemove;
00041
00042 protected:
00043 QGridLayout* PublishDialog_baseLayout;
00044 QSpacerItem* spacer102;
00045
00046 protected slots:
00047 virtual void languageChange();
00048
00049 };
00050
00051 #endif // PUBLISHDIALOG_BASE_H
|