/[rdesktop]/sourceforge.net/trunk/rdesktop/xkeymap.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/xkeymap.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 227 by astrand, Fri Oct 11 09:38:49 2002 UTC revision 244 by matthewc, Thu Oct 24 08:48:51 2002 UTC
# Line 240  handle_special_keys(uint32 keysym, unsig Line 240  handle_special_keys(uint32 keysym, unsig
240  {  {
241          switch (keysym)          switch (keysym)
242          {          {
243                  case XK_Break:                  case XK_Return:
                 case XK_Pause:  
244                          if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))                          if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
245                              && (get_key_state(state, XK_Control_L)                              && (get_key_state(state, XK_Control_L)
246                                  || get_key_state(state, XK_Control_R)))                                  || get_key_state(state, XK_Control_R)))
247                          {                          {
248                                  /* Ctrl-Alt-Break: toggle full screen */                                  /* Ctrl-Alt-Enter: toggle full screen */
249                                  if (pressed)                                  if (pressed)
250                                          xwin_toggle_fullscreen();                                          xwin_toggle_fullscreen();
251                                    return True;
252                            }
253                            break;
254    
255                    case XK_Break:
256                            /* Send Break sequence E0 46 E0 C6 */
257                            if (pressed)
258                            {
259                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
260                                                      (SCANCODE_EXTENDED | 0x46));
261                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
262                                                      (SCANCODE_EXTENDED | 0xc6));
263                          }                          }
264                          else if (keysym == XK_Break)                          /* No release sequence */
265                            return True;
266    
267                    case XK_Pause:
268                            /* According to MS Keyboard Scan Code
269                               Specification, pressing Pause should result
270                               in E1 1D 45 E1 9D C5. I'm not exactly sure
271                               of how this is supposed to be sent via
272                               RDP. The code below seems to work, but with
273                               the side effect that Left Ctrl stays
274                               down. Therefore, we release it when Pause
275                               is released. */
276                            if (pressed)
277                          {                          {
278                                  /* Send Break sequence E0 46 E0 C6 */                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
279                                  if (pressed)                                                 0xe1, 0);
280                                  {                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
281                                          rdp_send_scancode(ev_time, RDP_KEYPRESS,                                                 0x1d, 0);
282                                                            (SCANCODE_EXTENDED | 0x46));                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
283                                          rdp_send_scancode(ev_time, RDP_KEYPRESS,                                                 0x45, 0);
284                                                            (SCANCODE_EXTENDED | 0xc6));                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
285                                  }                                                 0xe1, 0);
286                                  /* No break sequence */                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
287                                                   0x9d, 0);
288                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
289                                                   0xc5, 0);
290                          }                          }
291                          else    /* XK_Pause */                          else
292                          {                          {
293                                  /* According to MS Keyboard Scan Code                                  /* Release Left Ctrl */
294                                     Specification, pressing Pause should result                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE,
295                                     in E1 1D 45 E1 9D C5. I'm not exactly sure                                                 0x1d, 0);
                                    of how this is supposed to be sent via  
                                    RDP. The code below seems to work, but with  
                                    the side effect that Left Ctrl stays  
                                    down. Therefore, we release it when Pause  
                                    is released. */  
                                 if (pressed)  
                                 {  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,  
                                                        0xe1, 0);  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,  
                                                        0x1d, 0);  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,  
                                                        0x45, 0);  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,  
                                                        0xe1, 0);  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,  
                                                        0x9d, 0);  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,  
                                                        0xc5, 0);  
                                 }  
                                 else  
                                 {  
                                         /* Release Left Ctrl */  
                                         rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE,  
                                                        0x1d, 0);  
                                 }  
296                          }                          }
297                          return True;                          return True;
298    

Legend:
Removed from v.227  
changed lines
  Added in v.244

  ViewVC Help
Powered by ViewVC 1.1.26