summaryrefslogtreecommitdiff
path: root/core/pim
authorharlekin <harlekin>2002-03-05 22:23:54 (UTC)
committer harlekin <harlekin>2002-03-05 22:23:54 (UTC)
commitc84da23a6ff2a8ff51b4da70f83b261f1e548be1 (patch) (side-by-side diff)
tree4d87cf43f7b9c48765b4879e4ee5c6e9ca5841b3 /core/pim
parent3ccfa79645d8bd99c7b559f9fa315d028db2c75d (diff)
downloadopie-c84da23a6ff2a8ff51b4da70f83b261f1e548be1.zip
opie-c84da23a6ff2a8ff51b4da70f83b261f1e548be1.tar.gz
opie-c84da23a6ff2a8ff51b4da70f83b261f1e548be1.tar.bz2
cosmetic changes on request from zecke
Diffstat (limited to 'core/pim') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/today.cpp140
1 files changed, 50 insertions, 90 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index c63a9ef..6a0e9fc 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -55,8 +55,7 @@ int ONLY_LATER;
* name 'name' and widget flags set to 'f'
*/
Today::Today( QWidget* parent, const char* name, WFlags fl )
- : TodayBase( parent, name, fl )
-{
+ : TodayBase( parent, name, fl ) {
QObject::connect( (QObject*)PushButton1, SIGNAL( clicked() ), this, SLOT(startConfig() ) );
QObject::connect( (QObject*)TodoButton, SIGNAL( clicked() ), this, SLOT(startTodo() ) );
QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) );
@@ -66,19 +65,16 @@ Today::Today( QWidget* parent, const char* name, WFlags fl )
}
-void Today::draw()
-{
+void Today::draw() {
init();
getDates();
getMail();
getTodo();
// how often refresh
QTimer::singleShot( 5*1000, this, SLOT(draw()) );
-
}
-void Today::init()
-{
+void Today::init() {
QDate date = QDate::currentDate();
QString time = (date.toString());
@@ -103,8 +99,7 @@ void Today::init()
}
-void Today::startConfig()
-{
+void Today::startConfig() {
conf = new todayconfig ( this, "", true );
@@ -153,8 +148,7 @@ void Today::startConfig()
/*
* Get all events that are in the datebook xml file for today
*/
-void Today::getDates()
-{
+void Today::getDates() {
QDate date = QDate::currentDate();
QTime time = QTime::currentTime();
QValueList<EffectiveEvent> list = db->getEffectiveEvents(date, date);
@@ -173,32 +167,25 @@ void Today::getDates()
count++;
- if ( count <= MAX_LINES_MEET )
- {
+ if ( count <= MAX_LINES_MEET ) {
//cout << time.toString() << endl;
//cout << TimeString::dateString((*it).event().end()) << endl;
// decide if to get all day or only later appointments
- if (!ONLY_LATER)
- {
+ if (!ONLY_LATER) {
msg += "<B>" + (*it).description() + "</B>";
- if ( (*it).event().hasAlarm() )
- {
+ if ( (*it).event().hasAlarm() ) {
msg += " <b>[with alarm]</b>";
}
// include location or not
- if (SHOW_LOCATION == 1)
- {
+ if (SHOW_LOCATION == 1) {
msg += "<BR><i>" + (*it).location();
msg += "</i>";
}
- if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") )
- {
+ if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") ) {
msg += "<br>All day";
- }
- else
- {
+ } else {
// start time of event
msg += "<br>" + TimeString::timeString(QTime((*it).event().start().time()) )
// end time of event
@@ -206,31 +193,23 @@ void Today::getDates()
}
msg += "<BR>";
// include possible note or not
- if (SHOW_NOTES == 1)
- {
+ if (SHOW_NOTES == 1) {
msg += " <i>note</i>:" +((*it).notes()).mid(0, MAX_CHAR_CLIP) + "<br>";
}
- }
- else if ((time.toString() <= TimeString::dateString((*it).event().end())) )
- {
+ } else if ((time.toString() <= TimeString::dateString((*it).event().end())) ) {
msg += "<B>" + (*it).description() + "</B>";
- if ( (*it).event().hasAlarm() )
- {
+ if ( (*it).event().hasAlarm() ) {
msg += " <b>[with alarm]</b>";
}
// include location or not
- if (SHOW_LOCATION == 1)
- {
+ if (SHOW_LOCATION == 1) {
msg+= "<BR><i>" + (*it).location();
msg += "</i>";
}
- if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") )
- {
+ if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") ) {
msg += "<br>All day";
- }
- else
- {
+ } else {
// start time of event
msg += "<br>" + TimeString::timeString(QTime((*it).event().start().time()) )
// end time of event
@@ -238,15 +217,13 @@ void Today::getDates()
}
msg += "<BR>";
// include possible note or not
- if (SHOW_NOTES == 1)
- {
+ if (SHOW_NOTES == 1) {
msg += " <i>note</i>:" +((*it).notes()).mid(0, MAX_CHAR_CLIP) + "<br>";
}
}
}
}
- if (msg.isEmpty())
- {
+ if (msg.isEmpty()) {
msg = "No more appointments today";
}
DatesField->setText(msg);
@@ -256,8 +233,7 @@ void Today::getDates()
/*
* Parse in the todolist.xml
*/
-QList<TodoItem> Today::loadTodo(const char *filename)
-{
+QList<TodoItem> Today::loadTodo(const char *filename) {
DOM *todo;
ELE *tasks;
ELE **tasklist;
@@ -273,47 +249,39 @@ QList<TodoItem> Today::loadTodo(const char *filename)
tasks = todo->el;
tasks = tasks->el[0]; /*!DOCTYPE-quickhack*/
- if(tasks)
- {
+ if(tasks) {
tasklist = tasks->el;
i = 0;
- while((tasklist) && (tasklist[i]))
- {
+ while((tasklist) && (tasklist[i])) {
attlist = tasklist[i]->at;
j = 0;
description = NULL;
priority = -1;
completed = -1;
- while((attlist) && (attlist[j]))
- {
- // SEGFAULT HERE WITH MORE THAN 7 ENTRIES
- if(!attlist[j]->name) continue;
- if(!strcmp(attlist[j]->name, "Description"))
- {
+ while((attlist) && (attlist[j])) {
+ if(!attlist[j]->name) {
+ continue;
+ }
+ if(!strcmp(attlist[j]->name, "Description")) {
description = attlist[j]->value;
}
// get Completed tag (0 or 1)
- if(!strcmp(attlist[j]->name, "Completed"))
- {
+ if(!strcmp(attlist[j]->name, "Completed")) {
QString s = attlist[j]->name;
- if(s == "Completed")
- {
+ if(s == "Completed") {
completed = QString(attlist[j]->value).toInt();
}
}
// get Priority (1 to 5)
- if(!strcmp(attlist[j]->name, "Priority"))
- {
+ if(!strcmp(attlist[j]->name, "Priority")) {
QString s = attlist[j]->name;
- if(s == "Priority")
- {
+ if(s == "Priority") {
priority = QString(attlist[j]->value).toInt();
}
}
j++;
}
- if(description)
- {
+ if(description) {
tmp = new TodoItem(description, completed, priority);
loadtodolist.append(tmp);
}
@@ -327,8 +295,7 @@ QList<TodoItem> Today::loadTodo(const char *filename)
}
-void Today::getMail()
-{
+void Today::getMail() {
Config cfg("opiemail");
cfg.setGroup("today");
@@ -336,7 +303,8 @@ void Today::getMail()
int NEW_MAILS = cfg.readNumEntry("newmails",0);
int OUTGOING = cfg.readNumEntry("outgoing",0);
- QString output = tr("<b>%1</b> new mails, <b>%2</b> outgoing").arg(NEW_MAILS).arg(OUTGOING);
+
+ QString output = tr("<b>%1</b> new mail(s), <b>%2</b> outgoing").arg(NEW_MAILS).arg(OUTGOING);
MailField->setText(output);
@@ -347,8 +315,7 @@ void Today::getMail()
* Get the todos
*
*/
-void Today::getTodo()
-{
+void Today::getTodo() {
QString output;
QString tmpout;
int count = 0;
@@ -357,31 +324,28 @@ void Today::getTodo()
QString homedir = dir.homeDirPath ();
// see if todolist.xml does exist.
QFile f(homedir +"/Applications/todolist/todolist.xml");
- if ( f.exists() )
- {
+ if ( f.exists() ) {
QList<TodoItem> todolist = loadTodo(homedir +"/Applications/todolist/todolist.xml");
TodoItem *item;
- for( item = todolist.first(); item; item = todolist.next())
- {
- if (!(item->getCompleted() == 1) )
- {
+ for( item = todolist.first(); item; item = todolist.next()) {
+ if (!(item->getCompleted() == 1) ) {
count++;
- if (count <= MAX_LINES_TASK)
- {
+ if (count <= MAX_LINES_TASK) {
tmpout += "<b>- </b>" + QString(((item)->getDescription().mid(0, MAX_CHAR_CLIP) + ("<br>")));
}
}
}
}
- if (count > 0)
- {
+ if (count > 0) {
+ if( count == 1 ) {
+ output = QString("There is <b> 1</b> active task: <br>" );
+ } else {
output = QString("There are <b> %1</b> active tasks: <br>").arg(count);
- output += tmpout;
}
- else
- {
+ output += tmpout;
+ } else {
output = ("No active tasks");
}
@@ -391,8 +355,7 @@ void Today::getTodo()
/*
* launches datebook
*/
-void Today::startDatebook()
-{
+void Today::startDatebook() {
QCopEnvelope e("QPE/System", "execute(QString)");
e << QString("datebook");
}
@@ -400,8 +363,7 @@ void Today::startDatebook()
/*
* launches todolist
*/
-void Today::startTodo()
-{
+void Today::startTodo() {
QCopEnvelope e("QPE/System", "execute(QString)");
e << QString("todolist");
}
@@ -409,8 +371,7 @@ void Today::startTodo()
/*
* launch opiemail
*/
-void Today::startMail()
-{
+void Today::startMail() {
QCopEnvelope e("QPE/System", "execute(QString)");
e << QString("opiemail");
}
@@ -418,7 +379,6 @@ void Today::startMail()
/*
* Destroys the object and frees any allocated resources
*/
-Today::~Today()
-{
+Today::~Today() {
// no need to delete child widgets, Qt does it all for us
}