⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tokenreplacements.h

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the qt3to4 porting application of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef TOKENREPLACEMENTS_H#define TOKENREPLACEMENTS_H#include "tokenengine.h"#include "textreplacement.h"#include <QStringList>#include <QByteArray>void addLogSourceEntry(const QString &text, const TokenEngine::TokenContainer&, const int index);void addLogWarning(const QString &text);class TokenReplacement{public:    virtual bool doReplace(const TokenEngine::TokenContainer& ,                           int /*tokenIndex*/,                           TextReplacements&){return false;};    /*        returns the replace key for this replacement. Every time a token matches the replace key,        doReplace() will be called for this TokenReplacement.    */    virtual QByteArray getReplaceKey(){return QByteArray();};    virtual ~TokenReplacement(){};};/*    A TokenReplacement that change any token*/class GenericTokenReplacement : public TokenReplacement{public:    GenericTokenReplacement(QByteArray oldToken, QByteArray newToken);    bool doReplace(const TokenEngine::TokenContainer &tokenContainer,                   int tokenIndex, TextReplacements &textReplacements);    QByteArray getReplaceKey();private:    QByteArray oldToken;    QByteArray newToken;};/*    A TokenReplacement that changes tokens that specify class names.    In some cases where the class name token is a part of a qualified name    it is not correct to rename it. ex:    QButton::toggleState    Here it is wrong to rename QButton -> Q3Button, since there is    a rule that says QButton::ToggleState -> QCheckBox::ToggleState,    but no rule for Q3Button::ToggleState.*/class ClassNameReplacement : public TokenReplacement{public:    ClassNameReplacement(QByteArray oldToken, QByteArray newToken);    bool doReplace(const TokenEngine::TokenContainer &tokenContainer,                   int tokenIndex, TextReplacements &textReplacements);    QByteArray getReplaceKey();private:    QByteArray oldToken;    QByteArray newToken;};/*   Changes scoped tokens:   AA::BB -> CC::DD   oldToken corresponds to the AA::BB part, newToken corresponds CC::DD.   Since this is a token replacement, the AA part of oldToken is typically   unknown. This means that we might change tokens named BB that does not belong   to the AA scope. Ast replacemnts will fix this.*/class ScopedTokenReplacement : public TokenReplacement{public:    ScopedTokenReplacement(const QByteArray &oldToken, const QByteArray &newToken);    bool doReplace(const TokenEngine::TokenContainer &tokenContainer,                   int tokenIndex, TextReplacements &textReplacements);    QByteArray getReplaceKey();private:    QByteArray oldName;    QByteArray oldScope;    QByteArray newName;    QByteArray newScope;    QByteArray newScopedName;    bool strictMode;};class QualifiedNameParser{public:    QualifiedNameParser(const TokenEngine::TokenContainer &tokenContainer,                        const int tokenIndex);    enum Direction { Left=-1, Right=1 };    bool isPartOfQualifiedName();    bool isValidIndex(int index);    bool isQualifier();    bool isName();    int peek(Direction direction);    int move(Direction direction);private:    int nextScopeToken(Direction direction);    int findScopeOperator(Direction direction);    const TokenEngine::TokenContainer tokenContainer;    int currentIndex;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -