ktimetracker
edithistorydialog.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef KTIMETRACKER_EDIT_HISTORY_DIALOG_H
00023 #define KTIMETRACKER_EDIT_HISTORY_DIALOG_H
00024
00025 #include <KDialog>
00026
00027 class TaskView;
00028 class QTableWidget;
00029
00030 class EditHistoryDialog : public KDialog
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 explicit EditHistoryDialog( TaskView *parent );
00036 QTableWidget* tableWidget();
00037
00038 private:
00039 QTableWidget *mHistoryWidget;
00040 TaskView *mParent;
00045 void listAllEvents();
00046
00047 private Q_SLOTS:
00053 void historyWidgetCellChanged( int row, int col );
00054 };
00055
00056 #endif