~ubuntu-branches/ubuntu/saucy/konsole/saucy-proposed

« back to all changes in this revision

Viewing changes to src/Vt102Emulation.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-11-19 16:01:56 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20121119160156-7ohwzglkgwe61gsf
Tags: 4:4.9.80-0ubuntu1
* New upstream beta release
* Remove ControlDragSettings.diff now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#define MODE_Mouse1002       (MODES_SCREEN+5)   // Use cell motion mouse tracking
42
42
#define MODE_Mouse1003       (MODES_SCREEN+6)   // Use all motion mouse tracking
43
43
#define MODE_Mouse1005       (MODES_SCREEN+7)   // Xterm-style extended coordinates
44
 
#define MODE_Mouse1015       (MODES_SCREEN+8)   // Urxvt-style extended coordinates
45
 
#define MODE_Ansi            (MODES_SCREEN+9)   // Use US Ascii for character sets G0-G3 (DECANM)
46
 
#define MODE_132Columns      (MODES_SCREEN+10)  // 80 <-> 132 column mode switch (DECCOLM)
47
 
#define MODE_Allow132Columns (MODES_SCREEN+11)  // Allow DECCOLM mode
48
 
#define MODE_total           (MODES_SCREEN+12)
 
44
#define MODE_Mouse1006       (MODES_SCREEN+8)   // 2nd Xterm-style extended coordinates
 
45
#define MODE_Mouse1015       (MODES_SCREEN+9)   // Urxvt-style extended coordinates
 
46
#define MODE_Ansi            (MODES_SCREEN+10)   // Use US Ascii for character sets G0-G3 (DECANM)
 
47
#define MODE_132Columns      (MODES_SCREEN+11)  // 80 <-> 132 column mode switch (DECCOLM)
 
48
#define MODE_Allow132Columns (MODES_SCREEN+12)  // Allow DECCOLM mode
 
49
#define MODE_total           (MODES_SCREEN+13)
49
50
 
50
51
namespace Konsole
51
52
{
127
128
    void resetModes();
128
129
 
129
130
    void resetTokenizer();
130
 
#define MAX_TOKEN_LENGTH 80
 
131
#define MAX_TOKEN_LENGTH 256 // Max length of tokens (e.g. window title)
131
132
    void addToCurrentToken(int cc);
132
133
    int tokenBuffer[MAX_TOKEN_LENGTH]; //FIXME: overflow?
133
134
    int tokenBufferPos;