summaryrefslogtreecommitdiff
path: root/rhtvision/classes/qnx4/qnx4mouse.cc
blob: d892af127bbe6c7773e6c90e4f3c9b878adff77e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/* QNX 4 screen routines source.
   Copyright (c) 1998-2003 by Mike Gorchak
   Covered by the BSD license. */

#include <tv/configtv.h>

#if defined(TVOS_UNIX) && defined(TVOSf_QNX4)

#define Uses_stdlib
#define Uses_string
#define Uses_stdio
#define Uses_time
#define Uses_TEvent
#define Uses_TEventQueue
#define Uses_TScreen
#include <tv.h>

extern "C"
{
   #include <sys/term.h>
   #include <sys/qnxterm.h>
}

#include <tv/qnx4/screen.h>
#include <tv/qnx4/mouse.h>

int THWMouseQNX4::MousePositionX=0;
int THWMouseQNX4::MousePositionY=0;
int THWMouseQNX4::MouseButtons=0;
ushort THWMouseQNX4::ConsoleMode=QNX_CONSOLE_RAW;

THWMouseQNX4::~THWMouseQNX4()
{
   // this destructor is never called !
   // instead of it ::Suspend method called.
}

void THWMouseQNX4::Init(ushort mousemode)
{
   ConsoleMode=mousemode;

   if (ConsoleMode!=QNX_CONSOLE_RAW)
   {
      // a bit of black magic :)
      printf("\x1B""/""0""t");    // clear mouse options.
      printf("\x1B""/"">""1""h"); // enable clicking events (press).
      printf("\x1B""/"">""6""h"); // enable clicking events. (release).
      printf("\x1B""/"">""7""h"); // enable movement events.
      printf("\x1B""/"">""9""l"); // intercept all stuff (X10 mouse events reporting).
      fflush(stdout);
   }

   if (term_mouse_on()==0)
   {
      buttonCount=3;
   }
   else
   {
      if (ConsoleMode==QNX_CONSOLE_XQSH)
      {
         // under qnxterm mouse is not detected by termlib.
         buttonCount=3;
      }
      else
      {
         buttonCount=0;
      }
   }
   
   term_mouse_handler(MouseHandler);
   
   if (ConsoleMode==QNX_CONSOLE_PTERM)
   {
      term_mouse_flags(TERM_MOUSE_RELEASE | TERM_MOUSE_ADJUST | TERM_MOUSE_MENU | TERM_MOUSE_SELECT, 
                       TERM_MOUSE_RELEASE | TERM_MOUSE_ADJUST | TERM_MOUSE_MENU | TERM_MOUSE_SELECT);
   };

   THWMouse::Show=Show;
   THWMouse::Hide=Hide;
   THWMouse::Suspend=Suspend;
   THWMouse::Resume=Resume;
   THWMouse::GetEvent=GetEvent;
}

void THWMouseQNX4::Show()
{
   if (term_mouse_on()==0)
   {
      buttonCount=3;
   }
   else
   {
      if (ConsoleMode==QNX_CONSOLE_XQSH)
      {
         // under qnxterm mouse is not detected by termlib.
         buttonCount=3;
      }
      else
      {
         buttonCount=0;
      }
   }

   term_mouse_move(-1, -1);
   term_flush();
}

void THWMouseQNX4::Hide()
{
   buttonCount=0;
   term_mouse_hide();
   term_flush();
}

void THWMouseQNX4::Suspend()
{
   buttonCount=0;
   term_mouse_off();
   term_flush();

   if (ConsoleMode!=QNX_CONSOLE_RAW)
   {
      printf("\x1B""/""0""t");    // clear all mouse options.
      printf("\x1B""/"">""1""l"); // disable clicking events (press).
      printf("\x1B""/"">""6""l"); // disable clicking events. (release).
      printf("\x1B""/"">""7""l"); // disable movement events.
      printf("\x1B""/"">""9""h"); // release hook (Disable X10 mouse events reporting).
      fflush(stdout);
   }
}

void THWMouseQNX4::Resume()
{
   if (term_mouse_on()==0)
   {
      buttonCount=3;
   }
   else
   {
      if (ConsoleMode==QNX_CONSOLE_XQSH)
      {
         // under qnxterm mouse is not detected by termlib.
         buttonCount=3;
      }
      else
      {
         buttonCount=0;
      }
   }

   if (ConsoleMode!=QNX_CONSOLE_RAW)
   {
      // a bit of black magic :)
      printf("\x1B""/""0""t");    // clear mouse options.
      printf("\x1B""/"">""1""h"); // enable clicking events (press).
      printf("\x1B""/"">""6""h"); // enable clicking events. (release).
      printf("\x1B""/"">""7""h"); // enable movement events.
      printf("\x1B""/"">""9""l"); // intercept all stuff (X10 mouse events reporting).
      fflush(stdout);
   }
}

int THWMouseQNX4::MouseHandler(unsigned int* key, struct mouse_event* event)
{
   if (term_mouse_process(key, event))
   {
      return 1;
   }
   term_mouse_move(-1, -1);

   if (event==NULL)
   {
      // special case for the pterm.
      MousePositionX = term_state.mouse_col;
      MousePositionY = term_state.mouse_row;
      
      if ((key!=NULL) && (*key!=0x00000000UL))
      {
         if ((*key & K_MOUSE_POS) == K_MOUSE_POS)
         {
            if ((*key & K_MOUSE_BSELECT) == K_MOUSE_BSELECT)
            {
               if ((*key & K_MOUSE_CLICK) == K_MOUSE_CLICK)
               {
                  MouseButtons|=mbLeftButton; // left button;
               }
               if ((*key & K_MOUSE_RELEASE) == K_MOUSE_RELEASE)
               {
                  MouseButtons&=~mbLeftButton; // left button;
               }
            }
            if ((*key & K_MOUSE_BADJUST) == K_MOUSE_BADJUST)
            {
               if ((*key & K_MOUSE_CLICK) == K_MOUSE_CLICK)
               {
                  MouseButtons|=mbMiddleButton; // middle button;
               }
               if ((*key & K_MOUSE_RELEASE) == K_MOUSE_RELEASE)
               {
                  MouseButtons&=~mbMiddleButton; // middle button;
               }
            }
            if ((*key & K_MOUSE_BMENU) == K_MOUSE_BMENU)
            {
               if ((*key & K_MOUSE_CLICK) == K_MOUSE_CLICK)
               {
                  MouseButtons|=mbRightButton; // right button;
               }
               if ((*key & K_MOUSE_RELEASE) == K_MOUSE_RELEASE)
               {
                  MouseButtons&=~mbRightButton; // right button;
               }
            }
         }
      }

      return 0;
   }

   MouseButtons=0;
   if (event->buttons&_MOUSE_LEFT)
   {
      MouseButtons|=mbLeftButton;   // left button;
   }
   if (event->buttons & _MOUSE_RIGHT)
   {
      MouseButtons|=mbRightButton;  // right button;
   }
   if (event->buttons & _MOUSE_MIDDLE)
   {
      MouseButtons|=mbMiddleButton; // middle button;
   }
   
   MousePositionX = term_state.mouse_col;
   MousePositionY = term_state.mouse_row;

   return 0;
}

void THWMouseQNX4::GetEvent(MouseEventType &me)
{
   me.buttons=MouseButtons;
   me.doubleClick = False;
   me.where.x = MousePositionX;
   me.where.y = MousePositionY;
}

#else

   // Here to generate the dependencies in RHIDE
   #include <tv/qnx4/screen.h>
   #include <tv/qnx4/mouse.h>

#endif // TVOS_UNIX && TVOSf_QNX4