2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-10-18 17:13:33 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-10-18 17:13:33 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-10-18 17:13:33 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +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
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2011-10-18 17:13:33 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01: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.
|
2011-10-18 17:13:33 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-10-18 17:13:33 +02:00
|
|
|
|
2011-07-08 09:56:02 +02:00
|
|
|
#ifndef CPPTOOLSREUSE_H
|
|
|
|
|
#define CPPTOOLSREUSE_H
|
|
|
|
|
|
|
|
|
|
#include "cpptools_global.h"
|
|
|
|
|
|
2015-01-23 13:44:50 +01:00
|
|
|
#include <texteditor/texteditor.h>
|
|
|
|
|
|
2014-06-10 16:05:14 -04:00
|
|
|
#include <cplusplus/CppDocument.h>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QChar;
|
2015-05-12 14:20:32 +02:00
|
|
|
class QFileInfo;
|
2014-06-10 16:05:14 -04:00
|
|
|
class QStringRef;
|
|
|
|
|
class QTextCursor;
|
|
|
|
|
QT_END_NAMESPACE
|
2011-07-08 09:56:02 +02:00
|
|
|
|
2011-11-14 13:14:39 +01:00
|
|
|
namespace CPlusPlus {
|
2014-06-10 16:05:14 -04:00
|
|
|
class Macro;
|
2011-11-14 13:14:39 +01:00
|
|
|
class Symbol;
|
|
|
|
|
class LookupContext;
|
2013-04-02 11:28:11 +02:00
|
|
|
} // namespace CPlusPlus
|
2011-11-14 13:14:39 +01:00
|
|
|
|
2011-07-08 09:56:02 +02:00
|
|
|
namespace CppTools {
|
|
|
|
|
|
|
|
|
|
void CPPTOOLS_EXPORT moveCursorToEndOfIdentifier(QTextCursor *tc);
|
2012-02-16 15:09:56 +01:00
|
|
|
void CPPTOOLS_EXPORT moveCursorToStartOfIdentifier(QTextCursor *tc);
|
2011-07-08 09:56:02 +02:00
|
|
|
|
2014-06-10 16:05:14 -04:00
|
|
|
bool CPPTOOLS_EXPORT isQtKeyword(const QStringRef &text);
|
2011-11-14 13:14:39 +01:00
|
|
|
|
2014-05-08 09:48:27 -04:00
|
|
|
bool CPPTOOLS_EXPORT isValidAsciiIdentifierChar(const QChar &ch);
|
|
|
|
|
bool CPPTOOLS_EXPORT isValidFirstIdentifierChar(const QChar &ch);
|
|
|
|
|
bool CPPTOOLS_EXPORT isValidIdentifierChar(const QChar &ch);
|
2011-12-21 18:24:14 +01:00
|
|
|
bool CPPTOOLS_EXPORT isValidIdentifier(const QString &s);
|
|
|
|
|
|
2015-01-23 13:44:50 +01:00
|
|
|
TextEditor::TextEditorWidget::Link CPPTOOLS_EXPORT linkToSymbol(CPlusPlus::Symbol *symbol);
|
|
|
|
|
|
2014-06-10 16:05:14 -04:00
|
|
|
QString CPPTOOLS_EXPORT identifierUnderCursor(QTextCursor *cursor);
|
|
|
|
|
|
|
|
|
|
bool CPPTOOLS_EXPORT isOwnershipRAIIType(CPlusPlus::Symbol *symbol,
|
|
|
|
|
const CPlusPlus::LookupContext &context);
|
|
|
|
|
|
|
|
|
|
const CPlusPlus::Macro CPPTOOLS_EXPORT *findCanonicalMacro(const QTextCursor &cursor,
|
|
|
|
|
CPlusPlus::Document::Ptr document);
|
2010-11-03 11:02:25 +01:00
|
|
|
|
2012-10-10 21:00:48 +02:00
|
|
|
QString CPPTOOLS_EXPORT correspondingHeaderOrSource(const QString &fileName, bool *wasHeader = 0);
|
2014-05-19 11:17:39 -04:00
|
|
|
void CPPTOOLS_EXPORT switchHeaderSource();
|
2012-10-10 21:00:48 +02:00
|
|
|
|
2015-06-02 17:25:41 +02:00
|
|
|
class CppCodeModelSettings;
|
|
|
|
|
QSharedPointer<CppCodeModelSettings> CPPTOOLS_EXPORT codeModelSettings();
|
|
|
|
|
|
2015-05-12 14:20:32 +02:00
|
|
|
int fileSizeLimit();
|
|
|
|
|
bool skipFileDueToSizeLimit(const QFileInfo &fileInfo, int limitInMB = fileSizeLimit());
|
|
|
|
|
|
2011-07-08 09:56:02 +02:00
|
|
|
} // CppTools
|
|
|
|
|
|
|
|
|
|
#endif // CPPTOOLSREUSE_H
|