2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 15:08:31 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "formeditorplugin.h"
|
|
|
|
|
#include "formeditorfactory.h"
|
|
|
|
|
#include "formeditorw.h"
|
2014-10-10 10:21:56 +02:00
|
|
|
#include "formtemplatewizardpage.h"
|
2014-09-03 12:38:51 +02:00
|
|
|
#include "formwindoweditor.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#ifdef CPP_ENABLED
|
2013-08-29 16:36:42 +02:00
|
|
|
# include "cpp/formclasswizard.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif
|
|
|
|
|
|
2010-12-02 18:28:16 +01:00
|
|
|
#include "settingspage.h"
|
2011-01-10 16:29:06 +01:00
|
|
|
#include "qtdesignerformclasscodegenerator.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-03-06 17:50:28 +01:00
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2014-03-06 17:50:28 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <coreplugin/idocument.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
2011-10-19 13:05:53 +02:00
|
|
|
#include <coreplugin/designmode.h>
|
2014-03-06 17:50:28 +01:00
|
|
|
#include <cpptools/cpptoolsconstants.h>
|
2014-10-10 10:21:56 +02:00
|
|
|
#include <projectexplorer/jsonwizard/jsonwizardfactory.h>
|
2015-02-04 09:32:46 +01:00
|
|
|
#include <utils/mimetypes/mimedatabase.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
|
|
|
|
|
#include <QAction>
|
2017-04-24 17:01:10 +02:00
|
|
|
#include <QCoreApplication>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
2015-02-04 09:32:46 +01:00
|
|
|
#include <QFileInfo>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QLibraryInfo>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <QMenu>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QTranslator>
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-08-30 16:38:57 +02:00
|
|
|
using namespace Core;
|
2008-12-02 12:01:29 +01:00
|
|
|
using namespace Designer::Constants;
|
|
|
|
|
|
2018-02-09 15:55:14 +01:00
|
|
|
namespace Designer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class FormEditorPluginPrivate
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2018-02-09 15:55:14 +01:00
|
|
|
public:
|
|
|
|
|
QAction actionSwitchSource{FormEditorPlugin::tr("Switch Source/Form"), nullptr};
|
|
|
|
|
|
|
|
|
|
FormEditorFactory formEditorFactory;
|
|
|
|
|
SettingsPageProvider settingsPageProvider;
|
|
|
|
|
QtDesignerFormClassCodeGenerator formClassCodeGenerator;
|
|
|
|
|
};
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
FormEditorPlugin::~FormEditorPlugin()
|
|
|
|
|
{
|
|
|
|
|
FormEditorW::deleteInstance();
|
2018-02-09 15:55:14 +01:00
|
|
|
delete d;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-20 11:52:04 +01:00
|
|
|
bool FormEditorPlugin::initialize(const QStringList &arguments, QString *error)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(arguments)
|
2009-01-20 11:52:04 +01:00
|
|
|
|
2018-02-09 15:55:14 +01:00
|
|
|
d = new FormEditorPluginPrivate;
|
|
|
|
|
|
2015-05-22 17:16:36 +02:00
|
|
|
#ifdef CPP_ENABLED
|
|
|
|
|
IWizardFactory::registerFactoryCreator(
|
2017-09-07 17:05:47 +02:00
|
|
|
[]() -> QList<IWizardFactory *> {
|
2015-05-22 17:16:36 +02:00
|
|
|
IWizardFactory *wizard = new FormClassWizard;
|
2017-10-16 20:47:05 +02:00
|
|
|
wizard->setCategory(Core::Constants::WIZARD_CATEGORY_QT);
|
2015-05-22 17:16:36 +02:00
|
|
|
wizard->setDisplayCategory(QCoreApplication::translate("Core", Core::Constants::WIZARD_TR_CATEGORY_QT));
|
|
|
|
|
wizard->setDisplayName(tr("Qt Designer Form Class"));
|
2017-07-21 16:44:38 +02:00
|
|
|
wizard->setIconText("ui/h");
|
2015-05-22 17:16:36 +02:00
|
|
|
wizard->setId("C.FormClass");
|
|
|
|
|
wizard->setDescription(tr("Creates a Qt Designer form along with a matching class (C++ header and source file) "
|
|
|
|
|
"for implementation purposes. You can add the form and class to an existing Qt Widget Project."));
|
|
|
|
|
|
|
|
|
|
return QList<IWizardFactory *>() << wizard;
|
|
|
|
|
});
|
|
|
|
|
#endif
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-10-10 10:21:56 +02:00
|
|
|
ProjectExplorer::JsonWizardFactory::registerPageFactory(new Internal::FormPageFactory);
|
2018-02-09 15:55:14 +01:00
|
|
|
|
2010-01-06 11:10:14 +01:00
|
|
|
// Ensure that loading designer translations is done before FormEditorW is instantiated
|
2013-08-30 16:38:57 +02:00
|
|
|
const QString locale = ICore::userInterfaceLanguage();
|
2010-01-06 11:10:14 +01:00
|
|
|
if (!locale.isEmpty()) {
|
|
|
|
|
QTranslator *qtr = new QTranslator(this);
|
2017-10-16 20:47:05 +02:00
|
|
|
const QString &creatorTrPath = ICore::resourcePath() + "/translations";
|
2010-01-06 11:10:14 +01:00
|
|
|
const QString &qtTrPath = QLibraryInfo::location(QLibraryInfo::TranslationsPath);
|
2017-10-16 20:47:05 +02:00
|
|
|
const QString &trFile = "designer_" + locale;
|
2010-01-06 11:10:14 +01:00
|
|
|
if (qtr->load(trFile, qtTrPath) || qtr->load(trFile, creatorTrPath))
|
2017-04-24 17:01:10 +02:00
|
|
|
QCoreApplication::installTranslator(qtr);
|
2010-01-06 11:10:14 +01:00
|
|
|
}
|
2009-01-20 11:52:04 +01:00
|
|
|
error->clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormEditorPlugin::extensionsInitialized()
|
|
|
|
|
{
|
2018-01-23 09:09:46 +01:00
|
|
|
DesignMode::setDesignModeIsRequired();
|
2010-02-26 11:08:17 +01:00
|
|
|
// 4) test and make sure everything works (undo, saving, editors, opening/closing multiple files, dirtiness etc)
|
2014-03-06 17:50:28 +01:00
|
|
|
|
|
|
|
|
ActionContainer *mtools = ActionManager::actionContainer(Core::Constants::M_TOOLS);
|
|
|
|
|
ActionContainer *mformtools = ActionManager::createMenu(M_FORMEDITOR);
|
|
|
|
|
mformtools->menu()->setTitle(tr("For&m Editor"));
|
|
|
|
|
mtools->addMenu(mformtools);
|
|
|
|
|
|
2018-02-09 15:55:14 +01:00
|
|
|
connect(&d->actionSwitchSource, &QAction::triggered, this, &FormEditorPlugin::switchSourceForm);
|
2015-02-03 23:55:24 +02:00
|
|
|
Context context(C_FORMEDITOR, Core::Constants::C_EDITORMANAGER);
|
2018-02-09 15:55:14 +01:00
|
|
|
Command *cmd = ActionManager::registerAction(&d->actionSwitchSource,
|
2014-03-06 17:50:28 +01:00
|
|
|
"FormEditor.FormSwitchSource", context);
|
|
|
|
|
cmd->setDefaultKeySequence(tr("Shift+F4"));
|
|
|
|
|
mformtools->addAction(cmd, Core::Constants::G_DEFAULT_THREE);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////
|
|
|
|
|
//
|
2013-10-07 13:34:40 +02:00
|
|
|
// PRIVATE functions
|
2008-12-02 12:01:29 +01:00
|
|
|
//
|
|
|
|
|
////////////////////////////////////////////////////
|
|
|
|
|
|
2014-03-06 17:50:28 +01:00
|
|
|
// Find out current existing editor file
|
|
|
|
|
static QString currentFile()
|
|
|
|
|
{
|
|
|
|
|
if (const IDocument *document = EditorManager::currentDocument()) {
|
2014-12-21 21:54:30 +02:00
|
|
|
const QString fileName = document->filePath().toString();
|
2014-03-06 17:50:28 +01:00
|
|
|
if (!fileName.isEmpty() && QFileInfo(fileName).isFile())
|
|
|
|
|
return fileName;
|
|
|
|
|
}
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Switch between form ('ui') and source file ('cpp'):
|
|
|
|
|
// Find corresponding 'other' file, simply assuming it is in the same directory.
|
|
|
|
|
static QString otherFile()
|
|
|
|
|
{
|
|
|
|
|
// Determine mime type of current file.
|
|
|
|
|
const QString current = currentFile();
|
|
|
|
|
if (current.isEmpty())
|
|
|
|
|
return QString();
|
2017-03-02 12:07:11 +01:00
|
|
|
const Utils::MimeType currentMimeType = Utils::mimeTypeForFile(current);
|
2014-03-06 17:50:28 +01:00
|
|
|
// Determine potential suffixes of candidate files
|
|
|
|
|
// 'ui' -> 'cpp', 'cpp/h' -> 'ui'.
|
|
|
|
|
QStringList candidateSuffixes;
|
2017-10-16 20:47:05 +02:00
|
|
|
if (currentMimeType.matchesName(FORM_MIMETYPE)) {
|
2017-03-02 12:07:11 +01:00
|
|
|
candidateSuffixes += Utils::mimeTypeForName(CppTools::Constants::CPP_SOURCE_MIMETYPE).suffixes();
|
2017-10-16 20:47:05 +02:00
|
|
|
} else if (currentMimeType.matchesName(CppTools::Constants::CPP_SOURCE_MIMETYPE)
|
|
|
|
|
|| currentMimeType.matchesName(CppTools::Constants::CPP_HEADER_MIMETYPE)) {
|
2017-03-02 12:07:11 +01:00
|
|
|
candidateSuffixes += Utils::mimeTypeForName(FORM_MIMETYPE).suffixes();
|
2014-03-06 17:50:28 +01:00
|
|
|
} else {
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
// Try to find existing file with desired suffix
|
|
|
|
|
const QFileInfo currentFI(current);
|
2017-10-16 20:47:05 +02:00
|
|
|
const QString currentBaseName = currentFI.path() + '/' + currentFI.baseName() + '.';
|
2018-04-08 23:40:00 +03:00
|
|
|
for (const QString &candidateSuffix : qAsConst(candidateSuffixes)) {
|
2014-03-06 17:50:28 +01:00
|
|
|
const QFileInfo fi(currentBaseName + candidateSuffix);
|
|
|
|
|
if (fi.isFile())
|
|
|
|
|
return fi.absoluteFilePath();
|
|
|
|
|
}
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormEditorPlugin::switchSourceForm()
|
|
|
|
|
{
|
|
|
|
|
const QString fileToOpen = otherFile();
|
|
|
|
|
if (!fileToOpen.isEmpty())
|
2015-02-03 23:55:24 +02:00
|
|
|
EditorManager::openEditor(fileToOpen);
|
2014-03-06 17:50:28 +01:00
|
|
|
}
|
2018-02-09 15:55:14 +01:00
|
|
|
|
|
|
|
|
} // Internal
|
|
|
|
|
} // Designer
|