korganizer
navigatorbar.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef NAVIGATORBAR_H
00025 #define NAVIGATORBAR_H
00026
00027 #include <libkcal/incidencebase.h>
00028
00029 #include <qlabel.h>
00030
00031 class QPushButton;
00032 class QFrame;
00033
00034 class ActiveLabel : public QLabel
00035 {
00036 Q_OBJECT
00037 public:
00038 ActiveLabel( QWidget *parent, const char *name = 0 );
00039
00040 signals:
00041 void clicked();
00042
00043 protected:
00044 void mouseReleaseEvent ( QMouseEvent * e );
00045 };
00046
00047
00048 class NavigatorBar: public QWidget
00049 {
00050 Q_OBJECT
00051 public:
00052 NavigatorBar( QWidget *parent = 0, const char *name = 0 );
00053 ~NavigatorBar();
00054
00055 void showButtons( bool left, bool right );
00056
00057 public slots:
00058 void selectDates( const KCal::DateList & );
00059
00060 signals:
00061 void goNextMonth();
00062 void goPrevMonth();
00063 void goNextYear();
00064 void goPrevYear();
00065 void goMonth(int month);
00066
00067 private slots:
00068 void selectMonth();
00069
00070 private:
00071 bool mHasMinWidth;
00072
00073 QDate mDate;
00074
00075 QPushButton *mPrevYear;
00076 QPushButton *mPrevMonth;
00077 ActiveLabel *mMonth;
00078 QPushButton *mNextMonth;
00079 QPushButton *mNextYear;
00080 };
00081
00082 #endif
|