1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
/* This file is part of the KDE project
Copyright (C) 2003 Lucijan Busch <lucijan@kde.org>
Copyright (C) 2004 Cedric Pasteur <cedric.pasteur@free.fr>
Copyright (C) 2006-2007 Jaroslaw Staniek <js@iidea.pl>
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 CONTAINERFACTORY_H
#define CONTAINERFACTORY_H
#include <kcommand.h>
#include "widgetfactory.h"
#include "../utils.h"
namespace KFormDesigner
{
class Form;
class FormManager;
class Container;
}
class InsertPageCommand : public KCommand
{
public:
InsertPageCommand(KFormDesigner::Container *container, QWidget *widget);
virtual void execute();
virtual void unexecute();
virtual QString name() const;
protected:
KFormDesigner::Form *m_form;
QString m_containername;
QString m_name;
QString m_parentname;
int m_pageid;
};
//! Helper widget (used when using 'Lay out horizontally')
class KFORMEDITOR_EXPORT HBox : public QFrame
{
Q_OBJECT
public:
HBox(QWidget *parent, const char *name);
virtual ~HBox(){;}
void setPreviewMode() {m_preview = true;}
virtual void paintEvent(QPaintEvent *ev);
protected:
bool m_preview;
};
//! Helper widget (used when using 'Lay out vertically')
class KFORMEDITOR_EXPORT VBox : public QFrame
{
Q_OBJECT
public:
VBox(QWidget *parent, const char *name);
virtual ~VBox(){;}
void setPreviewMode() {m_preview = true;}
virtual void paintEvent(QPaintEvent *ev);
protected:
bool m_preview;
};
//! Helper widget (used when using 'Lay out in a grid')
class KFORMEDITOR_EXPORT Grid : public QFrame
{
Q_OBJECT
public:
Grid(QWidget *parent, const char *name);
virtual ~Grid(){;}
void setPreviewMode() {m_preview = true;}
virtual void paintEvent(QPaintEvent *ev);
protected:
bool m_preview;
};
//! Helper widget (used when using 'Lay out with horizontal flow')
class KFORMEDITOR_EXPORT HFlow : public QFrame
{
Q_OBJECT
public:
HFlow(QWidget *parent, const char *name);
virtual ~HFlow(){;}
void setPreviewMode() {m_preview = true;}
virtual void paintEvent(QPaintEvent *ev);
protected:
bool m_preview;
};
//! Helper widget (used when using 'Lay out with horizontal flow')
class KFORMEDITOR_EXPORT VFlow : public QFrame
{
Q_OBJECT
public:
VFlow(QWidget *parent, const char *name);
virtual ~VFlow(){;}
void setPreviewMode() {m_preview = true;}
virtual void paintEvent(QPaintEvent *ev);
virtual QSize sizeHint() const;
protected:
bool m_preview;
};
//! A simple container widget
class KFORMEDITOR_EXPORT ContainerWidget : public QWidget
{
Q_OBJECT
friend class KFDTabWidget;
public:
ContainerWidget(QWidget *parent, const char *name);
virtual ~ContainerWidget();
virtual QSize sizeHint() const;
//! Used to emit handleDragMoveEvent() signal needed to control dragging over the container's surface
virtual void dragMoveEvent( QDragMoveEvent *e );
//! Used to emit handleDropEvent() signal needed to control dropping on the container's surface
virtual void dropEvent( QDropEvent *e );
signals:
//! Needed to control dragging over the container's surface
void handleDragMoveEvent(QDragMoveEvent *e);
//! Needed to control dropping on the container's surface
void handleDropEvent(QDropEvent *e);
};
//! A tab widget
class KFORMEDITOR_EXPORT KFDTabWidget : public KFormDesigner::TabWidget
{
Q_OBJECT
public:
KFDTabWidget(QWidget *parent, const char *name);
virtual ~KFDTabWidget();
virtual QSize sizeHint() const;
//! Used to emit handleDragMoveEvent() signal needed to control dragging over the container's surface
virtual void dragMoveEvent( QDragMoveEvent *e );
//! Used to emit handleDropEvent() signal needed to control dropping on the container's surface
virtual void dropEvent( QDropEvent *e );
signals:
//! Needed to control dragging over the container's surface
void handleDragMoveEvent(QDragMoveEvent *e);
//! Needed to control dropping on the container's surface
void handleDropEvent(QDropEvent *e);
};
//! A group box widget
class KFORMEDITOR_EXPORT GroupBox : public QGroupBox
{
Q_OBJECT
public:
GroupBox(const QString & title, QWidget *parent, const char *name);
virtual ~GroupBox();
//! Used to emit handleDragMoveEvent() signal needed to control dragging over the container's surface
virtual void dragMoveEvent( QDragMoveEvent *e );
//! Used to emit handleDropEvent() signal needed to control dropping on the container's surface
virtual void dropEvent( QDropEvent *e );
signals:
//! Needed to control dragging over the container's surface
void handleDragMoveEvent(QDragMoveEvent *e);
//! Needed to control dropping on the container's surface
void handleDropEvent(QDropEvent *e);
};
//! A form embedded as a widget inside other form
class KFORMEDITOR_EXPORT SubForm : public QScrollView
{
Q_OBJECT
Q_PROPERTY(QString formName READ formName WRITE setFormName DESIGNABLE true)
public:
SubForm(QWidget *parent, const char *name);
~SubForm() {}
//! \return the name of the subform inside the db
QString formName() const { return m_formName; }
void setFormName(const QString &name);
private:
// KFormDesigner::FormManager *m_manager;
KFormDesigner::Form *m_form;
QWidget *m_widget;
QString m_formName;
};
//! Standard Factory for all container widgets
class ContainerFactory : public KFormDesigner::WidgetFactory
{
Q_OBJECT
public:
ContainerFactory(QObject *parent, const char *name, const QStringList &args);
virtual ~ContainerFactory();
virtual QWidget *createWidget(const QCString & classname, QWidget *parent, const char *name, KFormDesigner::Container *container,
int options = DefaultOptions);
virtual bool createMenuActions(const QCString& classname, QWidget *w, QPopupMenu *menu,
KFormDesigner::Container *container);
virtual bool startEditing(const QCString &classname, QWidget *w,
KFormDesigner::Container *container);
virtual bool previewWidget(const QCString &classname, QWidget *widget,
KFormDesigner::Container *container);
virtual bool saveSpecialProperty(const QCString &classname, const QString &name,
const QVariant &value, QWidget *w, QDomElement &parentNode, QDomDocument &parent);
virtual bool readSpecialProperty(const QCString &classname, QDomElement &node, QWidget *w,
KFormDesigner::ObjectTreeItem *item);
virtual QValueList<QCString> autoSaveProperties(const QCString &classname);
protected:
virtual bool isPropertyVisibleInternal(const QCString &classname, QWidget *w,
const QCString &property, bool isTopLevel);
virtual bool changeText(const QString &newText);
virtual void resizeEditor(QWidget *editor, QWidget *widget, const QCString &classname);
public slots:
void addTabPage();
void addStackPage();
void renameTabPage();
void removeTabPage();
void removeStackPage();
void prevStackPage();
void nextStackPage();
void reorderTabs(int oldpos, int newpos);
private:
// QWidget *m_widget;
// KFormDesigner::Container *m_container;
// KFormDesigner::FormManager *m_manager;
};
#endif
|