forked from qt-creator/qt-creator
Ran script to remove inludes on a trial-and-error basis and manually corrected it. Change-Id: I53fa1aafaf98fd3105ef35b595e4311854cf9cbc Reviewed-by: Daniel Teske <daniel.teske@digia.com>
157 lines
5.5 KiB
C++
157 lines
5.5 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "classdefinition.h"
|
|
|
|
#include <QFileInfo>
|
|
|
|
namespace Qt4ProjectManager {
|
|
namespace Internal {
|
|
|
|
ClassDefinition::ClassDefinition(QWidget *parent) :
|
|
QTabWidget(parent),
|
|
m_domXmlChanged(false)
|
|
{
|
|
m_ui.setupUi(this);
|
|
m_ui.iconPathChooser->setExpectedKind(Utils::PathChooser::File);
|
|
m_ui.iconPathChooser->setPromptDialogTitle(tr("Select Icon"));
|
|
m_ui.iconPathChooser->setPromptDialogFilter(tr("Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg)"));
|
|
}
|
|
|
|
void ClassDefinition::enableButtons()
|
|
{
|
|
on_libraryRadio_toggled();
|
|
}
|
|
|
|
void ClassDefinition::on_libraryRadio_toggled()
|
|
{
|
|
const bool enLib = m_ui.libraryRadio->isChecked();
|
|
m_ui.widgetLibraryLabel->setEnabled(enLib);
|
|
m_ui.widgetLibraryEdit->setEnabled(enLib);
|
|
|
|
const bool enSrc = m_ui.skeletonCheck->isChecked();
|
|
m_ui.widgetSourceLabel->setEnabled(enSrc);
|
|
m_ui.widgetSourceEdit->setEnabled(enSrc);
|
|
m_ui.widgetBaseClassLabel->setEnabled(enSrc);
|
|
m_ui.widgetBaseClassEdit->setEnabled(enSrc);
|
|
|
|
const bool enPrj = !enLib || enSrc;
|
|
m_ui.widgetProjectLabel->setEnabled(enPrj);
|
|
m_ui.widgetProjectEdit->setEnabled(enPrj);
|
|
m_ui.widgetProjectEdit->setText(
|
|
QFileInfo(m_ui.widgetProjectEdit->text()).completeBaseName() +
|
|
(m_ui.libraryRadio->isChecked() ? QLatin1String(".pro") : QLatin1String(".pri")));
|
|
}
|
|
|
|
void ClassDefinition::on_skeletonCheck_toggled()
|
|
{
|
|
on_libraryRadio_toggled();
|
|
}
|
|
|
|
static inline QString xmlFromClassName(const QString &name)
|
|
{
|
|
QString rc = QLatin1String("<widget class=\"");
|
|
rc += name;
|
|
rc += QLatin1String("\" name=\"");
|
|
if (!name.isEmpty()) {
|
|
rc += name.left(1).toLower();
|
|
if (name.size() > 1)
|
|
rc += name.mid(1);
|
|
}
|
|
rc += QLatin1String("\">\n</widget>\n");
|
|
return rc;
|
|
}
|
|
|
|
void ClassDefinition::setClassName(const QString &name)
|
|
{
|
|
m_ui.widgetLibraryEdit->setText(name.toLower());
|
|
m_ui.widgetHeaderEdit->setText(m_fileNamingParameters.headerFileName(name));
|
|
m_ui.pluginClassEdit->setText(name + QLatin1String("Plugin"));
|
|
if (!m_domXmlChanged) {
|
|
m_ui.domXmlEdit->setText(xmlFromClassName(name));
|
|
m_domXmlChanged = false;
|
|
}
|
|
}
|
|
|
|
void ClassDefinition::on_widgetLibraryEdit_textChanged()
|
|
{
|
|
m_ui.widgetProjectEdit->setText(
|
|
m_ui.widgetLibraryEdit->text() +
|
|
(m_ui.libraryRadio->isChecked() ? QLatin1String(".pro") : QLatin1String(".pri")));
|
|
}
|
|
|
|
void ClassDefinition::on_widgetHeaderEdit_textChanged()
|
|
{
|
|
m_ui.widgetSourceEdit->setText(m_fileNamingParameters.headerToSourceFileName(m_ui.widgetHeaderEdit->text()));
|
|
}
|
|
|
|
void ClassDefinition::on_pluginClassEdit_textChanged()
|
|
{
|
|
m_ui.pluginHeaderEdit->setText(m_fileNamingParameters.headerFileName(m_ui.pluginClassEdit->text()));
|
|
}
|
|
|
|
void ClassDefinition::on_pluginHeaderEdit_textChanged()
|
|
{
|
|
m_ui.pluginSourceEdit->setText(m_fileNamingParameters.headerToSourceFileName(m_ui.pluginHeaderEdit->text()));
|
|
}
|
|
|
|
void ClassDefinition::on_domXmlEdit_textChanged()
|
|
{
|
|
m_domXmlChanged = true;
|
|
}
|
|
|
|
PluginOptions::WidgetOptions ClassDefinition::widgetOptions(const QString &className) const
|
|
{
|
|
PluginOptions::WidgetOptions wo;
|
|
wo.createSkeleton = m_ui.skeletonCheck->isChecked();
|
|
wo.sourceType =
|
|
m_ui.libraryRadio->isChecked() ?
|
|
PluginOptions::WidgetOptions::LinkLibrary :
|
|
PluginOptions::WidgetOptions::IncludeProject;
|
|
wo.widgetLibrary = m_ui.widgetLibraryEdit->text();
|
|
wo.widgetProjectFile = m_ui.widgetProjectEdit->text();
|
|
wo.widgetClassName = className;
|
|
wo.widgetHeaderFile = m_ui.widgetHeaderEdit->text();
|
|
wo.widgetSourceFile = m_ui.widgetSourceEdit->text();
|
|
wo.widgetBaseClassName = m_ui.widgetBaseClassEdit->text();
|
|
wo.pluginClassName = m_ui.pluginClassEdit->text();
|
|
wo.pluginHeaderFile = m_ui.pluginHeaderEdit->text();
|
|
wo.pluginSourceFile = m_ui.pluginSourceEdit->text();
|
|
wo.iconFile = m_ui.iconPathChooser->path();
|
|
wo.group = m_ui.groupEdit->text();
|
|
wo.toolTip = m_ui.tooltipEdit->text();
|
|
wo.whatsThis = m_ui.whatsthisEdit->toPlainText();
|
|
wo.isContainer = m_ui.containerCheck->isChecked();
|
|
wo.domXml = m_ui.domXmlEdit->toPlainText();
|
|
return wo;
|
|
}
|
|
|
|
}
|
|
}
|