diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 37333bf25ad9a4c538250f5af2f9f1d666362883 (patch) | |
tree | c45e8df5b9efbffe07eb3d9340df7811c7e16943 /kcron/ktlisttask.cpp | |
download | tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.tar.gz tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcron/ktlisttask.cpp')
-rw-r--r-- | kcron/ktlisttask.cpp | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/kcron/ktlisttask.cpp b/kcron/ktlisttask.cpp new file mode 100644 index 0000000..b496b77 --- /dev/null +++ b/kcron/ktlisttask.cpp @@ -0,0 +1,70 @@ +/*************************************************************************** + * KT list view item task implementation. * + * -------------------------------------------------------------------- * + * Copyright (C) 1999, Gary Meyer <gary@meyer.net> * + * -------------------------------------------------------------------- * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ + +#include <klocale.h> // i18n() + +#include "cttask.h" + +#include "ktlisttask.h" +#include "kticon.h" +#include "kttask.h" +#include "ktprint.h" + +KTListTask::KTListTask(KTListItem* parent, + CTCron* _ctcron, CTTask* _cttask) : + KTListItem(parent, 0, _ctcron), + cttask(_cttask) + +{ + refresh(); + parent->setOpen(true); +} + +void KTListTask::refresh() +{ + setText(0, QString::fromLocal8Bit(cttask->comment.c_str())); + + if (cttask->enabled) + { + setText(1, QString::fromLocal8Bit(cttask->command.c_str())); + setText(2, QString::fromLocal8Bit(cttask->describe().c_str())); + } + else + { + setText(1, ""); + setText(2, i18n("Disabled")); + } + + setPixmap(0, KTIcon::task(true)); +} + +void KTListTask::print (KTPrint &printer) const +{ + printer.print(QString::fromLocal8Bit(cttask->comment.c_str()), 1, KTPrint::alignTextLeft); + if (cttask->enabled) { + printer.print(QString::fromLocal8Bit(cttask->command.c_str()),2, KTPrint::alignTextCenter); + printer.print(QString::fromLocal8Bit(cttask->describe().c_str()),3, KTPrint::alignTextRight); + } + else + printer.print(i18n("Disabled."), 3, KTPrint::alignTextRight); +} + +void KTListTask::edit() +{ + KTTask(cttask,i18n("Modify Task")).exec(); + refresh(); + parent()->sortChildItems(1, true); +} + +CTTask* KTListTask::getCTTask() const +{ + return cttask; +} |