2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 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 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "basetextmark.h"
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QTimer>
|
|
|
|
|
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
using namespace TextEditor::Internal;
|
|
|
|
|
|
|
|
|
|
BaseTextMark::BaseTextMark()
|
|
|
|
|
: m_markableInterface(0), m_internalMark(0), m_init(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BaseTextMark::BaseTextMark(const QString &filename, int line)
|
|
|
|
|
: m_markableInterface(0), m_internalMark(0), m_fileName(filename), m_line(line), m_init(false)
|
|
|
|
|
{
|
|
|
|
|
// Why is this?
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(init()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BaseTextMark::init()
|
|
|
|
|
{
|
|
|
|
|
m_init = true;
|
2009-01-21 15:52:34 +01:00
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
2008-12-02 12:01:29 +01:00
|
|
|
connect(em, SIGNAL(editorOpened(Core::IEditor *)), this, SLOT(editorOpened(Core::IEditor *)));
|
|
|
|
|
|
2008-12-09 11:07:24 +01:00
|
|
|
foreach (Core::IEditor *editor, em->openedEditors())
|
2008-12-02 12:01:29 +01:00
|
|
|
editorOpened(editor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BaseTextMark::editorOpened(Core::IEditor *editor)
|
|
|
|
|
{
|
2009-04-29 16:59:51 +02:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
if (m_fileName.compare(editor->file()->fileName(), Qt::CaseInsensitive))
|
|
|
|
|
return;
|
|
|
|
|
#else
|
2008-12-02 12:01:29 +01:00
|
|
|
if (editor->file()->fileName() != m_fileName)
|
|
|
|
|
return;
|
2009-04-29 16:59:51 +02:00
|
|
|
#endif
|
2008-12-02 12:01:29 +01:00
|
|
|
if (ITextEditor *textEditor = qobject_cast<ITextEditor *>(editor)) {
|
|
|
|
|
if (m_markableInterface == 0) { // We aren't added to something
|
|
|
|
|
m_markableInterface = textEditor->markableInterface();
|
|
|
|
|
m_internalMark = new InternalMark(this);
|
2010-01-11 12:47:01 +01:00
|
|
|
|
|
|
|
|
if (!m_markableInterface->addMark(m_internalMark, m_line)) {
|
|
|
|
|
delete m_internalMark;
|
|
|
|
|
m_internalMark = 0;
|
|
|
|
|
m_markableInterface = 0;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BaseTextMark::childRemovedFromEditor(InternalMark *mark)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(mark)
|
|
|
|
|
// m_internalMark was removed from the editor
|
|
|
|
|
delete m_internalMark;
|
|
|
|
|
m_markableInterface = 0;
|
|
|
|
|
m_internalMark = 0;
|
|
|
|
|
removedFromEditor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BaseTextMark::documentClosingFor(InternalMark *mark)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(mark)
|
|
|
|
|
// the document is closing
|
|
|
|
|
delete m_internalMark;
|
|
|
|
|
m_markableInterface = 0;
|
|
|
|
|
m_internalMark = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BaseTextMark::~BaseTextMark()
|
|
|
|
|
{
|
|
|
|
|
// oha we are deleted
|
|
|
|
|
if (m_markableInterface)
|
|
|
|
|
m_markableInterface->removeMark(m_internalMark);
|
|
|
|
|
delete m_internalMark;
|
|
|
|
|
m_internalMark = 0;
|
|
|
|
|
m_markableInterface = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#include <QDebug>
|
|
|
|
|
|
|
|
|
|
void BaseTextMark::updateMarker()
|
|
|
|
|
{
|
|
|
|
|
//qDebug()<<"BaseTextMark::updateMarker()"<<m_markableInterface<<m_internalMark;
|
|
|
|
|
if (m_markableInterface)
|
|
|
|
|
m_markableInterface->updateMark(m_internalMark);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BaseTextMark::moveMark(const QString & /* filename */, int /* line */)
|
|
|
|
|
{
|
2009-01-21 15:52:34 +01:00
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
2008-12-02 12:01:29 +01:00
|
|
|
if (!m_init) {
|
|
|
|
|
connect(em, SIGNAL(editorOpened(Core::IEditor *)), this, SLOT(editorOpened(Core::IEditor *)));
|
|
|
|
|
m_init = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (m_markableInterface)
|
|
|
|
|
m_markableInterface->removeMark(m_internalMark);
|
|
|
|
|
m_markableInterface = 0;
|
|
|
|
|
// This is only necessary since m_internalMark is created in ediorOpened
|
|
|
|
|
delete m_internalMark;
|
|
|
|
|
m_internalMark = 0;
|
|
|
|
|
|
2008-12-09 11:07:24 +01:00
|
|
|
foreach (Core::IEditor *editor, em->openedEditors())
|
2008-12-02 12:01:29 +01:00
|
|
|
editorOpened(editor);
|
|
|
|
|
}
|