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.
104 lines
2.7 KiB
104 lines
2.7 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; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
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 KPTRESOURCEAPPOINTMENTSVIEW_H
|
|
#define KPTRESOURCEAPPOINTMENTSVIEW_H
|
|
|
|
#include "kptcontext.h"
|
|
#include "kptdoublelistviewbase.h"
|
|
#include "kpteffortcostmap.h"
|
|
|
|
class TQComboBox;
|
|
class TQDateEdit;
|
|
class TQPushButton;
|
|
class TQSplitter;
|
|
class TQListView;
|
|
class TQListViewItem;
|
|
class TQLabel;
|
|
class TQPushButton;
|
|
|
|
class TDEListView;
|
|
class TDEListViewItem;
|
|
class KPrinter;
|
|
|
|
namespace KPlato
|
|
{
|
|
|
|
class View;
|
|
class Project;
|
|
class Resource;
|
|
class Node;
|
|
|
|
class ResourceGroup;
|
|
class Resource;
|
|
|
|
class ResourceAppointmentsView : public DoubleListViewBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
ResourceAppointmentsView(View *view, TQWidget *parent);
|
|
|
|
//~ResourceAppointmentsView();
|
|
|
|
void zoom(double zoom);
|
|
|
|
View *mainView() const { return m_mainview; }
|
|
void draw(Resource *resource, const TQDate &start, const TQDate &end);
|
|
void draw();
|
|
void print(KPrinter &printer);
|
|
void clear();
|
|
|
|
//virtual bool setContext(Context::ResourceAppointmentsView &context);
|
|
//virtual void getContext(Context::ResourceAppointmentsView &context) const;
|
|
|
|
virtual void createSlaveItems();
|
|
|
|
protected slots:
|
|
void slotUpdate();
|
|
|
|
private:
|
|
class NodeItem : public DoubleListViewBase::MasterListItem {
|
|
public:
|
|
NodeItem(Node *n, TQListView *parent, bool highlight=false);
|
|
NodeItem(Node *n, TQListViewItem *parent, bool highlight=false);
|
|
NodeItem(TQString text, TQListView *parent, bool highlight=false);
|
|
NodeItem(TQString text, TQListViewItem *parent, bool highlight=false);
|
|
|
|
Node *node;
|
|
EffortCostMap effortMap;
|
|
};
|
|
|
|
private:
|
|
View *m_mainview;
|
|
|
|
int m_defaultFontSize;
|
|
Resource *m_resource;
|
|
TQDate m_start;
|
|
TQDate m_end;
|
|
NodeItem *m_availItem;
|
|
NodeItem *m_totalItem;
|
|
};
|
|
|
|
} //KPlato namespace
|
|
|
|
|
|
#endif // KPTTASKAPPOINTMENTSVIEW_H
|