Source Code (Use browser search to find items of interest.)
Class Index
kdevelop'HlLatexParam (./kdevelop/kdevelop/kwrite/highlight.h:284)
class HlLatexParam : public HlItem {
public:
HlLatexParam(int attribute, int context);
virtual const QChar *checkHgl(const QChar *);
virtual bool endEnable(QChar c) {return !isInWord(c);}
};
//--------
//Item Style: color, selected color, bold italic
kdevelop'HlLatexParam::HlLatexParam() (./kdevelop/kdevelop/kwrite/highlight.cpp:846)
HlLatexParam::HlLatexParam(int attribute, int context)
: HlItem(attribute, context) {
}
kdevelop'HlLatexParam::checkHgl() (./kdevelop/kdevelop/kwrite/highlight.cpp:850)
const QChar *HlLatexParam::checkHgl(const QChar *s) {
if (*s == '#') {
s++;
while (*s >= '0' && *s <= '9') {
s++;
}
return s;
}
return 0L;
}
//--------
kdevelop'HlLatexParam::endEnable() (./kdevelop/kdevelop/kwrite/highlight.h:288)
virtual bool endEnable(QChar c) {return !isInWord(c);}
};
//--------
//Item Style: color, selected color, bold italic