summaryrefslogtreecommitdiff
path: root/core
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
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') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/datebook.cpp7
-rw-r--r--core/pim/datebook/datebook.h1
-rw-r--r--core/pim/datebook/datebookday.cpp177
-rw-r--r--core/pim/datebook/datebookday.h23
4 files changed, 124 insertions, 84 deletions
diff --git a/core/pim/datebook/datebook.cpp b/core/pim/datebook/datebook.cpp
index 4fbcb10..6dd8918 100644
--- a/core/pim/datebook/datebook.cpp
+++ b/core/pim/datebook/datebook.cpp
@@ -385,2 +385,9 @@ void DateBook::viewMonth() {
+void DateBook::insertEvent( const Event &e )
+{
+ qWarning("Adding Event!");
+ db->addEvent(e);
+ emit newEvent();
+}
+
void DateBook::duplicateEvent( const Event &e )
diff --git a/core/pim/datebook/datebook.h b/core/pim/datebook/datebook.h
index 5216770..3f57d4a 100644
--- a/core/pim/datebook/datebook.h
+++ b/core/pim/datebook/datebook.h
@@ -90,2 +90,3 @@ private slots:
+ void insertEvent( const Event &e );
void editEvent( const Event &e );
diff --git a/core/pim/datebook/datebookday.cpp b/core/pim/datebook/datebookday.cpp
index db4c2fd..0a40ea9 100644
--- a/core/pim/datebook/datebookday.cpp
+++ b/core/pim/datebook/datebookday.cpp
@@ -40,8 +40,8 @@
+#include <qlineedit.h>
+
#include <qtimer.h>
-DateBookDayView::DateBookDayView( bool whichClock, QWidget *parent,
- const char *name )
- : QTable( 24, 1, parent, name ),
- ampm( whichClock )
+DateBookDayView::DateBookDayView( bool whichClock, QWidget *parent, const char *name )
+ : QTable( 24, 1, parent, name ), ampm( whichClock ), currDate( QDate::currentDate() )
{
@@ -65,5 +65,5 @@ DateBookDayView::DateBookDayView( bool whichClock, QWidget *parent,
}
+
initHeader();
- QObject::connect( qApp, SIGNAL(clockChanged(bool)),
- this, SLOT(slotChangeClock(bool)) );
+ QObject::connect( qApp, SIGNAL(clockChanged(bool)), this, SLOT(slotChangeClock(bool)) );
}
@@ -95,2 +95,7 @@ void DateBookDayView::initHeader()
+void DateBookDayView::slotDateChanged( int y, int m, int d )
+{
+ currDate.setYMD(y,m,d);
+}
+
void DateBookDayView::slotChangeClock( bool newClock )
@@ -141,3 +146,2 @@ void DateBookDayView::paintFocus( QPainter *, const QRect & )
-
void DateBookDayView::resizeEvent( QResizeEvent *e )
@@ -170,11 +174,44 @@ void DateBookDayView::setRowStyle( int style )
+void DateBookDayView::contentsMouseReleaseEvent( QMouseEvent *e )
+{
+ int y=e->y();
+ int diff=y%(this->rowHeight(0));
+ int hour=y/this->rowHeight(0);
+ quickLineEdit=new DateBookDayViewQuickLineEdit(QDateTime(currDate,QTime(hour,0,0,0)),QDateTime(currDate,QTime(hour,59,0,0)),this->viewport(),"quickedit");
+ quickLineEdit->setGeometry(0,0,this->columnWidth(0)-1,this->rowHeight(0));
+ this->moveChild(quickLineEdit,0,y-diff);
+ quickLineEdit->setFocus();
+ quickLineEdit->show();
+}
+
//===========================================================================
-DateBookDay::DateBookDay( bool ampm, bool startOnMonday,
- DateBookDB *newDb, QWidget *parent,
- const char *name )
- : QVBox( parent, name ),
- currDate( QDate::currentDate() ),
- db( newDb ),
- startTime( 0 )
+DateBookDayViewQuickLineEdit::DateBookDayViewQuickLineEdit(const QDateTime &start, const QDateTime &end,QWidget * parent, const char *name=0) : QLineEdit(parent,name)
+{
+ active=1;
+ quickEvent.setStart(start);
+ quickEvent.setEnd(end);
+ connect(this,SIGNAL(returnPressed()),this,SLOT(slotReturnPressed()));
+}
+
+void DateBookDayViewQuickLineEdit::slotReturnPressed()
+{
+ if(active && (!this->text().isEmpty())) { // Fix to avoid having this event beeing added multiple times.
+ quickEvent.setDescription(this->text());
+ connect(this,SIGNAL(insertEvent(const Event &)),this->topLevelWidget(),SLOT(insertEvent(const Event &)));
+ emit(insertEvent(quickEvent));
+ active=0;
+ }
+ this->close(true); // Close and also delete this widget
+}
+
+void DateBookDayViewQuickLineEdit::focusOutEvent ( QFocusEvent * e )
+{
+ slotReturnPressed(); // Reuse code to add event and close this widget.
+}
+
+//===========================================================================
+
+DateBookDay::DateBookDay( bool ampm, bool startOnMonday, DateBookDB *newDb, QWidget *parent, const char *name )
+ : QVBox( parent, name ), currDate( QDate::currentDate() ), db( newDb ), startTime( 0 )
{
@@ -185,10 +222,7 @@ DateBookDay::DateBookDay( bool ampm, bool startOnMonday,
- connect( header, SIGNAL( dateChanged( int, int, int ) ),
- this, SLOT( dateChanged( int, int, int ) ) );
- connect( view, SIGNAL( sigColWidthChanged() ),
- this, SLOT( slotColWidthChanged() ) );
- connect( qApp, SIGNAL(weekChanged(bool)),
- this, SLOT(slotWeekChanged(bool)) );
- connect( view, SIGNAL(sigCapturedKey(const QString &)),
- this, SIGNAL(sigNewEvent(const QString&)) );
+ connect( header, SIGNAL( dateChanged( int, int, int ) ), this, SLOT( dateChanged( int, int, int ) ) );
+ connect( header, SIGNAL( dateChanged( int, int, int ) ), view, SLOT( slotDateChanged( int, int, int ) ) );
+ connect( view, SIGNAL( sigColWidthChanged() ), this, SLOT( slotColWidthChanged() ) );
+ connect( qApp, SIGNAL(weekChanged(bool)), this, SLOT(slotWeekChanged(bool)) );
+ connect( view, SIGNAL(sigCapturedKey(const QString &)), this, SIGNAL(sigNewEvent(const QString&)) );
@@ -196,4 +230,3 @@ DateBookDay::DateBookDay( bool ampm, bool startOnMonday,
- connect( timer, SIGNAL(timeout()),
- this, SLOT(updateView()) ); //connect timer for updating timeMarker & daywidgetcolors
+ connect( timer, SIGNAL(timeout()), this, SLOT(updateView()) ); //connect timer for updating timeMarker & daywidgetcolors
timer->start( 1000*60*5, FALSE ); //update every 5min
@@ -248,2 +281,3 @@ void DateBookDay::selectedDates( QDateTime &start, QDateTime &end )
}
+
if (sh > 23 || eh < 1) {
@@ -260,3 +294,2 @@ void DateBookDay::setDate( int y, int m, int d )
header->setDate( y, m, d );
-
selectedWidget = 0;
@@ -267,3 +300,2 @@ void DateBookDay::setDate( QDate d)
header->setDate( d.year(), d.month(), d.day() );
-
selectedWidget = 0;
@@ -285,4 +317,3 @@ void DateBookDay::dateChanged( int y, int m, int d )
ts.expandTo( QTime::currentTime().hour(), 0);
- } else
- {
+ } else {
ts.init( startTime, 0 );
@@ -292,5 +323,3 @@ void DateBookDay::dateChanged( int y, int m, int d )
dayView()->addSelection( ts );
-
selectedWidget = 0;
-
}
@@ -313,10 +342,6 @@ void DateBookDay::getEvents()
DateBookDayWidget* w = new DateBookDayWidget( *it, this );
- connect( w, SIGNAL( deleteMe( const Event & ) ),
- this, SIGNAL( removeEvent( const Event & ) ) );
- connect( w, SIGNAL( duplicateMe( const Event & ) ),
- this, SIGNAL( duplicateEvent( const Event & ) ) );
- connect( w, SIGNAL( editMe( const Event & ) ),
- this, SIGNAL( editEvent( const Event & ) ) );
- connect( w, SIGNAL( beamMe( const Event & ) ),
- this, SIGNAL( beamEvent( const Event & ) ) );
+ connect( w, SIGNAL( deleteMe( const Event & ) ), this, SIGNAL( removeEvent( const Event & ) ) );
+ connect( w, SIGNAL( duplicateMe( const Event & ) ), this, SIGNAL( duplicateEvent( const Event & ) ) );
+ connect( w, SIGNAL( editMe( const Event & ) ), this, SIGNAL( editEvent( const Event & ) ) );
+ connect( w, SIGNAL( beamMe( const Event & ) ), this, SIGNAL( beamEvent( const Event & ) ) );
widgetList.append( w );
@@ -324,3 +349,2 @@ void DateBookDay::getEvents()
}
-
}
@@ -347,3 +371,4 @@ static int place( const DateBookDayWidget *item, bool *used, int maxn )
}
- if ( free ) break;
+ if ( free )
+ break;
place++;
@@ -385,4 +410,3 @@ void DateBookDay::relayoutPage( bool fromResize )
- for ( int i = 0; i < wCount; i++)
- {
+ for ( int i = 0; i < wCount; i++) {
QValueList<int> intersectedWidgets;
@@ -390,3 +414,3 @@ void DateBookDay::relayoutPage( bool fromResize )
//find all widgets intersecting with widgetList.at(i)
- for ( int j = 0; j < wCount; j++)
+ for ( int j = 0; j < wCount; j++) {
if (i != j)
@@ -394,2 +418,3 @@ void DateBookDay::relayoutPage( bool fromResize )
intersectedWidgets.append(j);
+ }
@@ -402,6 +427,5 @@ void DateBookDay::relayoutPage( bool fromResize )
if (intersectedWidgets[j] != -1)
- for ( uint k = j; k < intersectedWidgets.count(); k++)
+ for ( uint k = j; k < intersectedWidgets.count(); k++) {
if (j != k && intersectedWidgets[k] != -1)
- if (geometries[intersectedWidgets[k]].intersects(geometries[intersectedWidgets[j]]))
- {
+ if (geometries[intersectedWidgets[k]].intersects(geometries[intersectedWidgets[j]])) {
inter[j]++;
@@ -411,3 +435,3 @@ void DateBookDay::relayoutPage( bool fromResize )
}
-
+ }
if (anzIntersect[i] == 1 && intersectedWidgets.count()) anzIntersect[i]++;
@@ -419,9 +443,5 @@ void DateBookDay::relayoutPage( bool fromResize )
QRect geom = w->geometry();
-
geom.setX( 0 );
-
wd = (view->columnWidth(0)-1) / anzIntersect[i] - (anzIntersect[i]>1?2:0);
-
geom.setWidth( wd );
-
while ( intersects( w, geom ) ) {
@@ -432,11 +452,8 @@ void DateBookDay::relayoutPage( bool fromResize )
- if (jumpToCurTime && this->date() == QDate::currentDate())
+ if (jumpToCurTime && this->date() == QDate::currentDate()) {
view->setContentsPos( 0, QTime::currentTime().hour() * view->rowHeight(0) ); //set listview to current hour
- else
+ } else {
view->setContentsPos( 0, startTime * view->rowHeight(0) );
-
-
+ }
} else {
-
-
int hours[24];
@@ -481,7 +498,8 @@ void DateBookDay::relayoutPage( bool fromResize )
- if (jumpToCurTime && this->date() == QDate::currentDate())
+ if (jumpToCurTime && this->date() == QDate::currentDate()) {
view->setContentsPos( 0, QTime::currentTime().hour() * view->rowHeight(0) ); //set listview to current hour
- else
+ } else {
view->setContentsPos( 0, startTime * view->rowHeight(0) );
}
+ }
@@ -523,8 +541,6 @@ void DateBookDay::setStartViewTime( int startHere )
- if (jumpToCurTime && this->date() == QDate::currentDate()) //this should probably be in datebook.cpp where it's called?
- {
+ if (jumpToCurTime && this->date() == QDate::currentDate()) { //this should probably be in datebook.cpp where it's called?
ts.init( QTime::currentTime().hour(), 0);
ts.expandTo( QTime::currentTime().hour(), 0);
- } else
- {
+ } else {
ts.init( startTime, 0 );
@@ -569,8 +585,5 @@ void DateBookDay::keyPressEvent(QKeyEvent *e)
-DateBookDayWidget::DateBookDayWidget( const EffectiveEvent &e,
- DateBookDay *db )
+DateBookDayWidget::DateBookDayWidget( const EffectiveEvent &e, DateBookDay *db )
: QWidget( db->dayView()->viewport() ), ev( e ), dateBook( db )
{
-
-
// why would someone use "<"? Oh well, fix it up...
@@ -607,6 +620,7 @@ DateBookDayWidget::DateBookDayWidget( const EffectiveEvent &e,
}
- if (ev.event().type() == Event::Normal )
+ if (ev.event().type() == Event::Normal ) {
setEventText( text );
- else
+ } else {
setAllDayText( text );
+ }
@@ -632,2 +646,3 @@ DateBookDayWidget::DateBookDayWidget( const EffectiveEvent &e,
}
+
void DateBookDayWidget::setAllDayText( QString &text ) {
@@ -635,2 +650,3 @@ void DateBookDayWidget::setAllDayText( QString &text ) {
}
+
void DateBookDayWidget::setEventText( QString& text ) {
@@ -660,16 +676,10 @@ void DateBookDayWidget::paintEvent( QPaintEvent *e )
- if (dateBook->getSelectedWidget() == this)
- {
+ if (dateBook->getSelectedWidget() == this) {
p.setBrush( QColor( 155, 240, 230 ) ); // selected item
- } else
- {
- if (dateBook->date() == QDate::currentDate())
- {
+ } else {
+ if (dateBook->date() == QDate::currentDate()) {
QTime curTime = QTime::currentTime();
-
- if (ev.end() < curTime)
- {
+ if (ev.end() < curTime) {
p.setBrush( QColor( 180, 180, 180 ) ); // grey, inactive
- } else
- {
+ } else {
//change color in dependence of the time till the event starts
@@ -678,7 +688,5 @@ void DateBookDayWidget::paintEvent( QPaintEvent *e )
int colChange = duration*160/86400; //86400: secs per day, 160: max color shift
-
p.setBrush( QColor( 200-colChange, 200-colChange, 255 ) ); //blue
}
- } else
- {
+ } else {
p.setBrush( QColor( 220, 220, 220 ) ); //light grey, inactive (not current date)
@@ -718,3 +726,4 @@ void DateBookDayWidget::mousePressEvent( QMouseEvent *e )
item = dateBook->getSelectedWidget();
- if (item) item->update();
+ if (item)
+ item->update();
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
@@ -29,2 +29,5 @@
+#include "datebook.h"
+#include <qlineedit.h>
+
class DateBookDayHeader;
@@ -36,2 +39,18 @@ 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
@@ -48,2 +67,3 @@ public slots:
void moveDown();
+ void slotDateChanged( int year, int month, int day );
@@ -60,2 +80,3 @@ protected:
void keyPressEvent( QKeyEvent *e );
+ void contentsMouseReleaseEvent( QMouseEvent *e );
void initHeader();
@@ -63,2 +84,4 @@ private:
bool ampm;
+ QDate currDate;
+ DateBookDayViewQuickLineEdit *quickLineEdit;
};