Source Code (Use browser search to find items of interest.)
Class Index
kdelibs'KWAction (./kdelibs/kwrite/kwrite_doc.h:287)
class KWAction {
public:
enum Action {replace, wordWrap, wordUnWrap, newLine, delLine,
insLine, killLine};//, doubleLine, removeLine};
KWAction(Action, KWCursor &cursor, int len = 0,
const QString &text = QString::null);
Action action;
KWCursor cursor;
int len;
QString text;
KWAction *next;
};
kdelibs'KWAction::KWAction() (./kdelibs/kwrite/kwrite_doc.cpp:340)
KWAction::KWAction(Action a, KWCursor &cursor, int len, const QString &text)
: action(a), cursor(cursor), len(len), text(text) {
}