From 37333bf25ad9a4c538250f5af2f9f1d666362883 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kcron/ktlistvar.cpp | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 kcron/ktlistvar.cpp (limited to 'kcron/ktlistvar.cpp') diff --git a/kcron/ktlistvar.cpp b/kcron/ktlistvar.cpp new file mode 100644 index 0000000..1157683 --- /dev/null +++ b/kcron/ktlistvar.cpp @@ -0,0 +1,80 @@ +/*************************************************************************** + * KT list view item variable implementation. * + * -------------------------------------------------------------------- * + * Copyright (C) 1999, Gary Meyer * + * -------------------------------------------------------------------- * + * 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 "ktlistvar.h" +#include "ktprint.h" + +#include // i18n() + +#include "ctvariable.h" + +#include "kticon.h" +#include "ktvariable.h" + +KTListVar::KTListVar(KTListItem* parent, CTCron* _ctcron, + CTVariable* _ctvariable) : + KTListItem(parent, 0, _ctcron), + ctvar(_ctvariable) +{ + refresh(); + parent->setOpen(true); +} + +void KTListVar::refresh() +{ + setText (0,QString::fromLocal8Bit(ctvar->variable.c_str())); + + if (ctvar->enabled) + { + setText (1,QString::fromLocal8Bit(ctvar->value.c_str())); + setText (2,QString::fromLocal8Bit(ctvar->comment.c_str())); + } + else + { + setText(1, ""); + setText(2, i18n("Disabled")); + } + + if (ctvar->variable == "MAILTO") + setPixmap(0, KTIcon::mail(true)); + else if (ctvar->variable == "SHELL") + setPixmap(0, KTIcon::shell(true)); + else if (ctvar->variable == "HOME") + setPixmap(0, KTIcon::home(true)); + else if (ctvar->variable == "PATH") + setPixmap(0, KTIcon::path(true)); + else + setPixmap(0, KTIcon::variable(true)); +} + +void KTListVar::print(KTPrint& printer) const +{ + printer.print(QString::fromLocal8Bit(ctvar->variable.c_str()), 1, KTPrint::alignTextLeft); + if (ctvar->enabled) { + printer.print(QString::fromLocal8Bit(ctvar->value.c_str()),2, KTPrint::alignTextCenter); + printer.print(QString::fromLocal8Bit(ctvar->comment.c_str()),3,KTPrint::alignTextRight); + } + else + printer.print(i18n("Disabled."),3, KTPrint::alignTextRight); + +} + +void KTListVar::edit() +{ + KTVariable(ctvar,i18n("Modify Variable")).exec(); + refresh(); + parent()->sortChildItems(1, true); +} + +CTVariable* KTListVar::getCTVariable() const +{ + return ctvar; +} -- cgit v1.2.3