2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
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
|
|
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
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"
|
|
|
|
|
#include "formwizard.h"
|
|
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/mimedatabase.h>
|
|
|
|
|
#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>
|
2010-03-10 12:49:30 +01:00
|
|
|
|
2014-07-18 15:47:20 +02:00
|
|
|
#include <QApplication>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QLibraryInfo>
|
|
|
|
|
#include <QTranslator>
|
|
|
|
|
#include <QtPlugin>
|
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::Internal;
|
|
|
|
|
using namespace Designer::Constants;
|
|
|
|
|
|
2009-07-01 16:27:40 +02:00
|
|
|
FormEditorPlugin::FormEditorPlugin()
|
2014-03-06 17:50:28 +01:00
|
|
|
: m_actionSwitchSource(new QAction(tr("Switch Source/Form"), this))
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FormEditorPlugin::~FormEditorPlugin()
|
|
|
|
|
{
|
|
|
|
|
FormEditorW::deleteInstance();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// INHERITED FROM ExtensionSystem::Plugin
|
|
|
|
|
//
|
|
|
|
|
////////////////////////////////////////////////////
|
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
|
|
|
|
2013-08-30 16:38:57 +02:00
|
|
|
if (!MimeDatabase::addMimeTypes(QLatin1String(":/formeditor/Designer.mimetypes.xml"), error))
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
|
2009-07-01 16:27:40 +02:00
|
|
|
initializeTemplates();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-07-01 16:27:40 +02:00
|
|
|
addAutoReleasedObject(new FormEditorFactory);
|
2010-12-02 18:28:16 +01:00
|
|
|
addAutoReleasedObject(new SettingsPageProvider);
|
2011-01-10 16:29:06 +01:00
|
|
|
addAutoReleasedObject(new QtDesignerFormClassCodeGenerator);
|
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);
|
|
|
|
|
const QString &creatorTrPath =
|
2013-08-30 16:38:57 +02:00
|
|
|
ICore::resourcePath() + QLatin1String("/translations");
|
2010-01-06 11:10:14 +01:00
|
|
|
const QString &qtTrPath = QLibraryInfo::location(QLibraryInfo::TranslationsPath);
|
|
|
|
|
const QString &trFile = QLatin1String("designer_") + locale;
|
|
|
|
|
if (qtr->load(trFile, qtTrPath) || qtr->load(trFile, creatorTrPath))
|
|
|
|
|
qApp->installTranslator(qtr);
|
|
|
|
|
}
|
2009-01-20 11:52:04 +01:00
|
|
|
error->clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormEditorPlugin::extensionsInitialized()
|
|
|
|
|
{
|
2013-08-30 16:38:57 +02:00
|
|
|
DesignMode::instance()->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);
|
|
|
|
|
|
|
|
|
|
connect(m_actionSwitchSource, SIGNAL(triggered()), this, SLOT(switchSourceForm()));
|
|
|
|
|
Core::Context context(Designer::Constants::C_FORMEDITOR, Core::Constants::C_EDITORMANAGER);
|
|
|
|
|
Core::Command *cmd = Core::ActionManager::registerAction(m_actionSwitchSource,
|
|
|
|
|
"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
|
|
|
//
|
|
|
|
|
////////////////////////////////////////////////////
|
|
|
|
|
|
2009-07-01 16:27:40 +02:00
|
|
|
void FormEditorPlugin::initializeTemplates()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-05-02 17:38:42 +02:00
|
|
|
IWizardFactory *wizard = new FormWizard;
|
|
|
|
|
wizard->setWizardKind(IWizardFactory::FileWizard);
|
2013-09-20 15:12:44 +02:00
|
|
|
wizard->setCategory(QLatin1String(Core::Constants::WIZARD_CATEGORY_QT));
|
|
|
|
|
wizard->setDisplayCategory(QCoreApplication::translate("Core", Core::Constants::WIZARD_TR_CATEGORY_QT));
|
|
|
|
|
wizard->setDisplayName(tr("Qt Designer Form"));
|
|
|
|
|
wizard->setId(QLatin1String("D.Form"));
|
|
|
|
|
wizard->setDescription(tr("Creates a Qt Designer form that you can add to a Qt Widget Project. "
|
2010-06-04 12:43:10 +02:00
|
|
|
"This is useful if you already have an existing class for the UI business logic."));
|
2013-09-20 15:12:44 +02:00
|
|
|
addAutoReleasedObject(wizard);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#ifdef CPP_ENABLED
|
2013-09-20 15:12:44 +02:00
|
|
|
wizard = new FormClassWizard;
|
2014-05-02 17:38:42 +02:00
|
|
|
wizard->setWizardKind(IWizardFactory::ClassWizard);
|
2013-09-20 15:12:44 +02:00
|
|
|
wizard->setCategory(QLatin1String(Core::Constants::WIZARD_CATEGORY_QT));
|
|
|
|
|
wizard->setDisplayCategory(QCoreApplication::translate("Core", Core::Constants::WIZARD_TR_CATEGORY_QT));
|
|
|
|
|
wizard->setDisplayName(tr("Qt Designer Form Class"));
|
|
|
|
|
wizard->setId(QLatin1String("C.FormClass"));
|
|
|
|
|
wizard->setDescription(tr("Creates a Qt Designer form along with a matching class (C++ header and source file) "
|
2011-02-03 15:53:47 +01:00
|
|
|
"for implementation purposes. You can add the form and class to an existing Qt Widget Project."));
|
2013-09-20 15:12:44 +02:00
|
|
|
addAutoReleasedObject(wizard);
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-06 17:50:28 +01:00
|
|
|
// Find out current existing editor file
|
|
|
|
|
static QString currentFile()
|
|
|
|
|
{
|
|
|
|
|
if (const IDocument *document = EditorManager::currentDocument()) {
|
|
|
|
|
const QString fileName = document->filePath();
|
|
|
|
|
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();
|
|
|
|
|
const MimeType currentMimeType = MimeDatabase::findByFile(current);
|
|
|
|
|
if (!currentMimeType)
|
|
|
|
|
return QString();
|
|
|
|
|
// Determine potential suffixes of candidate files
|
|
|
|
|
// 'ui' -> 'cpp', 'cpp/h' -> 'ui'.
|
|
|
|
|
QStringList candidateSuffixes;
|
|
|
|
|
if (currentMimeType.type() == QLatin1String(FORM_MIMETYPE)) {
|
|
|
|
|
candidateSuffixes += MimeDatabase::findByType(QLatin1String(CppTools::Constants::CPP_SOURCE_MIMETYPE)).suffixes();
|
|
|
|
|
} else if (currentMimeType.type() == QLatin1String(CppTools::Constants::CPP_SOURCE_MIMETYPE)
|
|
|
|
|
|| currentMimeType.type() == QLatin1String(CppTools::Constants::CPP_HEADER_MIMETYPE)) {
|
|
|
|
|
candidateSuffixes += MimeDatabase::findByType(QLatin1String(FORM_MIMETYPE)).suffixes();
|
|
|
|
|
} else {
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
// Try to find existing file with desired suffix
|
|
|
|
|
const QFileInfo currentFI(current);
|
|
|
|
|
const QString currentBaseName = currentFI.path() + QLatin1Char('/')
|
|
|
|
|
+ currentFI.baseName() + QLatin1Char('.');
|
|
|
|
|
foreach (const QString &candidateSuffix, candidateSuffixes) {
|
|
|
|
|
const QFileInfo fi(currentBaseName + candidateSuffix);
|
|
|
|
|
if (fi.isFile())
|
|
|
|
|
return fi.absoluteFilePath();
|
|
|
|
|
}
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormEditorPlugin::switchSourceForm()
|
|
|
|
|
{
|
|
|
|
|
const QString fileToOpen = otherFile();
|
|
|
|
|
if (!fileToOpen.isEmpty())
|
|
|
|
|
Core::EditorManager::openEditor(fileToOpen);
|
|
|
|
|
}
|