datebookWidget.h
00001 #ifndef _KPILOT_DATEBOOKWIDGET_H
00002 #define _KPILOT_DATEBOOKWIDGET_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "pilotComponent.h"
00034
00035 class KDatePicker;
00036 class QPushButton;
00037 class KListView;
00038
00039 class DatebookWidget : public PilotComponent
00040 {
00041 Q_OBJECT
00042
00043 public:
00044 DatebookWidget(QWidget* parent, const QString& dbpath);
00045 virtual ~DatebookWidget();
00046
00047
00048 void hideComponent();
00049 void showComponent();
00050
00051 protected slots:
00052 void slotDayChanged();
00053 void slotAddEvent();
00054 void slotEditEvent();
00055 void slotDeleteEvent();
00056
00057 private:
00058 KDatePicker*fDatePicker;
00059 QPushButton*fAddButton;
00060 QPushButton*fEditButton;
00061 QPushButton*fDeleteButton;
00062 KListView*fEventList;
00063 };
00064
00065
00066 #endif
This file is part of the documentation for kpilot Library Version 3.2.2.