1 /****************************************************************************
2 **
3 ** Copyright (C) 2015 The Qt Company Ltd.
4 ** Contact: http://www.qt.io/licensing/
5 **
6 ** This file is part of the Qt Designer of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see http://www.qt.io/terms-conditions. For further
15 ** information use the contact form at http://www.qt.io/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 or version 3 as published by the Free
20 ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
21 ** LICENSE.LGPLv3 included in the packaging of this file. Please review the
22 ** following information to ensure the GNU Lesser General Public License
23 ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
24 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
25 **
26 ** As a special exception, The Qt Company gives you certain additional
27 ** rights. These rights are described in The Qt Company LGPL Exception
28 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
29 **
30 ** GNU General Public License Usage
31 ** Alternatively, this file may be used under the terms of the GNU
32 ** General Public License version 3.0 as published by the Free Software
33 ** Foundation and appearing in the file LICENSE.GPL included in the
34 ** packaging of this file.  Please review the following information to
35 ** ensure the GNU General Public License version 3.0 requirements will be
36 ** met: http://www.gnu.org/copyleft/gpl.html.
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #include "abstractnewformwidget_p.h"
43 #include <newformwidget_p.h>
44 
45 QT_BEGIN_NAMESPACE
46 
47 /*!
48     \class QDesignerNewFormWidgetInterface
49     \since 4.5
50     \internal
51 
52     \brief QDesignerNewFormWidgetInterface provides an interface for chooser
53            widgets that can be used within "New Form" dialogs and wizards.
54            It presents the user with a list of choices taken from built-in
55            templates, pre-defined template paths and suitable custom widgets.
56            It provides a static creation function that returns \QD's
57            implementation.
58 
59     \inmodule QtDesigner
60 */
61 
62 /*!
63     Constructs a QDesignerNewFormWidgetInterface object.
64 */
65 
QDesignerNewFormWidgetInterface(QWidget * parent)66 QDesignerNewFormWidgetInterface::QDesignerNewFormWidgetInterface(QWidget *parent) :
67     QWidget(parent)
68 {
69 }
70 
71 /*!
72     Destroys the QDesignerNewFormWidgetInterface object.
73 */
74 
~QDesignerNewFormWidgetInterface()75 QDesignerNewFormWidgetInterface::~QDesignerNewFormWidgetInterface()
76 {
77 }
78 
79 /*!
80     Creates an instance of the QDesignerNewFormWidgetInterface as a child
81     of \a parent using \a core.
82 */
83 
createNewFormWidget(QDesignerFormEditorInterface * core,QWidget * parent)84 QDesignerNewFormWidgetInterface *QDesignerNewFormWidgetInterface::createNewFormWidget(QDesignerFormEditorInterface *core, QWidget *parent)
85 {
86     return new qdesigner_internal::NewFormWidget(core, parent);
87 }
88 
89 /*!
90     \fn bool QDesignerNewFormWidgetInterface::hasCurrentTemplate() const
91 
92     Returns whether a form template is currently selected.
93 */
94 
95 /*!
96     \fn QString QDesignerNewFormWidgetInterface::currentTemplate(QString *errorMessage = 0)
97 
98     Returns the contents of the currently selected template. If the method fails,
99     an empty string is returned and \a errorMessage receives an error message.
100 */
101 
102 // Signals
103 
104 /*!
105     \fn void QDesignerNewFormWidgetInterface::templateActivated()
106 
107     This signal is emitted whenever the user activates a template by double-clicking.
108 */
109 
110 /*!
111     \fn void QDesignerNewFormWidgetInterface::currentTemplateChanged(bool templateSelected)
112 
113     This signal is emitted whenever the user changes the current template.
114     \a templateSelected indicates whether a template is currently selected.
115 */
116 
117 QT_END_NAMESPACE
118