equal
deleted
inserted
replaced
65 |
65 |
66 private: |
66 private: |
67 void mousePressEvent(QGraphicsSceneMouseEvent* event); |
67 void mousePressEvent(QGraphicsSceneMouseEvent* event); |
68 void mouseReleaseEvent(QGraphicsSceneMouseEvent* event); |
68 void mouseReleaseEvent(QGraphicsSceneMouseEvent* event); |
69 void setFocusToProperDay(); |
69 void setFocusToProperDay(); |
70 void setActiveDates(QDateTime activeDate); |
70 void setActiveDates(QDate activeDate); |
|
71 void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget); |
71 |
72 |
72 public slots: |
73 public slots: |
73 void scrollingFinished(); |
74 void scrollingFinished(); |
74 void prependRows(); |
75 void prependRows(); |
75 void appendRows(); |
76 void appendRows(); |
91 int mCurrentRow; |
92 int mCurrentRow; |
92 bool mIsNonActiveDayFocused; |
93 bool mIsNonActiveDayFocused; |
93 QDateTime mNonActiveFocusedDay; |
94 QDateTime mNonActiveFocusedDay; |
94 bool mIgnoreItemActivated; |
95 bool mIgnoreItemActivated; |
95 QPointF mPressedPos; |
96 QPointF mPressedPos; |
|
97 QColor mGridLineColor; |
|
98 QColor mGridBorderColor; |
|
99 QGraphicsWidget* mContentWidget; |
96 }; |
100 }; |
97 |
101 |
98 #endif // CALENMONTHGRID_H |
102 #endif // CALENMONTHGRID_H |
99 |
103 |
100 // End of file --Don't remove this. |
104 // End of file --Don't remove this. |