2011-05-10 16:51:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2011-05-10 16:51:02 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator
|
2011-05-10 16:51:02 +02:00
|
|
|
**
|
|
|
|
**
|
|
|
|
** GNU Free Documentation License
|
|
|
|
**
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
|
|
** Documentation License version 1.3 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file included in the packaging of this
|
|
|
|
** file.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\page qtcreator-dev-wizards.html
|
|
|
|
\title Creating Wizards in Code
|
|
|
|
|
|
|
|
\section1 Introduction
|
|
|
|
|
|
|
|
If the functionality provided by template-based
|
2015-02-18 10:20:03 +01:00
|
|
|
\l{http://doc.qt.io/qtcreator/creator-project-wizards.html}{custom wizards}
|
2011-05-10 16:51:02 +02:00
|
|
|
is not sufficient for your case, you can write wizards in code.
|
|
|
|
|
2015-07-01 11:12:16 +02:00
|
|
|
A wizard in \QC is an instance of a class implementing
|
2015-05-22 18:02:24 +02:00
|
|
|
the Core::IWizardFactory interface that is registered with
|
|
|
|
ExtensionSystem::PluginManager.
|
2011-05-10 16:51:02 +02:00
|
|
|
|
|
|
|
Implementing wizards requires:
|
|
|
|
\list
|
2015-07-01 11:12:16 +02:00
|
|
|
\li Writing a factory class that derives from Core::IWizardFactory. This is
|
|
|
|
a very generic interface that does not make any assumption about what
|
|
|
|
the wizard does and what its UI looks like.
|
2011-05-10 16:51:02 +02:00
|
|
|
|
2013-09-25 18:19:45 +02:00
|
|
|
\li Providing a set of parameters that determine how the wizard shows up
|
2015-07-01 11:12:16 +02:00
|
|
|
in the list of wizards in the \uicontrol {New File or Project} dialog.
|
2011-05-10 16:51:02 +02:00
|
|
|
|
2015-05-22 18:02:24 +02:00
|
|
|
When deriving from Core::IWizardFactory, the constructor has to call
|
|
|
|
the following setters provided by the base class:
|
|
|
|
|
|
|
|
\list
|
|
|
|
\li \c setId
|
|
|
|
\li \c setWizardKind
|
|
|
|
\li \c setIcon
|
|
|
|
\li \c setDescription
|
|
|
|
\li \c setDisplayName
|
|
|
|
\li \c setCategory
|
|
|
|
\li \c setDisplayCategory
|
|
|
|
\li \c setDescriptionImage
|
|
|
|
\li \c setRequiredFeatures
|
|
|
|
\li \c setFlags
|
|
|
|
\endlist
|
|
|
|
|
2013-09-25 18:19:45 +02:00
|
|
|
\li Implementing the wizard UI
|
2011-05-10 16:51:02 +02:00
|
|
|
|
2013-09-25 18:19:45 +02:00
|
|
|
Typically, this will be a class derived from Utils::Wizard.
|
|
|
|
Utils::Wizard extends QWizard with the functionality to show a progress
|
|
|
|
bar on the left.
|
2011-05-10 16:51:02 +02:00
|
|
|
|
2013-09-25 18:19:45 +02:00
|
|
|
\li Implementing the wizard functionality
|
2011-05-10 16:51:02 +02:00
|
|
|
|
2015-07-01 11:12:16 +02:00
|
|
|
It is recommended to use Core::GeneratedFile to represent files
|
|
|
|
that need to be written to disk. They allow to delay writing the actual
|
|
|
|
data to disk till the wizard is done.
|
2011-05-10 16:51:02 +02:00
|
|
|
\endlist
|
|
|
|
|
|
|
|
\section2 Relevant Classes
|
|
|
|
|
|
|
|
\table
|
2015-07-01 11:12:16 +02:00
|
|
|
\header
|
|
|
|
\li Class
|
|
|
|
\li Description
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li Core::IWizardFactory
|
|
|
|
\li \QC wizard interface, implementations of which are registered
|
|
|
|
with ExtensionSystem::PluginManager.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li Core::GeneratedFile
|
|
|
|
\li A file containing name, contents, and some attributes.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li Utils::FileWizardPage
|
|
|
|
\li Introductory wizard page asking for file name and path.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li Utils::ProjectIntroPage
|
|
|
|
\li Introductory wizard page asking for project name and path.
|
2011-05-10 16:51:02 +02:00
|
|
|
\endtable
|
|
|
|
|
2015-07-01 11:12:16 +02:00
|
|
|
\section2 Setters and Getters of IWizardFactory
|
2011-05-10 16:51:02 +02:00
|
|
|
|
2015-07-01 11:12:16 +02:00
|
|
|
The setters and getters listed below determine how the wizard shows up
|
|
|
|
in the list of wizards in the \uicontrol {New File or Project} dialog.
|
2011-05-10 16:51:02 +02:00
|
|
|
|
|
|
|
\table
|
2015-07-01 11:12:16 +02:00
|
|
|
\header
|
|
|
|
\li Type
|
|
|
|
\li Parameter Name
|
|
|
|
\li Description
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li Core::IWizardFactory::WizardKind
|
|
|
|
\li kind
|
|
|
|
\li Enumeration value that indicates the type of the wizard
|
|
|
|
(\c project or \c file).
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li QIcon
|
|
|
|
\li icon
|
|
|
|
\li Icon to show.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li QString
|
|
|
|
\li description
|
|
|
|
\li Descriptive text.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li QString
|
|
|
|
\li displayName
|
|
|
|
\li Name to be shown in the list.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li QString
|
|
|
|
\li id
|
|
|
|
\li Unique identifier for the wizard. It also determines the order
|
|
|
|
within a category.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li QString
|
|
|
|
\li category
|
|
|
|
\li Identifier of the category under which the wizard is to be
|
|
|
|
listed. It also determines the order of the categories.
|
|
|
|
|
|
|
|
\row
|
|
|
|
\li QString
|
|
|
|
\li displayCategory
|
|
|
|
\li Description of the category.
|
2011-05-10 16:51:02 +02:00
|
|
|
\endtable
|
|
|
|
|
2015-07-01 11:12:16 +02:00
|
|
|
All wizards that have the same category set will be grouped together in the
|
|
|
|
\uicontrol {New File or Project} dialog.
|
2011-05-10 16:51:02 +02:00
|
|
|
|
|
|
|
*/
|