latextokens.h (texstudio-3.1.0) | : | latextokens.h (texstudio-3.1.1) | ||
---|---|---|---|---|
skipping to change at line 82 | skipping to change at line 82 | |||
enum CommentType { | enum CommentType { | |||
unknownComment = 0, todoComment, magicComment | unknownComment = 0, todoComment, magicComment | |||
}; | }; | |||
static QString tokenTypeName(TokenType t); | static QString tokenTypeName(TokenType t); | |||
TokenType type; | TokenType type; | |||
/// subtype is used to determine the type of argument | /// subtype is used to determine the type of argument | |||
TokenType subtype; | TokenType subtype; | |||
bool ignoreSpelling; | ||||
int argLevel; ///< number of argument (>0) or option (<0, =-numberOfOptio n) | int argLevel; ///< number of argument (>0) or option (<0, =-numberOfOptio n) | |||
static const QHash<TokenType, int> leftDelimWidth; ///< width of the lef t delimiter in the token (if applicable) | static const QHash<TokenType, int> leftDelimWidth; ///< width of the lef t delimiter in the token (if applicable) | |||
static const QHash<TokenType, int> rightDelimWidth; ///< width of the ri ght delimiter in the token (if applicable) | static const QHash<TokenType, int> rightDelimWidth; ///< width of the ri ght delimiter in the token (if applicable) | |||
static QSet<TokenType> tkArg(); | static QSet<TokenType> tkArg(); | |||
static QSet<TokenType> tkOption(); | static QSet<TokenType> tkOption(); | |||
static QSet<TokenType> tkBraces(); | static QSet<TokenType> tkBraces(); | |||
static QSet<TokenType> tkOpen(); | static QSet<TokenType> tkOpen(); | |||
static QSet<TokenType> tkClose(); | static QSet<TokenType> tkClose(); | |||
static QSet<TokenType> tkCommalist(); | static QSet<TokenType> tkCommalist(); | |||
static QSet<TokenType> tkSingleArg(); | static QSet<TokenType> tkSingleArg(); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added |