2010-06-14 14:52:43 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-06-14 14:52:43 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-06-14 14:52:43 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2010-06-14 14:52:43 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2010-06-14 14:52:43 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef REFACTORINGCHANGES_H
|
|
|
|
|
#define REFACTORINGCHANGES_H
|
|
|
|
|
|
|
|
|
|
#include <utils/changeset.h>
|
|
|
|
|
#include <texteditor/texteditor_global.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QList>
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
2011-01-20 14:03:07 +01:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QTextDocument)
|
2010-06-14 14:52:43 +02:00
|
|
|
|
2011-01-20 14:03:07 +01:00
|
|
|
namespace TextEditor {
|
2011-02-21 16:02:26 +01:00
|
|
|
class BaseTextEditorWidget;
|
2010-08-12 11:34:48 +02:00
|
|
|
class RefactoringChanges;
|
|
|
|
|
|
|
|
|
|
class TEXTEDITOR_EXPORT RefactoringFile
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
typedef Utils::ChangeSet::Range Range;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RefactoringFile();
|
2011-08-10 09:50:04 +02:00
|
|
|
// takes ownership of document
|
|
|
|
|
RefactoringFile(QTextDocument *document, const QString &fileName = QString());
|
|
|
|
|
RefactoringFile(BaseTextEditorWidget *editor);
|
2010-08-12 11:34:48 +02:00
|
|
|
RefactoringFile(const RefactoringFile &other);
|
2010-08-13 11:48:29 +02:00
|
|
|
virtual ~RefactoringFile();
|
2010-08-12 11:34:48 +02:00
|
|
|
|
|
|
|
|
bool isValid() const;
|
|
|
|
|
|
|
|
|
|
const QTextDocument *document() const;
|
|
|
|
|
const QTextCursor cursor() const;
|
2010-08-12 14:18:36 +02:00
|
|
|
QString fileName() const;
|
2010-08-12 11:34:48 +02:00
|
|
|
|
|
|
|
|
// converts 1-based line and column into 0-based offset
|
|
|
|
|
int position(unsigned line, unsigned column) const;
|
|
|
|
|
|
|
|
|
|
QChar charAt(int pos) const;
|
2010-08-13 11:48:29 +02:00
|
|
|
QString textOf(int start, int end) const;
|
|
|
|
|
QString textOf(const Range &range) const;
|
2010-08-12 11:34:48 +02:00
|
|
|
|
|
|
|
|
bool change(const Utils::ChangeSet &changeSet, bool openEditor = true);
|
|
|
|
|
bool indent(const Range &range, bool openEditor = true);
|
|
|
|
|
|
2010-08-13 11:48:29 +02:00
|
|
|
protected:
|
2010-08-12 11:34:48 +02:00
|
|
|
// not assignable
|
2010-08-12 13:46:18 +02:00
|
|
|
//const RefactoringFile &operator=(const RefactoringFile &other);
|
2010-08-12 11:34:48 +02:00
|
|
|
|
2011-08-10 09:50:04 +02:00
|
|
|
RefactoringFile(const QString &fileName, RefactoringChanges *refactoringChanges);
|
2010-08-12 11:34:48 +02:00
|
|
|
QTextDocument *mutableDocument() const;
|
|
|
|
|
|
2010-08-13 11:48:29 +02:00
|
|
|
protected:
|
2010-08-12 11:34:48 +02:00
|
|
|
QString m_fileName;
|
|
|
|
|
RefactoringChanges *m_refactoringChanges;
|
|
|
|
|
mutable QTextDocument *m_document;
|
2011-02-21 16:02:26 +01:00
|
|
|
BaseTextEditorWidget *m_editor;
|
2010-08-12 13:46:18 +02:00
|
|
|
Utils::ChangeSet m_changes;
|
|
|
|
|
QList<Range> m_indentRanges;
|
|
|
|
|
bool m_openEditor;
|
2011-08-10 09:50:04 +02:00
|
|
|
|
|
|
|
|
friend class RefactoringChanges; // access to constructor
|
2010-08-12 11:34:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*!
|
2010-07-28 17:33:21 +02:00
|
|
|
This class batches changes to multiple file, which are applied as a single big
|
|
|
|
|
change.
|
|
|
|
|
*/
|
2010-06-14 14:52:43 +02:00
|
|
|
class TEXTEDITOR_EXPORT RefactoringChanges
|
|
|
|
|
{
|
|
|
|
|
public:
|
2010-06-22 10:14:06 +02:00
|
|
|
typedef Utils::ChangeSet::Range Range;
|
2010-06-14 14:52:43 +02:00
|
|
|
|
|
|
|
|
public:
|
2010-07-08 16:40:46 +02:00
|
|
|
RefactoringChanges();
|
2010-06-14 14:52:43 +02:00
|
|
|
virtual ~RefactoringChanges();
|
|
|
|
|
|
2010-08-12 11:34:48 +02:00
|
|
|
bool createFile(const QString &fileName, const QString &contents, bool reindent = true, bool openEditor = true);
|
|
|
|
|
bool removeFile(const QString &fileName);
|
2010-06-14 14:52:43 +02:00
|
|
|
|
2010-08-12 11:34:48 +02:00
|
|
|
RefactoringFile file(const QString &fileName);
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
BaseTextEditorWidget *openEditor(const QString &fileName, int pos = -1);
|
2010-06-14 14:52:43 +02:00
|
|
|
|
2010-09-23 18:22:07 +02:00
|
|
|
/*!
|
|
|
|
|
\param fileName the file to activate the editor for
|
|
|
|
|
\param line the line to put the cursor on (1-based)
|
|
|
|
|
\param column the column to put the cursor on (1-based)
|
2010-07-29 14:59:38 +02:00
|
|
|
*/
|
2010-09-23 18:22:07 +02:00
|
|
|
void activateEditor(const QString &fileName, int line, int column);
|
2010-08-12 11:34:48 +02:00
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
static BaseTextEditorWidget *editorForFile(const QString &fileName,
|
2010-08-12 11:34:48 +02:00
|
|
|
bool openIfClosed = false);
|
|
|
|
|
|
2011-08-17 12:21:04 +02:00
|
|
|
private:
|
2010-08-12 11:34:48 +02:00
|
|
|
static QList<QTextCursor> rangesToSelections(QTextDocument *document, const QList<Range> &ranges);
|
2011-02-01 14:13:54 +01:00
|
|
|
virtual void indentSelection(const QTextCursor &selection,
|
|
|
|
|
const QString &fileName,
|
2011-02-21 16:02:26 +01:00
|
|
|
const BaseTextEditorWidget *textEditor) const = 0;
|
2010-08-12 13:46:18 +02:00
|
|
|
virtual void fileChanged(const QString &fileName) = 0;
|
2010-08-12 11:34:48 +02:00
|
|
|
|
|
|
|
|
friend class RefactoringFile;
|
2010-09-23 18:22:07 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QString m_fileToOpen;
|
|
|
|
|
int m_lineToOpen;
|
|
|
|
|
int m_columnToOpen;
|
2010-06-14 14:52:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace TextEditor
|
|
|
|
|
|
|
|
|
|
#endif // REFACTORINGCHANGES_H
|