-rw-r--r-- | core/pim/datebook/datebook.cpp | 35 |
1 files changed, 14 insertions, 21 deletions
diff --git a/core/pim/datebook/datebook.cpp b/core/pim/datebook/datebook.cpp index 706cc08..832b2f8 100644 --- a/core/pim/datebook/datebook.cpp +++ b/core/pim/datebook/datebook.cpp | |||
@@ -185,9 +185,8 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) | |||
185 | QCopChannel *channel = new QCopChannel( "QPE/System", this ); | 185 | QCopChannel *channel = new QCopChannel( "QPE/System", this ); |
186 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), this, SLOT(receive(const QCString&, const QByteArray&)) ); | 186 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), this, SLOT(receive(const QCString&, const QByteArray&)) ); |
187 | channel = new QCopChannel( "QPE/Datebook", this ); | 187 | channel = new QCopChannel( "QPE/Datebook", this ); |
188 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), this, SLOT(receive(const QCString&, const QByteArray&)) ); | 188 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), this, SLOT(receive(const QCString&, const QByteArray&)) ); |
189 | qDebug("olle\n"); | ||
190 | #endif | 189 | #endif |
191 | #endif | 190 | #endif |
192 | 191 | ||
193 | qDebug("done t=%d", t.elapsed() ); | 192 | qDebug("done t=%d", t.elapsed() ); |
@@ -408,9 +407,8 @@ void DateBook::insertEvent( const Event &e ) | |||
408 | } | 407 | } |
409 | 408 | ||
410 | void DateBook::duplicateEvent( const Event &e ) | 409 | void DateBook::duplicateEvent( const Event &e ) |
411 | { | 410 | { |
412 | qWarning("Hmmm..."); | ||
413 | // Alot of code duplication, as this is almost like editEvent(); | 411 | // Alot of code duplication, as this is almost like editEvent(); |
414 | if (syncing) { | 412 | if (syncing) { |
415 | QMessageBox::warning( this, tr("Calendar"), tr( "Can not edit data, currently syncing") ); | 413 | QMessageBox::warning( this, tr("Calendar"), tr( "Can not edit data, currently syncing") ); |
416 | return; | 414 | return; |
@@ -507,8 +505,9 @@ void DateBook::removeEvent( const Event &e ) | |||
507 | 505 | ||
508 | db->removeEvent( e ); | 506 | db->removeEvent( e ); |
509 | if ( views->visibleWidget() == dayView && dayView ) | 507 | if ( views->visibleWidget() == dayView && dayView ) |
510 | dayView->redraw(); | 508 | dayView->redraw(); |
509 | |||
511 | } | 510 | } |
512 | 511 | ||
513 | void DateBook::addEvent( const Event &e ) | 512 | void DateBook::addEvent( const Event &e ) |
514 | { | 513 | { |
@@ -990,10 +989,9 @@ void DateBook::slotDoFind( const QString& txt, const QDate &dt, | |||
990 | QRegExp r( txt ); | 989 | QRegExp r( txt ); |
991 | r.setCaseSensitive( caseSensitive ); | 990 | r.setCaseSensitive( caseSensitive ); |
992 | 991 | ||
993 | 992 | ||
994 | static Event rev, | 993 | static Event rev, nonrev; |
995 | nonrev; | ||
996 | if ( !inSearch ) { | 994 | if ( !inSearch ) { |
997 | rev.setStart( QDateTime(QDate(1960, 1, 1), QTime(0, 0, 0)) ); | 995 | rev.setStart( QDateTime(QDate(1960, 1, 1), QTime(0, 0, 0)) ); |
998 | nonrev.setStart( rev.start() ); | 996 | nonrev.setStart( rev.start() ); |
999 | inSearch = true; | 997 | inSearch = true; |
@@ -1009,23 +1007,20 @@ void DateBook::slotDoFind( const QString& txt, const QDate &dt, | |||
1009 | QValueListConstIterator<Event> it; | 1007 | QValueListConstIterator<Event> it; |
1010 | QDate start = dt; | 1008 | QDate start = dt; |
1011 | for ( it = repeats.begin(); it != repeats.end(); ++it ) { | 1009 | for ( it = repeats.begin(); it != repeats.end(); ++it ) { |
1012 | if ( catComp( (*it).categories(), category ) ) { | 1010 | if ( catComp( (*it).categories(), category ) ) { |
1013 | while ( nextOccurance( *it, start, next ) ) { | 1011 | if ( (*it).match( r ) ) { |
1014 | if ( next < dtEnd ) { | 1012 | if ( nextOccurance( *it, start, next ) ) { |
1015 | if ( (*it).match( r ) && !(next <= rev.start()) ) { | 1013 | if ( next < dtEnd && !(next <= rev.start() ) ) { |
1016 | rev = *it; | 1014 | rev = *it; |
1017 | dtEnd = next; | 1015 | dtEnd = next; |
1018 | rev.setStart( next ); | 1016 | rev.setStart( next ); |
1019 | candidtate = true; | 1017 | candidtate = true; |
1020 | wrapAround = true; | 1018 | wrapAround = true; |
1021 | start = dt; | 1019 | } |
1022 | break; | 1020 | } |
1023 | } else | 1021 | } |
1024 | start = next.date().addDays( 1 ); | 1022 | } |
1025 | } | ||
1026 | } | ||
1027 | } | ||
1028 | } | 1023 | } |
1029 | 1024 | ||
1030 | // now the for first non repeat... | 1025 | // now the for first non repeat... |
1031 | QValueList<Event> nonRepeats = db->getNonRepeatingEvents( dt, dtEnd.date() ); | 1026 | QValueList<Event> nonRepeats = db->getNonRepeatingEvents( dt, dtEnd.date() ); |
@@ -1074,9 +1069,7 @@ Event DateBookDBHack::eventByUID(int uid) { | |||
1074 | for (it = myRepeatEvents.begin(); it != myRepeatEvents.end(); it++) { | 1069 | for (it = myRepeatEvents.begin(); it != myRepeatEvents.end(); it++) { |
1075 | if ((*it).uid() == uid) return *it; | 1070 | if ((*it).uid() == uid) return *it; |
1076 | } | 1071 | } |
1077 | 1072 | ||
1078 | qDebug("Event not found: uid=%d\n", uid); | ||
1079 | Event ev; | 1073 | Event ev; |
1080 | return ev; // return at least | 1074 | return ev; // return at least |
1081 | } | 1075 | } |
1082 | |||