diff options
Diffstat (limited to 'kplato/kptresourceappointmentsview.h')
-rw-r--r-- | kplato/kptresourceappointmentsview.h | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/kplato/kptresourceappointmentsview.h b/kplato/kptresourceappointmentsview.h new file mode 100644 index 00000000..76bb9073 --- /dev/null +++ b/kplato/kptresourceappointmentsview.h @@ -0,0 +1,102 @@ +/* This file is part of the KDE project + Copyright (C) 2005 Dag Andersen <[email protected]> + + 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 QComboBox; +class QDateEdit; +class QPushButton; +class QSplitter; +class QListView; +class QListViewItem; +class QLabel; +class QPushButton; + +class KListView; +class KListViewItem; +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, QWidget *parent); + + //~ResourceAppointmentsView(); + + void zoom(double zoom); + + View *mainView() const { return m_mainview; } + void draw(Resource *resource, const QDate &start, const QDate &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, QListView *parent, bool highlight=false); + NodeItem(Node *n, QListViewItem *parent, bool highlight=false); + NodeItem(QString text, QListView *parent, bool highlight=false); + NodeItem(QString text, QListViewItem *parent, bool highlight=false); + + Node *node; + EffortCostMap effortMap; + }; + +private: + View *m_mainview; + + int m_defaultFontSize; + Resource *m_resource; + QDate m_start; + QDate m_end; + NodeItem *m_availItem; + NodeItem *m_totalItem; +}; + +} //KPlato namespace + + +#endif // KPTTASKAPPOINTMENTSVIEW_H |