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.
koffice/kplato/kptcontext.h

88 lines
2.1 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 KPTCONTEXT_H
#define KPTCONTEXT_H
#include <tqdatetime.h>
#include <tqstring.h>
#include <tqstringlist.h>
class TQDomElement;
namespace KPlato
{
class Context {
public:
Context();
virtual ~Context();
virtual bool load(TQDomElement &element);
virtual void save(TQDomElement &element) const;
// View
TQString currentView;
int currentEstimateType;
long currentSchedule;
bool actionViewExpected;
bool actionViewOptimistic;
bool actionViewPessimistic;
struct Ganttview {
int ganttviewsize;
int taskviewsize;
TQString currentNode;
bool showResources;
bool showTaskName;
bool showTaskLinks;
bool showProgress;
bool showPositiveFloat;
bool showCriticalTasks;
bool showCriticalPath;
bool showNoInformation;
TQStringList closedNodes;
} ganttview;
struct Pertview {
} pertview;
struct Resourceview {
} resourceview;
struct Accountsview {
int accountsviewsize;
int periodviewsize;
TQDate date;
int period;
bool cumulative;
TQStringList closedItems;
} accountsview;
struct Reportview {
} reportview;
};
} //KPlato namespace
#endif //CONTEXT_H