You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
227 lines
6.4 KiB
227 lines
6.4 KiB
/* 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 General 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General 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.
|
|
*/
|
|
|
|
#ifndef KPTACCOUNT_H
|
|
#define KPTACCOUNT_H
|
|
|
|
#include <tqdatetime.h>
|
|
#include <tqdict.h>
|
|
#include <tqptrlist.h>
|
|
#include <tqstringlist.h>
|
|
|
|
#include "kpteffortcostmap.h"
|
|
#include "kptnode.h"
|
|
|
|
#include <kdebug.h>
|
|
|
|
class TQDomElement;
|
|
class TQString;
|
|
|
|
namespace KPlato
|
|
{
|
|
|
|
class Accounts;
|
|
class Account;
|
|
|
|
|
|
/**
|
|
* Account holds one account.
|
|
* An account can have any number of sub-accounts.
|
|
* Account names must be unique.
|
|
*/
|
|
class Account
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
Account();
|
|
|
|
/**
|
|
*
|
|
*/
|
|
Account(TQString name, TQString description=TQString());
|
|
|
|
/**
|
|
* Destructor.
|
|
*/
|
|
~Account();
|
|
|
|
|
|
TQString name() const { return m_name; }
|
|
void setName(TQString name);
|
|
|
|
TQString description() const { return m_description; }
|
|
void setDescription(TQString desc) { m_description = desc; }
|
|
|
|
bool isElement() const { return m_accountList.isEmpty(); }
|
|
|
|
Accounts *list() const { return m_list; }
|
|
void setList(Accounts *list) { m_list = list; }
|
|
Account *parent() const { return m_parent; }
|
|
void setParent(Account *parent) { m_parent = parent; }
|
|
void clear() { m_accountList.clear(); }
|
|
void append(Account *account);
|
|
void take(Account *account);
|
|
void insertChildren();
|
|
|
|
bool load(TQDomElement &element, const Project &project);
|
|
void save(TQDomElement &element) const;
|
|
|
|
const TQPtrList<Account> &accountList() const { return m_accountList; }
|
|
|
|
Account *findAccount() const { return findAccount(m_name); }
|
|
Account *findAccount(const TQString &id) const;
|
|
bool removeId() { return removeId(m_name); }
|
|
bool removeId(const TQString &id);
|
|
bool insertId();
|
|
bool insertId(const Account *account);
|
|
|
|
class CostPlace {
|
|
public:
|
|
CostPlace()
|
|
: m_account(0), m_nodeId(), m_node(0), m_running(false), m_startup(false), m_shutdown(false)
|
|
{}
|
|
CostPlace(Account *acc)
|
|
: m_account(acc), m_nodeId(), m_node(0), m_running(false), m_startup(false), m_shutdown(false)
|
|
{}
|
|
CostPlace(Account *acc, Node *node, bool running=false, bool strtup=false, bool shutdown=false)
|
|
: m_account(acc), m_nodeId(node->id()), m_node(node) {
|
|
if (node) {
|
|
setRunning(running);
|
|
setStartup(strtup);
|
|
setShutdown(shutdown);
|
|
}
|
|
}
|
|
CostPlace(CostPlace *cp) {
|
|
m_account = cp->m_account;
|
|
m_nodeId = cp->m_nodeId;
|
|
m_node = cp->m_node;
|
|
m_running = cp->m_running;
|
|
m_startup = cp->m_startup;
|
|
m_shutdown = cp->m_shutdown;
|
|
}
|
|
~CostPlace();
|
|
|
|
bool isEmpty() { return !(m_running || m_startup || m_shutdown); }
|
|
Node *node() const { return m_node; }
|
|
|
|
bool running() const { return m_running; }
|
|
void setRunning(bool on );
|
|
bool startup() const { return m_startup; }
|
|
void setStartup(bool on);
|
|
bool shutdown() const { return m_shutdown; }
|
|
void setShutdown(bool on);
|
|
|
|
bool load(TQDomElement &element, const Project &project);
|
|
void save(TQDomElement &element) const;
|
|
|
|
private:
|
|
Account *m_account;
|
|
TQString m_nodeId;
|
|
Node *m_node;
|
|
bool m_running;
|
|
bool m_startup;
|
|
bool m_shutdown;
|
|
};
|
|
|
|
void append(const CostPlace *cp) { m_costPlaces.append(cp); }
|
|
const TQPtrList<CostPlace> &costPlaces() const {return m_costPlaces; }
|
|
Account::CostPlace *findCostPlace(const Node &node) const;
|
|
CostPlace *findRunning(const Node &node) const;
|
|
void removeRunning(const Node &node);
|
|
void addRunning(Node &node);
|
|
CostPlace *findStartup(const Node &node) const;
|
|
void removeStartup(const Node &node);
|
|
void addStartup(Node &node);
|
|
CostPlace *findShutdown(const Node &node) const;
|
|
void removeShutdown(const Node &node);
|
|
void addShutdown(Node &node);
|
|
|
|
private:
|
|
TQString m_name;
|
|
TQString m_description;
|
|
Accounts *m_list;
|
|
Account *m_parent;
|
|
TQPtrList<Account> m_accountList;
|
|
TQPtrList<CostPlace> m_costPlaces;
|
|
|
|
#ifndef NDEBUG
|
|
public:
|
|
void printDebug(TQString indent);
|
|
#endif
|
|
};
|
|
|
|
typedef TQPtrList<Account> AccountList;
|
|
typedef TQPtrListIterator<Account> AccountListIterator;
|
|
|
|
/**
|
|
* Accounts administrates all accounts.
|
|
*/
|
|
|
|
class Accounts
|
|
{
|
|
public:
|
|
Accounts(Project &project);
|
|
~Accounts();
|
|
|
|
Account *defaultAccount() const { return m_defaultAccount; }
|
|
void setDefaultAccount(Account *account) { m_defaultAccount = account; }
|
|
|
|
EffortCostMap plannedCost(const Account &account, const TQDate &start, const TQDate &end);
|
|
|
|
void clear() { m_accountList.clear(); m_idDict.clear(); }
|
|
void append(Account *account);
|
|
void take(Account *account);
|
|
|
|
bool load(TQDomElement &element, const Project &project);
|
|
void save(TQDomElement &element) const;
|
|
|
|
TQStringList costElements() const;
|
|
TQStringList nameList() const;
|
|
|
|
const AccountList &accountList() const { return m_accountList; }
|
|
|
|
Account *findRunningAccount(const Node &node) const;
|
|
Account *findStartupAccount(const Node &node) const;
|
|
Account *findShutdownAccount(const Node &node) const;
|
|
Account *findAccount(const TQString &id) const;
|
|
bool insertId(const Account *account);
|
|
bool removeId(const TQString &id);
|
|
|
|
void accountDeleted(Account *account)
|
|
{ if (account == m_defaultAccount) m_defaultAccount = 0; }
|
|
private:
|
|
Project &m_project;
|
|
AccountList m_accountList;
|
|
TQDict<Account> m_idDict;
|
|
|
|
Account *m_defaultAccount;
|
|
|
|
#ifndef NDEBUG
|
|
public:
|
|
void printDebug(TQString indent);
|
|
#endif
|
|
};
|
|
|
|
} //namespace KPlato
|
|
|
|
#endif
|