~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Tools/plugins/widget/plugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-07-16 18:37:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090716183741-oww9kcxqrk991i1n
Tags: upstream-0.8.2237
ImportĀ upstreamĀ versionĀ 0.8.2237

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (c) 2006 Werner Mayer <werner.wm.mayer@gmx.de>              *
 
3
 *                                                                         *
 
4
 *   This file is part of the FreeCAD CAx development system.              *
 
5
 *                                                                         *
 
6
 *   This library is free software; you can redistribute it and/or         *
 
7
 *   modify it under the terms of the GNU Library General Public           *
 
8
 *   License as published by the Free Software Foundation; either          *
 
9
 *   version 2 of the License, or (at your option) any later version.      *
 
10
 *                                                                         *
 
11
 *   This library  is distributed in the hope that it will be useful,      *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU Library General Public License for more details.                  *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU Library General Public     *
 
17
 *   License along with this library; see the file COPYING.LIB. If not,    *
 
18
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
 
19
 *   Suite 330, Boston, MA  02111-1307, USA                                *
 
20
 *                                                                         *
 
21
 ***************************************************************************/
 
22
 
 
23
 
 
24
#include <QtDesigner/QDesignerContainerExtension>
 
25
#include <QtDesigner/QDesignerCustomWidgetCollectionInterface>
 
26
 
 
27
#include <QtCore/qplugin.h>
 
28
#include <QtGui/QIcon>
 
29
 
 
30
class QDesignerFormEditorInterface;
 
31
 
 
32
class CustomWidgetPlugin : public QObject, public QDesignerCustomWidgetCollectionInterface
 
33
{
 
34
    Q_OBJECT
 
35
    Q_INTERFACES(QDesignerCustomWidgetCollectionInterface)
 
36
public:
 
37
    CustomWidgetPlugin(QObject *parent = 0);
 
38
    QList<QDesignerCustomWidgetInterface *> customWidgets () const;
 
39
};
 
40
 
 
41
class WizardPlugin : public QObject, 
 
42
                     public QDesignerCustomWidgetInterface
 
43
{
 
44
    Q_OBJECT
 
45
    Q_INTERFACES(QDesignerCustomWidgetInterface)
 
46
public:
 
47
    WizardPlugin();
 
48
    QWidget *createWidget(QWidget *parent);
 
49
    
 
50
    QString group() const;
 
51
    QIcon icon() const;
 
52
    QString includeFile() const;
 
53
    QString toolTip() const;
 
54
    QString whatsThis() const;
 
55
    bool isContainer() const;
 
56
    QString name() const;
 
57
    bool isInitialized() const;
 
58
    void initialize(QDesignerFormEditorInterface *formEditor);
 
59
    QString domXml() const;
 
60
 
 
61
private Q_SLOTS:
 
62
    void currentIndexChanged(int index);
 
63
    void pageTitleChanged(const QString &title);
 
64
 
 
65
private:
 
66
    bool initialized;
 
67
};