2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 15:08:31 +01:00
|
|
|
|
2010-03-09 10:26:20 +01:00
|
|
|
#include "formwindoweditor.h"
|
2010-03-10 10:21:52 +01:00
|
|
|
#include "formwindowfile.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "designerconstants.h"
|
2010-03-10 10:21:52 +01:00
|
|
|
#include "resourcehandler.h"
|
|
|
|
|
#include "qt_private/formwindowbase_p.h"
|
|
|
|
|
#include "designerxmleditor.h"
|
|
|
|
|
#include <widgethost.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/modemanager.h>
|
|
|
|
|
#include <coreplugin/imode.h>
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/uniqueidmanager.h>
|
|
|
|
|
#include <texteditor/basetextdocument.h>
|
|
|
|
|
#include <texteditor/plaintexteditor.h>
|
2010-03-09 10:26:20 +01:00
|
|
|
|
2009-05-13 15:10:09 +02:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtDesigner/QDesignerFormWindowInterface>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QDebug>
|
2010-03-10 10:21:52 +01:00
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
|
|
|
|
|
namespace Designer {
|
|
|
|
|
|
|
|
|
|
struct FormWindowEditorPrivate {
|
|
|
|
|
explicit FormWindowEditorPrivate(Internal::DesignerXmlEditor *editor,
|
|
|
|
|
QDesignerFormWindowInterface *form);
|
|
|
|
|
|
|
|
|
|
TextEditor::PlainTextEditorEditable m_textEditable;
|
|
|
|
|
Internal::FormWindowFile m_file;
|
|
|
|
|
QList<int> m_context;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
FormWindowEditorPrivate::FormWindowEditorPrivate(Internal::DesignerXmlEditor *editor,
|
|
|
|
|
QDesignerFormWindowInterface *form) :
|
|
|
|
|
m_textEditable(editor), m_file(form)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FormWindowEditor::FormWindowEditor(Internal::DesignerXmlEditor *editor,
|
|
|
|
|
QDesignerFormWindowInterface *form,
|
|
|
|
|
QObject *parent) :
|
|
|
|
|
Core::IEditor(parent),
|
|
|
|
|
d(new FormWindowEditorPrivate(editor, form))
|
|
|
|
|
{
|
|
|
|
|
Core::UniqueIDManager *uidm = Core::UniqueIDManager::instance();
|
|
|
|
|
d->m_context << uidm->uniqueIdentifier(QLatin1String(Designer::Constants::K_DESIGNER_XML_EDITOR_ID))
|
|
|
|
|
<< uidm->uniqueIdentifier(QLatin1String(Designer::Constants::C_DESIGNER_XML_EDITOR));
|
|
|
|
|
connect(form, SIGNAL(changed()), this, SIGNAL(changed()));
|
|
|
|
|
// Revert to saved/load externally modified files
|
|
|
|
|
connect(&(d->m_file), SIGNAL(reload(QString)), this, SLOT(slotOpen(QString)));
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-03-10 10:21:52 +01:00
|
|
|
FormWindowEditor::~FormWindowEditor()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FormWindowEditor::createNew(const QString &contents)
|
|
|
|
|
{
|
|
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "FormWindowEditor::createNew" << contents.size();
|
|
|
|
|
|
|
|
|
|
syncXmlEditor(QString());
|
|
|
|
|
|
|
|
|
|
QDesignerFormWindowInterface *form = d->m_file.formWindow();
|
|
|
|
|
QTC_ASSERT(form, return false);
|
|
|
|
|
|
|
|
|
|
if (contents.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
form->setContents(contents);
|
|
|
|
|
if (form->mainContainer() == 0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
syncXmlEditor(contents);
|
|
|
|
|
d->m_file.setFileName(QString());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-03-10 10:21:52 +01:00
|
|
|
void FormWindowEditor::slotOpen(const QString &fileName)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-03-10 10:21:52 +01:00
|
|
|
open(fileName);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-10 10:21:52 +01:00
|
|
|
bool FormWindowEditor::open(const QString &fileName)
|
2009-10-01 16:38:08 +02:00
|
|
|
{
|
2010-03-09 10:26:20 +01:00
|
|
|
if (Designer::Constants::Internal::debug)
|
2010-03-10 10:21:52 +01:00
|
|
|
qDebug() << "FormWindowEditor::open" << fileName;
|
2009-10-01 16:38:08 +02:00
|
|
|
|
2010-03-10 10:21:52 +01:00
|
|
|
QDesignerFormWindowInterface *form = d->m_file.formWindow();
|
|
|
|
|
QTC_ASSERT(form, return false);
|
|
|
|
|
|
|
|
|
|
if (fileName.isEmpty()) {
|
|
|
|
|
setDisplayName(tr("untitled"));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QFileInfo fi(fileName);
|
|
|
|
|
const QString absfileName = fi.absoluteFilePath();
|
|
|
|
|
|
|
|
|
|
QFile file(absfileName);
|
|
|
|
|
if (!file.open(QIODevice::ReadOnly|QIODevice::Text))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
form->setFileName(absfileName);
|
|
|
|
|
|
|
|
|
|
const QString contents = QString::fromUtf8(file.readAll());
|
|
|
|
|
form->setContents(contents);
|
|
|
|
|
file.close();
|
|
|
|
|
if (!form->mainContainer())
|
|
|
|
|
return false;
|
|
|
|
|
form->setDirty(false);
|
|
|
|
|
syncXmlEditor(contents);
|
|
|
|
|
|
|
|
|
|
setDisplayName(fi.fileName());
|
|
|
|
|
d->m_file.setFileName(absfileName);
|
|
|
|
|
|
|
|
|
|
if (Internal::ResourceHandler *rh = qFindChild<Designer::Internal::ResourceHandler*>(form))
|
|
|
|
|
rh->updateResources();
|
|
|
|
|
|
|
|
|
|
emit changed();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormWindowEditor::syncXmlEditor()
|
|
|
|
|
{
|
|
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "FormWindowEditor::syncXmlEditor" << d->m_file.fileName();
|
|
|
|
|
syncXmlEditor(contents());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormWindowEditor::syncXmlEditor(const QString &contents)
|
|
|
|
|
{
|
|
|
|
|
d->m_textEditable.editor()->setPlainText(contents);
|
|
|
|
|
d->m_textEditable.editor()->setReadOnly(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::IFile *FormWindowEditor::file()
|
|
|
|
|
{
|
|
|
|
|
return &d->m_file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FormWindowEditor::id() const
|
|
|
|
|
{
|
|
|
|
|
return QLatin1String(Designer::Constants::K_DESIGNER_XML_EDITOR_ID);
|
2009-10-01 16:38:08 +02:00
|
|
|
}
|
2010-03-10 10:21:52 +01:00
|
|
|
|
|
|
|
|
QString FormWindowEditor::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_textEditable.displayName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormWindowEditor::setDisplayName(const QString &title)
|
|
|
|
|
{
|
|
|
|
|
d->m_textEditable.setDisplayName(title);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FormWindowEditor::duplicateSupported() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::IEditor *FormWindowEditor::duplicate(QWidget *)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QByteArray FormWindowEditor::saveState() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_textEditable.saveState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FormWindowEditor::restoreState(const QByteArray &state)
|
|
|
|
|
{
|
|
|
|
|
return d->m_textEditable.restoreState(state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<int> FormWindowEditor::context() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *FormWindowEditor::widget()
|
|
|
|
|
{
|
|
|
|
|
return d->m_textEditable.widget();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FormWindowEditor::isTemporary() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *FormWindowEditor::toolBar()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FormWindowEditor::contents() const
|
|
|
|
|
{
|
|
|
|
|
const qdesigner_internal::FormWindowBase *fw = qobject_cast<const qdesigner_internal::FormWindowBase *>(d->m_file.formWindow());
|
|
|
|
|
QTC_ASSERT(fw, return QString());
|
|
|
|
|
return fw->fileContents(); // No warnings about spacers here
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextEditor::BaseTextDocument *FormWindowEditor::textDocument()
|
|
|
|
|
{
|
|
|
|
|
return qobject_cast<TextEditor::BaseTextDocument*>(d->m_textEditable.file());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextEditor::PlainTextEditorEditable *FormWindowEditor::textEditable()
|
|
|
|
|
{
|
|
|
|
|
return &d->m_textEditable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Designer
|
|
|
|
|
|