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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/* CDK - The GIMP Drawing Kit
 * Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#include "config.h"

#include <cdk/cdkwindow.h>

#include <windowsx.h>
#include <objbase.h>

#include "cdkwin32.h"
#include "cdkdevice-wintab.h"

G_DEFINE_TYPE (CdkDeviceWintab, cdk_device_wintab, CDK_TYPE_DEVICE)

static gboolean
cdk_device_wintab_get_history (CdkDevice      *device,
                               CdkWindow      *window,
                               guint32         start,
                               guint32         stop,
                               CdkTimeCoord ***events,
                               gint           *n_events)
{
  return FALSE;
}

static CdkModifierType
get_current_mask (void)
{
  CdkModifierType mask;
  BYTE kbd[256];

  GetKeyboardState (kbd);
  mask = 0;
  if (kbd[VK_SHIFT] & 0x80)
    mask |= CDK_SHIFT_MASK;
  if (kbd[VK_CAPITAL] & 0x80)
    mask |= CDK_LOCK_MASK;
  if (kbd[VK_CONTROL] & 0x80)
    mask |= CDK_CONTROL_MASK;
  if (kbd[VK_MENU] & 0x80)
    mask |= CDK_MOD1_MASK;
  if (kbd[VK_LBUTTON] & 0x80)
    mask |= CDK_BUTTON1_MASK;
  if (kbd[VK_MBUTTON] & 0x80)
    mask |= CDK_BUTTON2_MASK;
  if (kbd[VK_RBUTTON] & 0x80)
    mask |= CDK_BUTTON3_MASK;

  return mask;
}

static void
cdk_device_wintab_get_state (CdkDevice       *device,
                             CdkWindow       *window,
                             gdouble         *axes,
                             CdkModifierType *mask)
{
  CdkDeviceWintab *device_wintab;

  device_wintab = CDK_DEVICE_WINTAB (device);

  /* For now just use the last known button and axis state of the device.
   * Since graphical tablets send an insane amount of motion events each
   * second, the info should be fairly up to date */
  if (mask)
    {
      *mask = get_current_mask ();
      *mask &= 0xFF; /* Mask away core pointer buttons */
      *mask |= ((device_wintab->button_state << 8)
                & (CDK_BUTTON1_MASK | CDK_BUTTON2_MASK
                   | CDK_BUTTON3_MASK | CDK_BUTTON4_MASK
                   | CDK_BUTTON5_MASK));
    }

  if (axes && device_wintab->last_axis_data)
    _cdk_device_wintab_translate_axes (device_wintab, window, axes, NULL, NULL);
}

static void
cdk_device_wintab_set_window_cursor (CdkDevice *device,<--- Parameter 'device' can be declared as pointer to const
                                     CdkWindow *window,<--- Parameter 'window' can be declared as pointer to const
                                     CdkCursor *cursor)<--- Parameter 'cursor' can be declared as pointer to const
{
}

static void
cdk_device_wintab_warp (CdkDevice *device,<--- Parameter 'device' can be declared as pointer to const
                        CdkScreen *screen,<--- Parameter 'screen' can be declared as pointer to const
                        gdouble   x,
                        gdouble   y)
{
}

static void
cdk_device_wintab_query_state (CdkDevice        *device,
                               CdkWindow        *window,
                               CdkWindow       **root_window,
                               CdkWindow       **child_window,
                               gdouble          *root_x,
                               gdouble          *root_y,
                               gdouble          *win_x,
                               gdouble          *win_y,
                               CdkModifierType  *mask)
{
  CdkDeviceWintab *device_wintab;
  CdkScreen *screen;
  POINT point;
  HWND hwnd, hwndc;
  CdkWindowImplWin32 *impl;<--- Variable 'impl' can be declared as pointer to const

  device_wintab = CDK_DEVICE_WINTAB (device);
  screen = cdk_window_get_screen (window);
  impl = CDK_WINDOW_IMPL_WIN32 (window->impl);

  hwnd = CDK_WINDOW_HWND (window);
  GetCursorPos (&point);

  if (root_x)
    *root_x = point.x / impl->window_scale;

  if (root_y)
    *root_y = point.y / impl->window_scale;

  ScreenToClient (hwnd, &point);

  if (win_x)
    *win_x = point.x / impl->window_scale;

  if (win_y)
    *win_y = point.y / impl->window_scale;

  if (window == cdk_get_default_root_window ())
    {
      if (win_x)
        *win_x += _cdk_offset_x;

      if (win_y)
        *win_y += _cdk_offset_y;
    }

  if (child_window)
    {
      hwndc = ChildWindowFromPoint (hwnd, point);

      if (hwndc && hwndc != hwnd)
        *child_window = cdk_win32_handle_table_lookup (hwndc);
      else
        *child_window = NULL; /* Direct child unknown to cdk */
    }

  if (root_window)
    *root_window = cdk_screen_get_root_window (screen);

  if (mask)
    {
      *mask = get_current_mask ();
      *mask &= 0xFF; /* Mask away core pointer buttons */
      *mask |= ((device_wintab->button_state << 8)
                & (CDK_BUTTON1_MASK | CDK_BUTTON2_MASK
                   | CDK_BUTTON3_MASK | CDK_BUTTON4_MASK
                   | CDK_BUTTON5_MASK));

    }
}

static CdkGrabStatus
cdk_device_wintab_grab (CdkDevice    *device,<--- Parameter 'device' can be declared as pointer to const
                        CdkWindow    *window,<--- Parameter 'window' can be declared as pointer to const
                        gboolean      owner_events,
                        CdkEventMask  event_mask,
                        CdkWindow    *confine_to,<--- Parameter 'confine_to' can be declared as pointer to const
                        CdkCursor    *cursor,<--- Parameter 'cursor' can be declared as pointer to const
                        guint32       time_)
{
  return CDK_GRAB_SUCCESS;
}

static void
cdk_device_wintab_ungrab (CdkDevice *device,<--- Parameter 'device' can be declared as pointer to const
                          guint32    time_)
{
}

static CdkWindow *
cdk_device_wintab_window_at_position (CdkDevice       *device,<--- Parameter 'device' can be declared as pointer to const
                                      gdouble         *win_x,<--- Parameter 'win_x' can be declared as pointer to const
                                      gdouble         *win_y,<--- Parameter 'win_y' can be declared as pointer to const
                                      CdkModifierType *mask,<--- Parameter 'mask' can be declared as pointer to const
                                      gboolean         get_toplevel)
{
  return NULL;
}

static void
cdk_device_wintab_select_window_events (CdkDevice    *device,<--- Parameter 'device' can be declared as pointer to const
                                        CdkWindow    *window,<--- Parameter 'window' can be declared as pointer to const
                                        CdkEventMask  event_mask)
{
}

void
_cdk_device_wintab_translate_axes (CdkDeviceWintab *device_wintab,
                                   CdkWindow       *window,
                                   gdouble         *axes,
                                   gdouble         *x,
                                   gdouble         *y)
{
  CdkDevice *device;
  CdkWindow *impl_window;
  gint root_x, root_y;
  gdouble temp_x, temp_y;
  gint i;

  device = CDK_DEVICE (device_wintab);
  impl_window = _cdk_window_get_impl_window (window);
  temp_x = temp_y = 0;

  cdk_window_get_origin (impl_window, &root_x, &root_y);

  for (i = 0; i < cdk_device_get_n_axes (device); i++)
    {
      CdkAxisUse use;

      use = cdk_device_get_axis_use (device, i);

      switch (use)
        {
        case CDK_AXIS_X:
        case CDK_AXIS_Y:
          if (cdk_device_get_mode (device) == CDK_MODE_WINDOW)
            _cdk_device_translate_window_coord (device, window, i,
                                                device_wintab->last_axis_data[i],
                                                &axes[i]);
          else
            _cdk_device_translate_screen_coord (device, window,
                                                root_x, root_y, i,
                                                device_wintab->last_axis_data[i],
                                                &axes[i]);
          if (use == CDK_AXIS_X)
            temp_x = axes[i];
          else if (use == CDK_AXIS_Y)
            temp_y = axes[i];

          break;
        default:
          _cdk_device_translate_axis (device, i,
                                      device_wintab->last_axis_data[i],
                                      &axes[i]);
          break;
        }
    }

  if (x)
    *x = temp_x;

  if (y)
    *y = temp_y;
}

static void
cdk_device_wintab_class_init (CdkDeviceWintabClass *klass)
{
  CdkDeviceClass *device_class = CDK_DEVICE_CLASS (klass);

  device_class->get_history = cdk_device_wintab_get_history;
  device_class->get_state = cdk_device_wintab_get_state;
  device_class->set_window_cursor = cdk_device_wintab_set_window_cursor;<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here
  device_class->warp = cdk_device_wintab_warp;<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here
  device_class->query_state = cdk_device_wintab_query_state;
  device_class->grab = cdk_device_wintab_grab;<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here
  device_class->ungrab = cdk_device_wintab_ungrab;<--- You might need to cast the function pointer here
  device_class->window_at_position = cdk_device_wintab_window_at_position;<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here
  device_class->select_window_events = cdk_device_wintab_select_window_events;<--- You might need to cast the function pointer here<--- You might need to cast the function pointer here
}

static void
cdk_device_wintab_init (CdkDeviceWintab *device_wintab)<--- Parameter 'device_wintab' can be declared as pointer to const
{
}