Source Code (Use browser search to find items of interest.)

Class Index

kdevelop'HlItem (./kdevelop/kdevelop/kwrite/highlight.h:39)

class HlItem {
  public:
    HlItem(int attribute, int context);
    virtual bool startEnable(QChar) {return true;}
    virtual bool endEnable(QChar) {return true;}
    virtual const QChar *checkHgl(const QChar *) = 0;
    int attr;
    int ctx;
};


kdevelop'HlItem::HlItem() (./kdevelop/kdevelop/kwrite/highlight.cpp:187)

HlItem::HlItem(int attribute, int context)
  : attr(attribute), ctx(context) {
}