Files
qt-creator/src/plugins/texteditor/codeassist/assistinterface.h

70 lines
2.2 KiB
C
Raw Normal View History

/****************************************************************************
2010-09-24 20:16:34 +02:00
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
2010-09-24 20:16:34 +02:00
**
** This file is part of Qt Creator.
2010-09-24 20:16:34 +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 The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
2010-09-24 20:16:34 +02:00
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
2010-12-17 17:14:20 +01:00
**
****************************************************************************/
2010-09-24 20:16:34 +02:00
#pragma once
#include "assistenums.h"
2010-09-24 20:16:34 +02:00
#include <texteditor/texteditor_global.h>
2010-09-24 20:16:34 +02:00
#include <QString>
#include <QVector>
QT_BEGIN_NAMESPACE
class QTextDocument;
QT_END_NAMESPACE
2010-09-24 20:16:34 +02:00
namespace TextEditor {
class TEXTEDITOR_EXPORT AssistInterface
2010-09-24 20:16:34 +02:00
{
public:
AssistInterface(QTextDocument *textDocument,
int position,
const QString &fileName,
AssistReason reason);
virtual ~AssistInterface();
virtual int position() const { return m_position; }
virtual QChar characterAt(int position) const;
virtual QString textAt(int position, int length) const;
virtual QString fileName() const { return m_fileName; }
virtual QTextDocument *textDocument() const { return m_textDocument; }
virtual void prepareForAsyncUse();
virtual void recreateTextDocument();
virtual AssistReason reason() const;
2010-09-24 20:16:34 +02:00
private:
QTextDocument *m_textDocument;
bool m_isAsync;
int m_position;
QString m_fileName;
AssistReason m_reason;
QString m_text;
QVector<int> m_userStates;
2010-09-24 20:16:34 +02:00
};
} // namespace TextEditor