kpilot/kpilot
todoEditor_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef TODOEDITORBASE_H
00010 #define TODOEDITORBASE_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 QLabel;
00020 class QComboBox;
00021 class QTextEdit;
00022 class QCheckBox;
00023 class KDateWidget;
00024
00025 class TodoEditorBase : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 TodoEditorBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~TodoEditorBase();
00032
00033 QLabel* fDescriptionLabel;
00034 QLabel* fNoteLabel;
00035 QLabel* fCategoryLabel;
00036 QComboBox* fCategory;
00037 QLabel* fPriorityLabel;
00038 QComboBox* fPriority;
00039 QTextEdit* fDescription;
00040 QTextEdit* fNote;
00041 QCheckBox* fCompleted;
00042 QCheckBox* fHasEndDate;
00043 KDateWidget* fEndDate;
00044
00045 protected:
00046 QGridLayout* TodoEditorBaseLayout;
00047
00048 protected slots:
00049 virtual void languageChange();
00050
00051 };
00052
00053 #endif // TODOEDITORBASE_H
|