[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.326 and 1.327

version 1.326, 2012/04/01 13:18:38 version 1.327, 2012/04/01 21:45:48
Line 1102 
Line 1102 
 };  };
   
 /*  /*
  * xterm mouse mode is fairly silly. Buttons are in the bottom two   * Mouse input. xterm mouse mode is fairly silly. Buttons are in the bottom two
  * bits: 0 button 1; 1 button 2; 2 button 3; 3 buttons released.   * bits: 0 = button 1; 1 = button 2; 2 = button 3; 3 = buttons released. Bits
  *   * 3, 4 and 5 are for keys. Bit 6 is set for dragging and 7 for mouse buttons 4
  * Bit 3 is shift; bit 4 is meta; bit 5 control.   * and 5.
  *  
  * Bit 6 is added for mouse buttons 4 and 5.  
  */   */
 /* Mouse input. */  
 struct mouse_event {  struct mouse_event {
         u_int   b;          u_int   b;
 #define MOUSE_1 0  #define MOUSE_1 0
Line 1117 
Line 1114 
 #define MOUSE_3 2  #define MOUSE_3 2
 #define MOUSE_UP 3  #define MOUSE_UP 3
 #define MOUSE_BUTTON 3  #define MOUSE_BUTTON 3
   #define MOUSE_SHIFT 4
   #define MOUSE_ESCAPE 8
   #define MOUSE_CTRL 16
 #define MOUSE_DRAG 32  #define MOUSE_DRAG 32
 #define MOUSE_45 64  #define MOUSE_45 64
 #define MOUSE_RESIZE_PANE 128 /* marker for resizing */  #define MOUSE_RESIZE_PANE 128 /* marker for resizing */

Legend:
Removed from v.1.326  
changed lines
  Added in v.1.327