summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookday.h
authorumopapisdn <umopapisdn>2003-04-13 21:41:19 (UTC)
committer umopapisdn <umopapisdn>2003-04-13 21:41:19 (UTC)
commit1745c6565e18506d5cb5631ae13cfc5fab060fee (patch) (side-by-side diff)
tree4206eaf78b396c31e7e8729886b0c9c32bae9855 /core/pim/datebook/datebookday.h
parent6f610544d3db6198c90105b70fab1cc84f5a1fbd (diff)
downloadopie-1745c6565e18506d5cb5631ae13cfc5fab060fee.zip
opie-1745c6565e18506d5cb5631ae13cfc5fab060fee.tar.gz
opie-1745c6565e18506d5cb5631ae13cfc5fab060fee.tar.bz2
New feature: Added the possibility to add "quick entries" in dayview merely by clicking on the calendar, which overlays a qlineedit.
Right now it adds 1 hour events, this will soon be adressed.
Diffstat (limited to 'core/pim/datebook/datebookday.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebookday.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/core/pim/datebook/datebookday.h b/core/pim/datebook/datebookday.h
index 2faf24e..961f60f 100644
--- a/core/pim/datebook/datebookday.h
+++ b/core/pim/datebook/datebookday.h
@@ -27,6 +27,9 @@
#include <qvbox.h>
#include <qlist.h>
+#include "datebook.h"
+#include <qlineedit.h>
+
class DateBookDayHeader;
class DateBookDB;
class QDateTime;
@@ -34,6 +37,22 @@ class QMouseEvent;
class QPaintEvent;
class QResizeEvent;
+class DateBookDayViewQuickLineEdit : public QLineEdit
+{
+ Q_OBJECT
+public:
+ DateBookDayViewQuickLineEdit(const QDateTime &start, const QDateTime &end,QWidget * parent, const char *name=0);
+protected:
+ Event quickEvent;
+ int active;
+ void focusOutEvent( QFocusEvent *e );
+protected slots:
+ void slotReturnPressed(void);
+signals:
+ void insertEvent(const Event &e);
+};
+
+
class DateBookDayView : public QTable
{
Q_OBJECT
@@ -46,21 +65,25 @@ public:
public slots:
void moveUp();
void moveDown();
+ void slotDateChanged( int year, int month, int day );
signals:
void sigColWidthChanged();
void sigCapturedKey( const QString &txt );
protected slots:
- void slotChangeClock( bool );
+ void slotChangeClock( bool );
protected:
virtual void paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected );
virtual void paintFocus( QPainter *p, const QRect &cr );
virtual void resizeEvent( QResizeEvent *e );
void keyPressEvent( QKeyEvent *e );
+ void contentsMouseReleaseEvent( QMouseEvent *e );
void initHeader();
private:
bool ampm;
+ QDate currDate;
+ DateBookDayViewQuickLineEdit *quickLineEdit;
};
class DateBookDay;