From 1c24ec58bd7fc8a0a46cdaf41e4c6b7e68e4dba6 Mon Sep 17 00:00:00 2001 From: eilers Date: Mon, 07 Jul 2003 16:17:27 +0000 Subject: Adding feature: Disabling/Enabling of Birthdays/Anniversaries is possible, now ! --- (limited to 'core') diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp index a234236..9c65e7d 100644 --- a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp +++ b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp @@ -25,6 +25,7 @@ #include #include #include +#include AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* name) @@ -33,53 +34,66 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* QVBoxLayout * layout = new QVBoxLayout( this ); layout->setMargin( 20 ); - QHBox *box1 = new QHBox( this ); +#if 0 + // Informational stuff + QHBox *box4 = new QHBox( this ); + QLabel* colorLabel = new QLabel( box4, "" ); + colorLabel->setText( tr( "To activate settings: Restart application !" ) ); +#endif + + // Buttongroup to enable/disable shown stuff + QVGroupBox* b_group = new QVGroupBox( this, "name" ); + b_group -> setTitle( tr("Enable/Disable Views") ); + m_showBirthdayButton = new QRadioButton( b_group ); + m_showBirthdayButton -> setText( tr( "Show &Birthdays" ) ); + m_showAnniversaryButton = new QRadioButton( b_group ); + m_showAnniversaryButton -> setText( tr( "Show &Anniveraries" ) ); + + QWhatsThis::add( m_showBirthdayButton , tr( "The next birthdays will just be shown, if enabled!" ) ); + QWhatsThis::add( m_showAnniversaryButton , tr( "The next anniversaries will just be shown, if enabled !" ) ); + // Max lines settings + QHBox *box1 = new QHBox( this ); QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" ); TextLabel6->setText( tr( "Max Lines: " ) ); - SpinBox2 = new QSpinBox( box1, "SpinBox2" ); SpinBox2->setMaxValue( 40 ); QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of lines that should be shown for each anniversaries/birthdays" ) ); +#if 0 + // Clip settings (currently not used) QHBox *box2 = new QHBox( this ); - QLabel* clipLabel = new QLabel( box2, "" ); clipLabel->setText( tr( "Clip line after X chars: " ) ); - SpinBoxClip = new QSpinBox( box2, "SpinClip" ); SpinBoxClip->setMaxValue( 200 ); QWhatsThis::add( SpinBoxClip , tr( "After how many chars should be the info about the task be cut off" ) ); +#endif + // Look ahead settings QHBox *box3 = new QHBox( this ); - QLabel* daysLabel = new QLabel( box3, "" ); daysLabel->setText( tr( "Days look ahead: " ) ); SpinDaysClip = new QSpinBox( box3, "SpinDays" ); SpinDaysClip->setMaxValue( 200 ); QWhatsThis::add( SpinDaysClip , tr( "How many days we should search forward" ) ); - QHBox *box4 = new QHBox( this ); - - QLabel* colorLabel = new QLabel( box4, "" ); - colorLabel->setText( tr( "To activate settings: Restart application !" ) ); - + // Headline color settings QHBox *box5 = new QHBox( this ); - QLabel* colorLabel2 = new QLabel( box5, "" ); colorLabel2->setText( tr( "Set Headline Color: " ) ); headlineColor = new OColorButton( box5, black , "headlineColor" ); QWhatsThis::add( headlineColor , tr( "Colors for the headlines !" ) ); - QHBox *box6 = new QHBox( this ); + // Entry color settings QLabel* colorLabel3= new QLabel( box6, "" ); colorLabel3->setText( tr( "Set Entry Color: " ) ); entryColor = new OColorButton( box6, black , "entryColor" ); QWhatsThis::add( entryColor , tr( "This color will be used for shown birthdays/anniversaries !" ) ); + // Urgent color settings QHBox *box7 = new QHBox( this ); - QLabel* colorLabel5 = new QLabel( box7, "" ); colorLabel5->setText( tr( "Set Urgent\nColor if below " ) ); SpinUrgentClip = new QSpinBox( box7, "SpinDays" ); @@ -91,9 +105,10 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* QWhatsThis::add( SpinUrgentClip , tr( "The urgent color will be used if the birthday/anniversary is closer than given days !" ) ); - layout->addWidget( box4 ); + layout->addWidget( b_group ); + // layout->addWidget( box4 ); layout->addWidget( box1 ); - layout->addWidget( box2 ); + // layout->addWidget( box2 ); layout->addWidget( box3 ); layout->addWidget( box5 ); layout->addWidget( box6 ); @@ -108,8 +123,8 @@ void AddressBookPluginConfig::readConfig() { cfg.setGroup( "config" ); m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 ); SpinBox2->setValue( m_max_lines_task ); - m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 ); - SpinBoxClip->setValue( m_maxCharClip ); +// m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 ); +// SpinBoxClip->setValue( m_maxCharClip ); m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 ); SpinDaysClip->setValue( m_daysLookAhead ); m_urgentDays = cfg.readNumEntry( "urgentdays", 7 ); @@ -121,6 +136,10 @@ void AddressBookPluginConfig::readConfig() { headlineColor->setColor( QColor( m_headlineColor ) ); m_urgentColor = cfg.readEntry( "urgentcolor", Qt::red.name() ); urgentColor->setColor( QColor( m_urgentColor ) ); + + m_showBirthdayButton->setChecked( cfg.readBoolEntry( "showBirthdays", true ) ); + m_showAnniversaryButton->setChecked( cfg.readBoolEntry( "showAnniversaries", true ) ); + } @@ -129,8 +148,8 @@ void AddressBookPluginConfig::writeConfig() { cfg.setGroup( "config" ); m_max_lines_task = SpinBox2->value(); cfg.writeEntry( "maxlinestask", m_max_lines_task ); - m_maxCharClip = SpinBoxClip->value(); - cfg.writeEntry( "maxcharclip", m_maxCharClip ); +// m_maxCharClip = SpinBoxClip->value(); +// cfg.writeEntry( "maxcharclip", m_maxCharClip ); m_daysLookAhead = SpinDaysClip->value(); cfg.writeEntry( "dayslookahead", m_daysLookAhead ); m_urgentDays = SpinUrgentClip->value(); @@ -144,6 +163,10 @@ void AddressBookPluginConfig::writeConfig() { cfg.writeEntry( "headlinecolor", m_headlineColor ); m_urgentColor = urgentColor->color().name(); cfg.writeEntry( "urgentcolor", m_urgentColor ); + + cfg.writeEntry( "showBirthdays", m_showBirthdayButton->isChecked() ); + cfg.writeEntry( "showAnniversaries", m_showAnniversaryButton->isChecked() ); + cfg.write(); } diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.h b/core/pim/today/plugins/addressbook/addresspluginconfig.h index ea03368..5e07aa3 100644 --- a/core/pim/today/plugins/addressbook/addresspluginconfig.h +++ b/core/pim/today/plugins/addressbook/addresspluginconfig.h @@ -21,6 +21,7 @@ #include #include +#include #include #include @@ -48,6 +49,8 @@ private: OColorButton* entryColor; OColorButton* headlineColor; OColorButton* urgentColor; + QRadioButton* m_showBirthdayButton; + QRadioButton* m_showAnniversaryButton; // how many lines should be showed in the AddressBook section int m_max_lines_task; diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp index 7d87fca..498de28 100644 --- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp +++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp @@ -75,6 +75,8 @@ void AddressBookPluginWidget::readConfig() { m_entryColor = cfg.readEntry("entrycolor", Qt::black.name() ); m_headlineColor = cfg.readEntry( "headlinecolor", Qt::black.name() ); m_urgentColor = cfg.readEntry( "urgentcolor", Qt::red.name() ); + m_showBirthdays = cfg.readBoolEntry( "showBirthdays", true ); + m_showAnniversaries = cfg.readBoolEntry( "showAnniversaries", true ); } @@ -96,51 +98,73 @@ void AddressBookPluginWidget::getAddress() { QString output; // Check whether the database provide the search option.. - if ( ! m_contactdb->hasQuerySettings( OContactAccess::DateDiff ) ){ - - // Define the query for birthdays and start search.. - QDate lookAheadDate = QDate::currentDate().addDays( m_daysLookAhead ); - qWarning("Searching from now (%s) until %s ! ", QDate::currentDate().toString().latin1(), + // The following if-statement was replaced due to a bug in some + // implementations of libopie. The replacement should work everywhere..(eilers) + // if ( !m_contactdb->hasQuerySettings( OContactAccess::DateDiff ) ){ + if ( !( m_contactdb->querySettings() & OContactAccess::DateDiff ) ){ + // Libopie seems to be old.. + output = QObject::tr( "Database does not provide this search query ! Please upgrade libOpie !
" ); + addressLabel->setText( output ); + return; + } + + // Define the query for birthdays and start search.. + QDate lookAheadDate = QDate::currentDate().addDays( m_daysLookAhead ); + int ammount = 0; + if ( m_showBirthdays ){ + qWarning("Searching from now (%s) until %s ! ", + QDate::currentDate().toString().latin1(), lookAheadDate.toString().latin1() ); OContact querybirthdays; querybirthdays.setBirthday( lookAheadDate ); - - int ammount = 0; - m_list = m_contactdb->queryByExample( querybirthdays, OContactAccess::DateDiff ); + + m_list = m_contactdb->queryByExample( querybirthdays, + OContactAccess::DateDiff ); if ( m_list.count() > 0 ){ output = "" - + QObject::tr( "Next birthdays in %1 days:" ).arg( m_daysLookAhead ) + + QObject::tr( "Next birthdays in %1 days:" ) + .arg( m_daysLookAhead ) + "
"; for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { if ( ammount++ < m_maxLinesTask ){ - // Now we want to calculate how many days until birthday. We have to set + // Now we want to calculate how many days + //until birthday. We have to set // the correct year to calculate the day diff... QDate destdate = (*m_it).birthday(); - destdate.setYMD( QDate::currentDate().year(), destdate.month(), destdate.day() ); + destdate.setYMD( QDate::currentDate().year(), + destdate.month(), destdate.day() ); if ( QDate::currentDate().daysTo(destdate) < 0 ) - destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() ); + destdate.setYMD( QDate::currentDate().year()+1, + destdate.month(), destdate.day() ); if ( QDate::currentDate().daysTo(destdate) < m_urgentDays ) - output += "-" + (*m_it).fullName() + output += "-" + + (*m_it).fullName() + " (" - + QString::number(QDate::currentDate().daysTo(destdate)) + + QString::number(QDate::currentDate() + .daysTo(destdate)) + " Days)
"; else - output += "-" + (*m_it).fullName() + output += "-" + + (*m_it).fullName() + " (" - + QString::number(QDate::currentDate().daysTo(destdate)) + + QString::number(QDate::currentDate() + .daysTo(destdate)) + " Days)
"; } } } else { output = "" - + QObject::tr( "No birthdays in %1 days!" ).arg( m_daysLookAhead ) + + QObject::tr( "No birthdays in %1 days!" ) + .arg( m_daysLookAhead ) + "
"; } + } + if ( m_showAnniversaries ){ // Define the query for anniversaries and start search.. OContact queryanniversaries; queryanniversaries.setAnniversary( lookAheadDate ); @@ -150,41 +174,44 @@ void AddressBookPluginWidget::getAddress() { ammount = 0; if ( m_list.count() > 0 ){ output += "" - + QObject::tr( "Next anniversaries in %1 days:" ).arg( m_daysLookAhead ) + + QObject::tr( "Next anniversaries in %1 days:" ) + .arg( m_daysLookAhead ) + "
"; for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { if ( ammount++ < m_maxLinesTask ){ - // Now we want to calculate how many days until anniversary. We have to set - // the correct year to calculate the day diff... + // Now we want to calculate how many days until anniversary. + // We have to set the correct year to calculate the day diff... QDate destdate = (*m_it).anniversary(); - destdate.setYMD( QDate::currentDate().year(), destdate.month(), destdate.day() ); + destdate.setYMD( QDate::currentDate().year(), destdate.month(), + destdate.day() ); if ( QDate::currentDate().daysTo(destdate) < 0 ) - destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() ); + destdate.setYMD( QDate::currentDate().year()+1, + destdate.month(), destdate.day() ); if ( QDate::currentDate().daysTo(destdate) < m_urgentDays ) - output += "-" + (*m_it).fullName() + output += "-" + + (*m_it).fullName() + " (" - + QString::number(QDate::currentDate().daysTo( destdate ) ) + + QString::number(QDate::currentDate() + .daysTo( destdate ) ) + " Days)
"; else - output += "-" + (*m_it).fullName() + output += "-" + + (*m_it).fullName() + " (" - + QString::number(QDate::currentDate().daysTo( destdate ) ) + + QString::number(QDate::currentDate() + .daysTo( destdate ) ) + " Days)
"; } } } else { output += "" - + QObject::tr( "No anniversaries in %1 days!" ).arg( m_daysLookAhead ) + + QObject::tr( "No anniversaries in %1 days!" ) + .arg( m_daysLookAhead ) + "
"; } - - - }else{ - // Libopie seems to be old.. - output = QObject::tr( "Database does not provide this search query ! Please upgrade libOpie !
" ); } - + addressLabel->setText( output ); } diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.h b/core/pim/today/plugins/addressbook/addresspluginwidget.h index 63f2a2b..cf2ecce 100644 --- a/core/pim/today/plugins/addressbook/addresspluginwidget.h +++ b/core/pim/today/plugins/addressbook/addresspluginwidget.h @@ -58,6 +58,8 @@ private: QString m_entryColor; QString m_headlineColor; QString m_urgentColor; + bool m_showBirthdays; + bool m_showAnniversaries; }; #endif -- cgit v0.9.0.2