source: trunk/plugins/LocalFilesEditor/codemirror/lib/overlay.js @ 10307

Last change on this file since 10307 was 10307, checked in by patdenice, 13 years ago

feature:2262
Replace editarea by Codemirror:
http://codemirror.net

File size: 1.8 KB
Line 
1// Utility function that allows modes to be combined. The mode given
2// as the base argument takes care of most of the normal mode
3// functionality, but a second (typically simple) mode is used, which
4// can override the style of text. Both modes get to parse all of the
5// text, but when both assign a non-null style to a piece of code, the
6// overlay wins, unless the combine argument was true, in which case
7// the styles are combined.
8
9CodeMirror.overlayParser = function(base, overlay, combine) {
10  return {
11    startState: function() {
12      return {
13        base: CodeMirror.startState(base),
14        overlay: CodeMirror.startState(overlay),
15        basePos: 0, baseCur: null,
16        overlayPos: 0, overlayCur: null
17      };
18    },
19    copyState: function(state) {
20      return {
21        base: CodeMirror.copyState(base, state.base),
22        overlay: CodeMirror.copyState(overlay, state.overlay),
23        basePos: state.basePos, baseCur: null,
24        overlayPos: state.overlayPos, overlayCur: null
25      };
26    },
27
28    token: function(stream, state) {
29      if (stream.start == state.basePos) {
30        state.baseCur = base.token(stream, state.base);
31        state.basePos = stream.pos;
32      }
33      if (stream.start == state.overlayPos) {
34        stream.pos = stream.start;
35        state.overlayCur = overlay.token(stream, state.overlay);
36        state.overlayPos = stream.pos;
37      }
38      stream.pos = Math.min(state.basePos, state.overlayPos);
39      if (stream.eol()) state.basePos = state.overlayPos = 0;
40
41      if (state.overlayCur == null) return state.baseCur;
42      if (state.baseCur != null && combine) return state.baseCur + " " + state.overlayCur;
43      else return state.overlayCur;
44    },
45   
46    indent: function(state, textAfter) {
47      return base.indent(state.base, textAfter);
48    },
49    electricChars: base.electricChars
50  };
51};
Note: See TracBrowser for help on using the repository browser.