Quarter  1.2.2
Coin3D GUI binding for Qt
Loading...
Searching...
No Matches
QuarterWidgetPlugin.h
1#ifndef QUARTER_QUARTERWIDGETPLUGIN_H
2#define QUARTER_QUARTERWIDGETPLUGIN_H
3
4/**************************************************************************\
5 * Copyright (c) Kongsberg Oil & Gas Technologies AS
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * Neither the name of the copyright holder nor the names of its
20 * contributors may be used to endorse or promote products derived from
21 * this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34\**************************************************************************/
35
36#include <QtCore/qglobal.h>
37
38#if QT_VERSION >= 0x050000
39# include <QtUiPlugin/QDesignerCustomWidgetInterface>
40#else
41# include <QDesignerCustomWidgetInterface>
42#endif
43
44namespace SIM { namespace Coin3D { namespace Quarter { namespace QtDesigner {
45
48 Q_OBJECT
49#if QT_VERSION >= 0x050000
50 Q_PLUGIN_METADATA(IID "org.coin3d.Qt.QDesignerCustomWidgetInterface")
51#endif
53
54public:
55 QuarterWidgetPlugin(QObject * parent = 0);
57
58 bool isContainer(void) const;
59 bool isInitialized(void) const;
60 QIcon icon(void) const;
61 QString domXml(void) const;
62 QString group(void) const;
63 QString includeFile(void) const;
64 QString name(void) const;
65 QString toolTip(void) const;
66 QString whatsThis(void) const;
67 QWidget * createWidget(QWidget * parent);
68 void initialize(QDesignerFormEditorInterface * core);
69
70private slots:
71 void widgetDestroyed(QObject * obj);
72
73private:
74 class QuarterWidgetPluginP * pimpl;
75};
76
77}}}} // namespace
78
79#endif // QUARTER_QUARTERWIDGETPLUGIN_H
The QuarterWidgetPlugin makes the QuarterWidget available to Qt Designer.
Definition QuarterWidgetPlugin.h:47
QString includeFile(void) const
Definition QuarterWidgetPlugin.cpp:273
QIcon icon(void) const
Definition QuarterWidgetPlugin.cpp:207
bool isInitialized(void) const
Definition QuarterWidgetPlugin.cpp:127
void initialize(QDesignerFormEditorInterface *core)
Definition QuarterWidgetPlugin.cpp:110
bool isContainer(void) const
Definition QuarterWidgetPlugin.cpp:234
QString whatsThis(void) const
Definition QuarterWidgetPlugin.cpp:225
~QuarterWidgetPlugin()
Definition QuarterWidgetPlugin.cpp:99
QString toolTip(void) const
Definition QuarterWidgetPlugin.cpp:216
QString name(void) const
Definition QuarterWidgetPlugin.cpp:189
QString group(void) const
Definition QuarterWidgetPlugin.cpp:198
QString domXml(void) const
Definition QuarterWidgetPlugin.cpp:250
QuarterWidgetPlugin(QObject *parent=0)
constructor
Definition QuarterWidgetPlugin.cpp:86
QWidget * createWidget(QWidget *parent)
Definition QuarterWidgetPlugin.cpp:138