summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-04-04 17:16:33 (UTC)
committer mickeyl <mickeyl>2004-04-04 17:16:33 (UTC)
commit5dc77f8c1ef0b22d208a629ebbb61476909569be (patch) (unidiff)
tree3d89d7b55eb5010783b5e31a48872ff778b81aeb
parent2d87ac4bb0d799d15c7ea96ea444e5de617abdef (diff)
downloadopie-5dc77f8c1ef0b22d208a629ebbb61476909569be.zip
opie-5dc77f8c1ef0b22d208a629ebbb61476909569be.tar.gz
opie-5dc77f8c1ef0b22d208a629ebbb61476909569be.tar.bz2
better use owarn here
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
index 5de6b0a..d76a29a 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
@@ -30,49 +30,49 @@ AddressBookPluginWidget::AddressBookPluginWidget( QWidget *parent, const char*
30 m_contactdb = 0l; 30 m_contactdb = 0l;
31 layoutTodo = 0l; 31 layoutTodo = 0l;
32 32
33 // Hä ? Nonsense ! (se) 33 // Hä ? Nonsense ! (se)
34 if ( m_contactdb ) { 34 if ( m_contactdb ) {
35 delete m_contactdb; 35 delete m_contactdb;
36 } 36 }
37 37
38 m_contactdb = new Opie::OPimContactAccess("addressplugin"); 38 m_contactdb = new Opie::OPimContactAccess("addressplugin");
39 39
40 connect( m_contactdb, SIGNAL( signalChanged(const Opie::OPimContactAccess*) ), 40 connect( m_contactdb, SIGNAL( signalChanged(const Opie::OPimContactAccess*) ),
41 this, SLOT( refresh(const Opie::OPimContactAccess*) ) ); 41 this, SLOT( refresh(const Opie::OPimContactAccess*) ) );
42 42
43 43
44 readConfig(); 44 readConfig();
45 getAddress(); 45 getAddress();
46} 46}
47 47
48AddressBookPluginWidget::~AddressBookPluginWidget() { 48AddressBookPluginWidget::~AddressBookPluginWidget() {
49 delete m_contactdb; 49 delete m_contactdb;
50} 50}
51 51
52void AddressBookPluginWidget::refresh( const Opie::OPimContactAccess* ) 52void AddressBookPluginWidget::refresh( const Opie::OPimContactAccess* )
53{ 53{
54 oerr << " AddressBookPluginWidget::Database was changed externally ! " << oendl; 54 owarn << " AddressBookPluginWidget::Database was changed externally ! " << oendl;
55 m_contactdb->reload(); 55 m_contactdb->reload();
56 getAddress(); 56 getAddress();
57} 57}
58 58
59void AddressBookPluginWidget::reinitialize() { 59void AddressBookPluginWidget::reinitialize() {
60 readConfig(); 60 readConfig();
61 getAddress(); 61 getAddress();
62} 62}
63 63
64void AddressBookPluginWidget::readConfig() { 64void AddressBookPluginWidget::readConfig() {
65 Config cfg( "todayaddressplugin" ); 65 Config cfg( "todayaddressplugin" );
66 cfg.setGroup( "config" ); 66 cfg.setGroup( "config" );
67 m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 ); 67 m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 );
68 m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 ); 68 m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 );
69 m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 ); 69 m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 );
70 m_urgentDays = cfg.readNumEntry( "urgentdays", 7 ); 70 m_urgentDays = cfg.readNumEntry( "urgentdays", 7 );
71 m_entryColor = cfg.readEntry("entrycolor", Qt::black.name() ); 71 m_entryColor = cfg.readEntry("entrycolor", Qt::black.name() );
72 m_headlineColor = cfg.readEntry( "headlinecolor", Qt::black.name() ); 72 m_headlineColor = cfg.readEntry( "headlinecolor", Qt::black.name() );
73 m_urgentColor = cfg.readEntry( "urgentcolor", Qt::red.name() ); 73 m_urgentColor = cfg.readEntry( "urgentcolor", Qt::red.name() );
74 m_showBirthdays = cfg.readBoolEntry( "showBirthdays", true ); 74 m_showBirthdays = cfg.readBoolEntry( "showBirthdays", true );
75 m_showAnniversaries = cfg.readBoolEntry( "showAnniversaries", true ); 75 m_showAnniversaries = cfg.readBoolEntry( "showAnniversaries", true );
76} 76}
77 77
78 78
@@ -84,49 +84,49 @@ void AddressBookPluginWidget::getAddress() {
84 if ( ! layoutTodo ){ 84 if ( ! layoutTodo ){
85 layoutTodo = new QVBoxLayout( this ); 85 layoutTodo = new QVBoxLayout( this );
86 } 86 }
87 87
88 if ( ! addressLabel ) { 88 if ( ! addressLabel ) {
89 addressLabel = new Opie::Ui::OClickableLabel( this ); 89 addressLabel = new Opie::Ui::OClickableLabel( this );
90 connect( addressLabel, SIGNAL( clicked() ), this, SLOT( startAddressBook() ) ); 90 connect( addressLabel, SIGNAL( clicked() ), this, SLOT( startAddressBook() ) );
91 layoutTodo->addWidget( addressLabel ); 91 layoutTodo->addWidget( addressLabel );
92 } 92 }
93 93
94 QString output; 94 QString output;
95 95
96 // Check whether the database provide the search option.. 96 // Check whether the database provide the search option..
97 if ( !m_contactdb->hasQuerySettings( Opie::OPimContactAccess::DateDiff ) ){ 97 if ( !m_contactdb->hasQuerySettings( Opie::OPimContactAccess::DateDiff ) ){
98 // Libopie seems to be old.. 98 // Libopie seems to be old..
99 output = QObject::tr( "Database does not provide this search query ! Please upgrade libOpie !<br>" ); 99 output = QObject::tr( "Database does not provide this search query ! Please upgrade libOpie !<br>" );
100 addressLabel->setText( output ); 100 addressLabel->setText( output );
101 return; 101 return;
102 } 102 }
103 103
104 // Define the query for birthdays and start search.. 104 // Define the query for birthdays and start search..
105 QDate lookAheadDate = QDate::currentDate().addDays( m_daysLookAhead ); 105 QDate lookAheadDate = QDate::currentDate().addDays( m_daysLookAhead );
106 int ammount = 0; 106 int ammount = 0;
107 if ( m_showBirthdays ){ 107 if ( m_showBirthdays ){
108 oerr << "Searching from now (" << QDate::currentDate().toString() << ") until " 108 owarn << "Searching from now (" << QDate::currentDate().toString() << ") until "
109 << lookAheadDate.toString() << " ! " << oendl; 109 << lookAheadDate.toString() << " ! " << oendl;
110 } 110 }
111 111
112 if ( m_contactdb->hasQuerySettings( Opie::OPimContactAccess::DateDiff ) ){ 112 if ( m_contactdb->hasQuerySettings( Opie::OPimContactAccess::DateDiff ) ){
113 113
114 114
115 Opie::OPimContact querybirthdays; 115 Opie::OPimContact querybirthdays;
116 querybirthdays.setBirthday( lookAheadDate ); 116 querybirthdays.setBirthday( lookAheadDate );
117 117
118 m_list = m_contactdb->queryByExample( querybirthdays, 118 m_list = m_contactdb->queryByExample( querybirthdays,
119 Opie::OPimContactAccess::DateDiff ); 119 Opie::OPimContactAccess::DateDiff );
120 if ( m_list.count() > 0 ){ 120 if ( m_list.count() > 0 ){
121 output = "<font color=" + m_headlineColor + ">" 121 output = "<font color=" + m_headlineColor + ">"
122 + QObject::tr( "Next birthdays in <b> %1 </b> days:" ) 122 + QObject::tr( "Next birthdays in <b> %1 </b> days:" )
123 .arg( m_daysLookAhead ) 123 .arg( m_daysLookAhead )
124 + "</font> <br>"; 124 + "</font> <br>";
125 for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { 125 for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) {
126 if ( ammount++ < m_maxLinesTask ){ 126 if ( ammount++ < m_maxLinesTask ){
127 // Now we want to calculate how many days 127 // Now we want to calculate how many days
128 //until birthday. We have to set 128 //until birthday. We have to set
129 // the correct year to calculate the day diff... 129 // the correct year to calculate the day diff...
130 QDate destdate = (*m_it).birthday(); 130 QDate destdate = (*m_it).birthday();
131 destdate.setYMD( QDate::currentDate().year(), 131 destdate.setYMD( QDate::currentDate().year(),
132 destdate.month(), destdate.day() ); 132 destdate.month(), destdate.day() );