1 | /**********************************************************************
|
---|
2 | ** Copyright (C) 2000-2001 Trolltech AS. All rights reserved.
|
---|
3 | **
|
---|
4 | ** This file is part of Qt Designer.
|
---|
5 | **
|
---|
6 | ** This file may be distributed and/or modified under the terms of the
|
---|
7 | ** GNU General Public License version 2 as published by the Free Software
|
---|
8 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
9 | ** packaging of this file.
|
---|
10 | **
|
---|
11 | ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
|
---|
12 | ** licenses may use this file in accordance with the Qt Commercial License
|
---|
13 | ** Agreement provided with the Software.
|
---|
14 | **
|
---|
15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
---|
16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
---|
17 | **
|
---|
18 | ** See http://www.trolltech.com/gpl/ for GPL licensing information.
|
---|
19 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
|
---|
20 | ** information about Qt Commercial License Agreements.
|
---|
21 | **
|
---|
22 | ** Contact info@trolltech.com if any conditions of this licensing are
|
---|
23 | ** not clear to you.
|
---|
24 | **
|
---|
25 | **********************************************************************/
|
---|
26 |
|
---|
27 | #ifndef TEMPLATEWIZARDIFACE_H
|
---|
28 | #define TEMPLATEWIZARDIFACE_H
|
---|
29 |
|
---|
30 | //
|
---|
31 | // W A R N I N G -- PRIVATE INTERFACES
|
---|
32 | // --------------------------------------
|
---|
33 | //
|
---|
34 | // This file and the interfaces declared in the file are not
|
---|
35 | // public. It exists for internal purpose. This header file and
|
---|
36 | // interfaces may change from version to version (even binary
|
---|
37 | // incompatible) without notice, or even be removed.
|
---|
38 | //
|
---|
39 | // We mean it.
|
---|
40 | //
|
---|
41 | //
|
---|
42 |
|
---|
43 | #include <private/qcom_p.h>
|
---|
44 |
|
---|
45 | class QWidget;
|
---|
46 | struct DesignerFormWindow;
|
---|
47 |
|
---|
48 | // {983d3eab-fea3-49cc-97ad-d8cc89b7c17b}
|
---|
49 | #ifndef IID_TemplateWizard
|
---|
50 | #define IID_TemplateWizard QUuid( 0x983d3eab, 0xfea3, 0x49cc, 0x97, 0xad, 0xd8, 0xcc, 0x89, 0xb7, 0xc1, 0x7b )
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | class TemplateWizardInterface : public QFeatureListInterface
|
---|
54 | {
|
---|
55 | public:
|
---|
56 | virtual void setup( const QString &templ, QWidget *widget, DesignerFormWindow *fw, QUnknownInterface *appIface ) = 0;
|
---|
57 |
|
---|
58 | };
|
---|
59 |
|
---|
60 | #endif
|
---|