summaryrefslogtreecommitdiffstats
path: root/kcron/ktlistvar.cpp
blob: 38056580cbcbfdc61618c14b2eed4e359b9534e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/***************************************************************************
 *   KT list view item variable 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 "ktlistvar.h"
#include "ktprint.h"

#include <tdelocale.h>  // 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,TQString::fromLocal8Bit(ctvar->variable.c_str()));

  if (ctvar->enabled)
  {
    setText (1,TQString::fromLocal8Bit(ctvar->value.c_str()));
    setText (2,TQString::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(TQString::fromLocal8Bit(ctvar->variable.c_str()), 1, KTPrint::alignTextLeft);
  if (ctvar->enabled) {
    printer.print(TQString::fromLocal8Bit(ctvar->value.c_str()),2, KTPrint::alignTextCenter);
    printer.print(TQString::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;
}