forked from qt-creator/qt-creator
Change-Id: I3ebe69b2c56635d1978da994fc772536a2839304 Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
138 lines
4.4 KiB
C++
138 lines
4.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2014 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 "formwindoweditor.h"
|
|
#include "formwindowfile.h"
|
|
#include "designerconstants.h"
|
|
#include "resourcehandler.h"
|
|
#include "designerxmleditorwidget.h"
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
#include <texteditor/basetextdocument.h>
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QBuffer>
|
|
#include <QDebug>
|
|
#include <QDesignerFormWindowInterface>
|
|
#include <QFileInfo>
|
|
|
|
namespace Designer {
|
|
|
|
struct FormWindowEditorPrivate
|
|
{
|
|
Internal::DesignerXmlEditorWidget *m_widget;
|
|
};
|
|
|
|
FormWindowEditor::FormWindowEditor(Internal::DesignerXmlEditorWidget *editor)
|
|
: d(new FormWindowEditorPrivate)
|
|
{
|
|
setEditorWidget(editor);
|
|
d->m_widget = editor;
|
|
setDuplicateSupported(true);
|
|
setContext(Core::Context(Designer::Constants::K_DESIGNER_XML_EDITOR_ID,
|
|
Designer::Constants::C_DESIGNER_XML_EDITOR));
|
|
|
|
// Revert to saved/load externally modified files.
|
|
connect(d->m_widget->formWindowFile(), SIGNAL(reloadRequested(QString*,QString)),
|
|
this, SLOT(slotOpen(QString*,QString)), Qt::DirectConnection);
|
|
}
|
|
|
|
FormWindowEditor::~FormWindowEditor()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
void FormWindowEditor::slotOpen(QString *errorString, const QString &fileName)
|
|
{
|
|
open(errorString, fileName, fileName);
|
|
}
|
|
|
|
bool FormWindowEditor::open(QString *errorString, const QString &fileName, const QString &realFileName)
|
|
{
|
|
if (Designer::Constants::Internal::debug)
|
|
qDebug() << "FormWindowEditor::open" << fileName;
|
|
|
|
QDesignerFormWindowInterface *form = d->m_widget->formWindowFile()->formWindow();
|
|
QTC_ASSERT(form, return false);
|
|
|
|
if (fileName.isEmpty())
|
|
return true;
|
|
|
|
const QFileInfo fi(fileName);
|
|
const QString absfileName = fi.absoluteFilePath();
|
|
|
|
QString contents;
|
|
if (d->m_widget->formWindowFile()->read(absfileName, &contents, errorString) != Utils::TextFileFormat::ReadSuccess)
|
|
return false;
|
|
|
|
form->setFileName(absfileName);
|
|
const QByteArray contentsBA = contents.toUtf8();
|
|
QBuffer str;
|
|
str.setData(contentsBA);
|
|
str.open(QIODevice::ReadOnly);
|
|
if (!form->setContents(&str, errorString))
|
|
return false;
|
|
form->setDirty(fileName != realFileName);
|
|
d->m_widget->formWindowFile()->syncXmlFromFormWindow();
|
|
|
|
d->m_widget->formWindowFile()->setFilePath(absfileName);
|
|
d->m_widget->formWindowFile()->setShouldAutoSave(false);
|
|
|
|
if (Internal::ResourceHandler *rh = form->findChild<Designer::Internal::ResourceHandler*>())
|
|
rh->updateResources(true);
|
|
|
|
return true;
|
|
}
|
|
|
|
void FormWindowEditor::syncXmlEditor()
|
|
{
|
|
if (Designer::Constants::Internal::debug)
|
|
qDebug() << "FormWindowEditor::syncXmlEditor" << d->m_widget->formWindowFile()->filePath();
|
|
d->m_widget->formWindowFile()->syncXmlFromFormWindow();
|
|
}
|
|
|
|
QWidget *FormWindowEditor::toolBar()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
QString FormWindowEditor::contents() const
|
|
{
|
|
return d->m_widget->formWindowFile()->formWindowContents();
|
|
}
|
|
|
|
bool FormWindowEditor::isDesignModePreferred() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
} // namespace Designer
|
|
|