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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
/* This file is part of the KDE project
Copyright (C) 2005 Dag Andersen <danders@get2net.dk>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library Cost Public
License as published by the Free Software Foundation;
version 2 of the License.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library Cost Public License for more details.
You should have received a copy of the GNU Library Cost Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "kpttaskcostpanel.h"
#include "kptaccount.h"
#include "kpttask.h"
#include "kptcommand.h"
#include "kptpart.h"
#include <kmessagebox.h>
#include <klineedit.h>
#include <kcombobox.h>
#include <klocale.h>
#include <kcommand.h>
#include <kdebug.h>
namespace KPlato
{
TaskCostPanel::TaskCostPanel(Task &task, Accounts &accounts, TQWidget *p, const char *n)
: TaskCostPanelImpl(p, n),
m_task(task),
m_accounts(accounts) {
m_accountList << i18n("None");
m_accountList += accounts.costElements();
setStartValues(task);
}
void TaskCostPanel::setStartValues(Task &task) {
runningAccount->insertStringList(m_accountList);
m_oldrunning = m_accounts.findRunningAccount(task);
if (m_oldrunning) {
setCurrentItem(runningAccount, m_oldrunning->name());
}
startupCost->setText(TDEGlobal::locale()->formatMoney(task.startupCost()));
startupAccount->insertStringList(m_accountList);
m_oldstartup = m_accounts.findStartupAccount(task);
if (m_oldstartup) {
setCurrentItem(startupAccount, m_oldstartup->name());
}
shutdownCost->setText(TDEGlobal::locale()->formatMoney(task.shutdownCost()));
shutdownAccount->insertStringList(m_accountList);
m_oldshutdown = m_accounts.findShutdownAccount(task);
if (m_oldshutdown) {
setCurrentItem(shutdownAccount, m_oldshutdown->name());
}
}
void TaskCostPanel::setCurrentItem(TQComboBox *box, TQString name) {
box->setCurrentItem(0);
for (int i = 0; i < box->count(); ++i) {
if (name == box->text(i)) {
box->setCurrentItem(i);
break;
}
}
}
KCommand *TaskCostPanel::buildCommand(Part *part) {
KMacroCommand *cmd = new KMacroCommand(i18n("Modify Task Cost"));
bool modified = false;
if ((m_oldrunning == 0 && runningAccount->currentItem() != 0) ||
(m_oldrunning && m_oldrunning->name() != runningAccount->currentText())) {
cmd->addCommand(new NodeModifyRunningAccountCmd(part, m_task, m_oldrunning, m_accounts.findAccount(runningAccount->currentText())));
modified = true;
}
if ((m_oldstartup == 0 && startupAccount->currentItem() != 0) ||
(m_oldstartup && m_oldstartup->name() != startupAccount->currentText())) {
cmd->addCommand(new NodeModifyStartupAccountCmd(part, m_task, m_oldstartup, m_accounts.findAccount(startupAccount->currentText())));
modified = true;
}
if ((m_oldshutdown == 0 && shutdownAccount->currentItem() != 0) ||
(m_oldshutdown && m_oldshutdown->name() != shutdownAccount->currentText())) {
cmd->addCommand(new NodeModifyShutdownAccountCmd(part, m_task, m_oldshutdown, m_accounts.findAccount(shutdownAccount->currentText())));
modified = true;
}
double money = TDEGlobal::locale()->readMoney(startupCost->text());
if (money != m_task.startupCost()) {
cmd->addCommand(new NodeModifyStartupCostCmd(part, m_task, money));
modified = true;
}
money = TDEGlobal::locale()->readMoney(shutdownCost->text());
if (money != m_task.shutdownCost()) {
cmd->addCommand(new NodeModifyShutdownCostCmd(part, m_task, money));
modified = true;
}
if (!modified) {
delete cmd;
return 0;
}
return cmd;
}
bool TaskCostPanel::ok() {
if (runningAccount->currentItem() == 0 ||
m_accounts.findAccount(runningAccount->currentText()) == 0) {
//message
return false;
}
if (startupAccount->currentItem() == 0 ||
m_accounts.findAccount(startupAccount->currentText()) == 0) {
//message
return false;
}
if (shutdownAccount->currentItem() == 0 ||
m_accounts.findAccount(shutdownAccount->currentText()) == 0) {
//message
return false;
}
return true;
}
TaskCostPanelImpl::TaskCostPanelImpl(TQWidget *p, const char *n)
: TaskCostPanelBase(p, n)
{
connect(runningAccount, TQT_SIGNAL(activated(int)), TQT_SLOT(slotChanged()));
connect(startupAccount, TQT_SIGNAL(activated(int)), TQT_SLOT(slotChanged()));
connect(shutdownAccount, TQT_SIGNAL(activated(int)), TQT_SLOT(slotChanged()));
connect(startupCost, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(slotChanged()));
connect(shutdownCost, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(slotChanged()));
}
void TaskCostPanelImpl::slotChanged() {
emit changed();
}
} //KPlato namespace
#include "kpttaskcostpanel.moc"
|