author | harlekin <harlekin> | 2003-03-23 15:17:55 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-23 15:17:55 (UTC) |
commit | 34d831699c7a7be4bd81cd7d7336b66b53ef78d9 (patch) (side-by-side diff) | |
tree | b38d3e4377bdc47e8a78c070af2ca2ac62e48d70 | |
parent | fd1b86e8590b34efb38b82953e5bf897a8de1cdf (diff) | |
download | opie-34d831699c7a7be4bd81cd7d7336b66b53ef78d9.zip opie-34d831699c7a7be4bd81cd7d7336b66b53ef78d9.tar.gz opie-34d831699c7a7be4bd81cd7d7336b66b53ef78d9.tar.bz2 |
if multiple days are selected and only later is on still show all events on next days ,)
-rw-r--r-- | core/pim/today/plugins/datebook/datebookpluginwidget.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginwidget.cpp b/core/pim/today/plugins/datebook/datebookpluginwidget.cpp index 896d41d..781e3a4 100644 --- a/core/pim/today/plugins/datebook/datebookpluginwidget.cpp +++ b/core/pim/today/plugins/datebook/datebookpluginwidget.cpp @@ -40,16 +40,17 @@ DatebookPluginWidget::DatebookPluginWidget( QWidget *parent, const char* name ) } m_layoutDates = new QVBoxLayout( this ); m_layoutDates->setAutoAdd( true ); m_eventsList.setAutoDelete( true ); readConfig(); getDates(); + m_layoutDates->addStretch(5); } DatebookPluginWidget::~DatebookPluginWidget() { delete db; delete m_layoutDates; } @@ -60,17 +61,25 @@ void DatebookPluginWidget::readConfig() { m_show_location = cfg.readNumEntry( "showlocation", 1 ); m_show_notes = cfg.readNumEntry( "shownotes", 0 ); m_onlyLater = cfg.readNumEntry( "onlylater", 1 ); m_moreDays = cfg.readNumEntry( "moredays", 0 ); } void DatebookPluginWidget::refresh() { m_eventsList.clear(); + + if ( m_layoutDates ) { + delete m_layoutDates; + } + m_layoutDates = new QVBoxLayout( this ); + m_layoutDates->setAutoAdd( true ); + getDates(); + m_layoutDates->addStretch(5); } /** * Get all events that are in the datebook xml file for today */ void DatebookPluginWidget::getDates() { QDate date = QDate::currentDate(); @@ -84,17 +93,17 @@ void DatebookPluginWidget::getDates() { if ( count <= m_max_lines_meet ) { if ( !m_onlyLater ) { count++; DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes ); m_eventsList.append( l ); l->show(); QObject::connect ( l, SIGNAL( editEvent( const Event & ) ), l, SLOT( editEventSlot( const Event & ) ) ); - } else if ( QDateTime::currentDateTime() <= (*it).event().end() ) { + } else if ( QDateTime::currentDateTime() <= (*it).event().end() || (*it).event().start().date() != date ) { count++; // show only later appointments DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes ); m_eventsList.append( l ); l->show(); QObject::connect ( l, SIGNAL( editEvent( const Event & ) ), l, SLOT( editEventSlot( const Event & ) ) ); } } @@ -108,8 +117,9 @@ void DatebookPluginWidget::getDates() { } else { QLabel* noEvents = new QLabel( this ); m_eventsList.append( noEvents ); noEvents->show(); noEvents->setText( QObject::tr( "No appointments today" ) ); } } + |