summaryrefslogtreecommitdiffstats
path: root/kgantt/kgantt/KGanttBarConfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'kgantt/kgantt/KGanttBarConfig.h')
-rw-r--r--kgantt/kgantt/KGanttBarConfig.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/kgantt/kgantt/KGanttBarConfig.h b/kgantt/kgantt/KGanttBarConfig.h
new file mode 100644
index 000000000..5be04f72d
--- /dev/null
+++ b/kgantt/kgantt/KGanttBarConfig.h
@@ -0,0 +1,58 @@
+#ifndef _KGANTTBARCONFIG_H_
+#define _KGANTTBARCONFIG_H_
+
+/*
+
+ 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.
+
+ author : jh, jochen@ifb.bv.tu-berlin.de
+
+ file : KGanttBarConfig.h
+ date : 16 jan 2001
+
+
+ changelog :
+
+*/
+
+
+#include <qwidget.h>
+
+class xQGanttBarView;
+
+
+class KGanttBarConfig : public QWidget
+{
+
+ Q_OBJECT
+
+public:
+
+ KGanttBarConfig(xQGanttBarView* barview,
+ QWidget* parent = 0, const char* name=0, WFlags f=0);
+
+
+protected slots:
+
+ void changeBackground(const QColor& color);
+
+protected:
+
+ xQGanttBarView* _barview;
+
+};
+
+#endif