From 8c20dc919f7d54eb48fb60f39ba5e1d466a70763 Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Wed, 13 Jan 2021 19:26:24 +0200 Subject: Initial commit Signed-off-by: Mavridis Philippe --- src/ktlistcron.cpp | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/ktlistcron.cpp (limited to 'src/ktlistcron.cpp') diff --git a/src/ktlistcron.cpp b/src/ktlistcron.cpp new file mode 100644 index 0000000..ba03d2a --- /dev/null +++ b/src/ktlistcron.cpp @@ -0,0 +1,68 @@ +/*************************************************************************** + * KT list view item cron 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 "ktlistcron.h" + +#include + +#include "ctcron.h" + +#include "kticon.h" +//#include "ktprint.h" + +KTListCron::KTListCron(KTListItem* parent, const char* name, + CTCron* _ctcron) : + KTListItem(parent, name, _ctcron) +{ + refresh(); +} + +KTListCron::KTListCron(QListView* parent, const char* name, + CTCron* _ctcron) : + KTListItem(parent, name, _ctcron) +{ + refresh(); +} + +KTListCron::KTListCron(QListView* parent, CTCron* _ctcron) : + KTListItem(parent, (const char*)0, _ctcron) +{ + refresh(); +} + +void KTListCron::refresh() +{ + setPixmap(0, getCTCron()->login.c_str() == (i18n("(System Crontab)")) ? + KTIcon::system(true) : KTIcon::user(true)); + + QString userName = QString::fromLocal8Bit(getCTCron()->login.c_str()); + + if (getCTCron()->login != getCTCron()->name) + { + userName += QString(" ("); + userName += QString::fromLocal8Bit(getCTCron()->name.c_str()); + userName += QString(")"); + } + setText(0, userName); +} + +// void KTListCron::print (KTPrint& printer) const +// { +// QString userInfo; +// userInfo = QString::fromLocal8Bit(getCTCron()->name.c_str()); +// +// KTListItem* ktli = (KTListItem*)this->firstChild(); +// Q_CHECK_PTR(ktli); +// while (ktli) { +// ktli->print(printer); +// ktli = (KTListItem*)ktli->nextSibling(); +// } +// } -- cgit v1.2.1