GDK-Win32: Ensure sources use UNIX line endings

This makes things more consistent with the other sources and makes patches
easier to apply cleanly.
This commit is contained in:
Chun-wei Fan 2013-12-04 08:57:43 +08:00
parent e7e57507b1
commit 901127243a
2 changed files with 477 additions and 477 deletions

View File

@ -1,429 +1,429 @@
/* GDK - The GIMP Drawing Kit /* GDK - The GIMP Drawing Kit
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org> * Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either * License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version. * version 2 of the License, or (at your option) any later version.
* *
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Lesser General Public * 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/>. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "config.h" #include "config.h"
#include <gdk/gdkwindow.h> #include <gdk/gdkwindow.h>
#include <windowsx.h> #include <windowsx.h>
#include <objbase.h> #include <objbase.h>
#include "gdkdisplayprivate.h" #include "gdkdisplayprivate.h"
#include "gdkdevice-virtual.h" #include "gdkdevice-virtual.h"
#include "gdkwin32.h" #include "gdkwin32.h"
static gboolean gdk_device_virtual_get_history (GdkDevice *device, static gboolean gdk_device_virtual_get_history (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
guint32 start, guint32 start,
guint32 stop, guint32 stop,
GdkTimeCoord ***events, GdkTimeCoord ***events,
gint *n_events); gint *n_events);
static void gdk_device_virtual_get_state (GdkDevice *device, static void gdk_device_virtual_get_state (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
gdouble *axes, gdouble *axes,
GdkModifierType *mask); GdkModifierType *mask);
static void gdk_device_virtual_set_window_cursor (GdkDevice *device, static void gdk_device_virtual_set_window_cursor (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
GdkCursor *cursor); GdkCursor *cursor);
static void gdk_device_virtual_warp (GdkDevice *device, static void gdk_device_virtual_warp (GdkDevice *device,
GdkScreen *screen, GdkScreen *screen,
gdouble x, gdouble x,
gdouble y); gdouble y);
static void gdk_device_virtual_query_state (GdkDevice *device, static void gdk_device_virtual_query_state (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
GdkWindow **root_window, GdkWindow **root_window,
GdkWindow **child_window, GdkWindow **child_window,
gdouble *root_x, gdouble *root_x,
gdouble *root_y, gdouble *root_y,
gdouble *win_x, gdouble *win_x,
gdouble *win_y, gdouble *win_y,
GdkModifierType *mask); GdkModifierType *mask);
static GdkGrabStatus gdk_device_virtual_grab (GdkDevice *device, static GdkGrabStatus gdk_device_virtual_grab (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
gboolean owner_events, gboolean owner_events,
GdkEventMask event_mask, GdkEventMask event_mask,
GdkWindow *confine_to, GdkWindow *confine_to,
GdkCursor *cursor, GdkCursor *cursor,
guint32 time_); guint32 time_);
static void gdk_device_virtual_ungrab (GdkDevice *device, static void gdk_device_virtual_ungrab (GdkDevice *device,
guint32 time_); guint32 time_);
static GdkWindow * gdk_device_virtual_window_at_position (GdkDevice *device, static GdkWindow * gdk_device_virtual_window_at_position (GdkDevice *device,
gdouble *win_x, gdouble *win_x,
gdouble *win_y, gdouble *win_y,
GdkModifierType *mask, GdkModifierType *mask,
gboolean get_toplevel); gboolean get_toplevel);
static void gdk_device_virtual_select_window_events (GdkDevice *device, static void gdk_device_virtual_select_window_events (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
GdkEventMask event_mask); GdkEventMask event_mask);
G_DEFINE_TYPE (GdkDeviceVirtual, gdk_device_virtual, GDK_TYPE_DEVICE) G_DEFINE_TYPE (GdkDeviceVirtual, gdk_device_virtual, GDK_TYPE_DEVICE)
static void static void
gdk_device_virtual_class_init (GdkDeviceVirtualClass *klass) gdk_device_virtual_class_init (GdkDeviceVirtualClass *klass)
{ {
GdkDeviceClass *device_class = GDK_DEVICE_CLASS (klass); GdkDeviceClass *device_class = GDK_DEVICE_CLASS (klass);
device_class->get_history = gdk_device_virtual_get_history; device_class->get_history = gdk_device_virtual_get_history;
device_class->get_state = gdk_device_virtual_get_state; device_class->get_state = gdk_device_virtual_get_state;
device_class->set_window_cursor = gdk_device_virtual_set_window_cursor; device_class->set_window_cursor = gdk_device_virtual_set_window_cursor;
device_class->warp = gdk_device_virtual_warp; device_class->warp = gdk_device_virtual_warp;
device_class->query_state = gdk_device_virtual_query_state; device_class->query_state = gdk_device_virtual_query_state;
device_class->grab = gdk_device_virtual_grab; device_class->grab = gdk_device_virtual_grab;
device_class->ungrab = gdk_device_virtual_ungrab; device_class->ungrab = gdk_device_virtual_ungrab;
device_class->window_at_position = gdk_device_virtual_window_at_position; device_class->window_at_position = gdk_device_virtual_window_at_position;
device_class->select_window_events = gdk_device_virtual_select_window_events; device_class->select_window_events = gdk_device_virtual_select_window_events;
} }
static void static void
gdk_device_virtual_init (GdkDeviceVirtual *device_virtual) gdk_device_virtual_init (GdkDeviceVirtual *device_virtual)
{ {
GdkDevice *device; GdkDevice *device;
device = GDK_DEVICE (device_virtual); device = GDK_DEVICE (device_virtual);
} }
void void
_gdk_device_virtual_set_active (GdkDevice *device, _gdk_device_virtual_set_active (GdkDevice *device,
GdkDevice *new_active) GdkDevice *new_active)
{ {
GdkDeviceVirtual *virtual = GDK_DEVICE_VIRTUAL (device); GdkDeviceVirtual *virtual = GDK_DEVICE_VIRTUAL (device);
int n_axes, i; int n_axes, i;
GdkAtom label_atom; GdkAtom label_atom;
GdkAxisUse use; GdkAxisUse use;
gdouble min_value, max_value, resolution; gdouble min_value, max_value, resolution;
if (virtual->active_device == new_active) if (virtual->active_device == new_active)
return; return;
virtual->active_device = new_active; virtual->active_device = new_active;
if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD) if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
{ {
_gdk_device_reset_axes (device); _gdk_device_reset_axes (device);
n_axes = gdk_device_get_n_axes (new_active); n_axes = gdk_device_get_n_axes (new_active);
for (i = 0; i < n_axes; i++) for (i = 0; i < n_axes; i++)
{ {
_gdk_device_get_axis_info (new_active, i, _gdk_device_get_axis_info (new_active, i,
&label_atom, &use, &label_atom, &use,
&min_value, &max_value, &resolution); &min_value, &max_value, &resolution);
_gdk_device_add_axis (device, _gdk_device_add_axis (device,
label_atom, use, label_atom, use,
min_value, max_value, resolution); min_value, max_value, resolution);
} }
} }
g_signal_emit_by_name (G_OBJECT (device), "changed"); g_signal_emit_by_name (G_OBJECT (device), "changed");
} }
static gboolean static gboolean
gdk_device_virtual_get_history (GdkDevice *device, gdk_device_virtual_get_history (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
guint32 start, guint32 start,
guint32 stop, guint32 stop,
GdkTimeCoord ***events, GdkTimeCoord ***events,
gint *n_events) gint *n_events)
{ {
/* History is only per slave device */ /* History is only per slave device */
return FALSE; return FALSE;
} }
static void static void
gdk_device_virtual_get_state (GdkDevice *device, gdk_device_virtual_get_state (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
gdouble *axes, gdouble *axes,
GdkModifierType *mask) GdkModifierType *mask)
{ {
GdkDeviceVirtual *virtual = GDK_DEVICE_VIRTUAL (device); GdkDeviceVirtual *virtual = GDK_DEVICE_VIRTUAL (device);
GdkDevice *active = virtual->active_device; GdkDevice *active = virtual->active_device;
GDK_DEVICE_GET_CLASS (active)->get_state (active, GDK_DEVICE_GET_CLASS (active)->get_state (active,
window, axes, mask); window, axes, mask);
} }
static void static void
gdk_device_virtual_set_window_cursor (GdkDevice *device, gdk_device_virtual_set_window_cursor (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
GdkCursor *cursor) GdkCursor *cursor)
{ {
GdkWin32Cursor *cursor_private; GdkWin32Cursor *cursor_private;
GdkWindow *parent_window; GdkWindow *parent_window;
GdkWindowImplWin32 *impl; GdkWindowImplWin32 *impl;
HCURSOR hcursor; HCURSOR hcursor;
HCURSOR hprevcursor; HCURSOR hprevcursor;
impl = GDK_WINDOW_IMPL_WIN32 (window->impl); impl = GDK_WINDOW_IMPL_WIN32 (window->impl);
cursor_private = (GdkWin32Cursor*) cursor; cursor_private = (GdkWin32Cursor*) cursor;
hprevcursor = impl->hcursor; hprevcursor = impl->hcursor;
if (!cursor) if (!cursor)
hcursor = NULL; hcursor = NULL;
else else
hcursor = cursor_private->hcursor; hcursor = cursor_private->hcursor;
if (hcursor != NULL) if (hcursor != NULL)
{ {
/* If the pointer is over our window, set new cursor */ /* If the pointer is over our window, set new cursor */
GdkWindow *curr_window = gdk_window_get_device_position (window, device, NULL, NULL, NULL); GdkWindow *curr_window = gdk_window_get_device_position (window, device, NULL, NULL, NULL);
if (curr_window == window || if (curr_window == window ||
(curr_window && window == gdk_window_get_toplevel (curr_window))) (curr_window && window == gdk_window_get_toplevel (curr_window)))
SetCursor (hcursor); SetCursor (hcursor);
else else
{ {
/* Climb up the tree and find whether our window is the /* Climb up the tree and find whether our window is the
* first ancestor that has cursor defined, and if so, set * first ancestor that has cursor defined, and if so, set
* new cursor. * new cursor.
*/ */
while (curr_window && curr_window->impl && while (curr_window && curr_window->impl &&
!GDK_WINDOW_IMPL_WIN32 (curr_window->impl)->hcursor) !GDK_WINDOW_IMPL_WIN32 (curr_window->impl)->hcursor)
{ {
curr_window = curr_window->parent; curr_window = curr_window->parent;
if (curr_window == GDK_WINDOW (window)) if (curr_window == GDK_WINDOW (window))
{ {
SetCursor (hcursor); SetCursor (hcursor);
break; break;
} }
} }
} }
} }
/* Unset the previous cursor: Need to make sure it's no longer in /* Unset the previous cursor: Need to make sure it's no longer in
* use before we destroy it, in case we're not over our window but * use before we destroy it, in case we're not over our window but
* the cursor is still set to our old one. * the cursor is still set to our old one.
*/ */
if (hprevcursor != NULL && if (hprevcursor != NULL &&
GetCursor () == hprevcursor) GetCursor () == hprevcursor)
{ {
/* Look for a suitable cursor to use instead */ /* Look for a suitable cursor to use instead */
hcursor = NULL; hcursor = NULL;
parent_window = GDK_WINDOW (window)->parent; parent_window = GDK_WINDOW (window)->parent;
while (hcursor == NULL) while (hcursor == NULL)
{ {
if (parent_window) if (parent_window)
{ {
impl = GDK_WINDOW_IMPL_WIN32 (parent_window->impl); impl = GDK_WINDOW_IMPL_WIN32 (parent_window->impl);
hcursor = impl->hcursor; hcursor = impl->hcursor;
parent_window = parent_window->parent; parent_window = parent_window->parent;
} }
else else
hcursor = LoadCursor (NULL, IDC_ARROW); hcursor = LoadCursor (NULL, IDC_ARROW);
} }
SetCursor (hcursor); SetCursor (hcursor);
} }
} }
static void static void
gdk_device_virtual_warp (GdkDevice *device, gdk_device_virtual_warp (GdkDevice *device,
GdkScreen *screen, GdkScreen *screen,
gdouble x, gdouble x,
gdouble y) gdouble y)
{ {
SetCursorPos (x - _gdk_offset_x, y - _gdk_offset_y); SetCursorPos (x - _gdk_offset_x, y - _gdk_offset_y);
} }
static void static void
gdk_device_virtual_query_state (GdkDevice *device, gdk_device_virtual_query_state (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
GdkWindow **root_window, GdkWindow **root_window,
GdkWindow **child_window, GdkWindow **child_window,
gdouble *root_x, gdouble *root_x,
gdouble *root_y, gdouble *root_y,
gdouble *win_x, gdouble *win_x,
gdouble *win_y, gdouble *win_y,
GdkModifierType *mask) GdkModifierType *mask)
{ {
GdkDeviceVirtual *virtual = GDK_DEVICE_VIRTUAL (device); GdkDeviceVirtual *virtual = GDK_DEVICE_VIRTUAL (device);
_gdk_device_query_state (virtual->active_device, _gdk_device_query_state (virtual->active_device,
window, root_window, child_window, window, root_window, child_window,
root_x, root_y, root_x, root_y,
win_x, win_y, win_x, win_y,
mask); mask);
} }
static GdkGrabStatus static GdkGrabStatus
gdk_device_virtual_grab (GdkDevice *device, gdk_device_virtual_grab (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
gboolean owner_events, gboolean owner_events,
GdkEventMask event_mask, GdkEventMask event_mask,
GdkWindow *confine_to, GdkWindow *confine_to,
GdkCursor *cursor, GdkCursor *cursor,
guint32 time_) guint32 time_)
{ {
GdkWindowImplWin32 *impl = GDK_WINDOW_IMPL_WIN32 (window->impl); GdkWindowImplWin32 *impl = GDK_WINDOW_IMPL_WIN32 (window->impl);
HCURSOR hcursor; HCURSOR hcursor;
GdkWin32Cursor *cursor_private; GdkWin32Cursor *cursor_private;
cursor_private = (GdkWin32Cursor*) cursor; cursor_private = (GdkWin32Cursor*) cursor;
if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD) if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
{ {
if (!cursor) if (!cursor)
hcursor = NULL; hcursor = NULL;
else if ((hcursor = CopyCursor (cursor_private->hcursor)) == NULL) else if ((hcursor = CopyCursor (cursor_private->hcursor)) == NULL)
WIN32_API_FAILED ("CopyCursor"); WIN32_API_FAILED ("CopyCursor");
if (_gdk_win32_grab_cursor != NULL) if (_gdk_win32_grab_cursor != NULL)
{ {
if (GetCursor () == _gdk_win32_grab_cursor) if (GetCursor () == _gdk_win32_grab_cursor)
SetCursor (NULL); SetCursor (NULL);
DestroyCursor (_gdk_win32_grab_cursor); DestroyCursor (_gdk_win32_grab_cursor);
} }
_gdk_win32_grab_cursor = hcursor; _gdk_win32_grab_cursor = hcursor;
if (_gdk_win32_grab_cursor != NULL) if (_gdk_win32_grab_cursor != NULL)
SetCursor (_gdk_win32_grab_cursor); SetCursor (_gdk_win32_grab_cursor);
else if (impl->hcursor != NULL) else if (impl->hcursor != NULL)
SetCursor (impl->hcursor); SetCursor (impl->hcursor);
else else
SetCursor (LoadCursor (NULL, IDC_ARROW)); SetCursor (LoadCursor (NULL, IDC_ARROW));
SetCapture (GDK_WINDOW_HWND (window)); SetCapture (GDK_WINDOW_HWND (window));
} }
return GDK_GRAB_SUCCESS; return GDK_GRAB_SUCCESS;
} }
static void static void
gdk_device_virtual_ungrab (GdkDevice *device, gdk_device_virtual_ungrab (GdkDevice *device,
guint32 time_) guint32 time_)
{ {
GdkDeviceGrabInfo *info; GdkDeviceGrabInfo *info;
GdkDisplay *display; GdkDisplay *display;
display = gdk_device_get_display (device); display = gdk_device_get_display (device);
info = _gdk_display_get_last_device_grab (display, device); info = _gdk_display_get_last_device_grab (display, device);
if (info) if (info)
info->serial_end = 0; info->serial_end = 0;
if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD) if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
{ {
if (_gdk_win32_grab_cursor != NULL) if (_gdk_win32_grab_cursor != NULL)
{ {
if (GetCursor () == _gdk_win32_grab_cursor) if (GetCursor () == _gdk_win32_grab_cursor)
SetCursor (NULL); SetCursor (NULL);
DestroyCursor (_gdk_win32_grab_cursor); DestroyCursor (_gdk_win32_grab_cursor);
} }
_gdk_win32_grab_cursor = NULL; _gdk_win32_grab_cursor = NULL;
ReleaseCapture (); ReleaseCapture ();
} }
_gdk_display_device_grab_update (display, device, device, 0); _gdk_display_device_grab_update (display, device, device, 0);
} }
static void static void
screen_to_client (HWND hwnd, POINT screen_pt, POINT *client_pt) screen_to_client (HWND hwnd, POINT screen_pt, POINT *client_pt)
{ {
*client_pt = screen_pt; *client_pt = screen_pt;
ScreenToClient (hwnd, client_pt); ScreenToClient (hwnd, client_pt);
} }
static GdkWindow * static GdkWindow *
gdk_device_virtual_window_at_position (GdkDevice *device, gdk_device_virtual_window_at_position (GdkDevice *device,
gdouble *win_x, gdouble *win_x,
gdouble *win_y, gdouble *win_y,
GdkModifierType *mask, GdkModifierType *mask,
gboolean get_toplevel) gboolean get_toplevel)
{ {
GdkWindow *window = NULL; GdkWindow *window = NULL;
POINT screen_pt, client_pt; POINT screen_pt, client_pt;
HWND hwnd, hwndc; HWND hwnd, hwndc;
RECT rect; RECT rect;
GetCursorPos (&screen_pt); GetCursorPos (&screen_pt);
if (get_toplevel) if (get_toplevel)
{ {
/* Only consider visible children of the desktop to avoid the various /* Only consider visible children of the desktop to avoid the various
* non-visible windows you often find on a running Windows box. These * non-visible windows you often find on a running Windows box. These
* might overlap our windows and cause our walk to fail. As we assume * might overlap our windows and cause our walk to fail. As we assume
* WindowFromPoint() can find our windows, we follow similar logic * WindowFromPoint() can find our windows, we follow similar logic
* here, and ignore invisible and disabled windows. * here, and ignore invisible and disabled windows.
*/ */
hwnd = GetDesktopWindow (); hwnd = GetDesktopWindow ();
do { do {
window = gdk_win32_handle_table_lookup (hwnd); window = gdk_win32_handle_table_lookup (hwnd);
if (window != NULL && if (window != NULL &&
GDK_WINDOW_TYPE (window) != GDK_WINDOW_ROOT && GDK_WINDOW_TYPE (window) != GDK_WINDOW_ROOT &&
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN) GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
break; break;
screen_to_client (hwnd, screen_pt, &client_pt); screen_to_client (hwnd, screen_pt, &client_pt);
hwndc = ChildWindowFromPointEx (hwnd, client_pt, CWP_SKIPDISABLED | hwndc = ChildWindowFromPointEx (hwnd, client_pt, CWP_SKIPDISABLED |
CWP_SKIPINVISIBLE); CWP_SKIPINVISIBLE);
/* Verify that we're really inside the client area of the window */ /* Verify that we're really inside the client area of the window */
if (hwndc != hwnd) if (hwndc != hwnd)
{ {
GetClientRect (hwndc, &rect); GetClientRect (hwndc, &rect);
screen_to_client (hwndc, screen_pt, &client_pt); screen_to_client (hwndc, screen_pt, &client_pt);
if (!PtInRect (&rect, client_pt)) if (!PtInRect (&rect, client_pt))
hwndc = hwnd; hwndc = hwnd;
} }
} while (hwndc != hwnd && (hwnd = hwndc, 1)); } while (hwndc != hwnd && (hwnd = hwndc, 1));
} }
else else
{ {
hwnd = WindowFromPoint (screen_pt); hwnd = WindowFromPoint (screen_pt);
/* Verify that we're really inside the client area of the window */ /* Verify that we're really inside the client area of the window */
GetClientRect (hwnd, &rect); GetClientRect (hwnd, &rect);
screen_to_client (hwnd, screen_pt, &client_pt); screen_to_client (hwnd, screen_pt, &client_pt);
if (!PtInRect (&rect, client_pt)) if (!PtInRect (&rect, client_pt))
hwnd = NULL; hwnd = NULL;
/* If we didn't hit any window at that point, return the desktop */ /* If we didn't hit any window at that point, return the desktop */
if (hwnd == NULL) if (hwnd == NULL)
{ {
if (win_x) if (win_x)
*win_x = screen_pt.x + _gdk_offset_x; *win_x = screen_pt.x + _gdk_offset_x;
if (win_y) if (win_y)
*win_y = screen_pt.y + _gdk_offset_y; *win_y = screen_pt.y + _gdk_offset_y;
return _gdk_root; return _gdk_root;
} }
window = gdk_win32_handle_table_lookup (hwnd); window = gdk_win32_handle_table_lookup (hwnd);
} }
if (window && (win_x || win_y)) if (window && (win_x || win_y))
{ {
if (win_x) if (win_x)
*win_x = client_pt.x; *win_x = client_pt.x;
if (win_y) if (win_y)
*win_y = client_pt.y; *win_y = client_pt.y;
} }
return window; return window;
} }
static void static void
gdk_device_virtual_select_window_events (GdkDevice *device, gdk_device_virtual_select_window_events (GdkDevice *device,
GdkWindow *window, GdkWindow *window,
GdkEventMask event_mask) GdkEventMask event_mask)
{ {
} }

View File

@ -1,54 +1,54 @@
/* GDK - The GIMP Drawing Kit /* GDK - The GIMP Drawing Kit
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org> * Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either * License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version. * version 2 of the License, or (at your option) any later version.
* *
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Lesser General Public * 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/>. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef __GDK_DEVICE_VIRTUAL_H__ #ifndef __GDK_DEVICE_VIRTUAL_H__
#define __GDK_DEVICE_VIRTUAL_H__ #define __GDK_DEVICE_VIRTUAL_H__
#include <gdk/gdkdeviceprivate.h> #include <gdk/gdkdeviceprivate.h>
G_BEGIN_DECLS G_BEGIN_DECLS
#define GDK_TYPE_DEVICE_VIRTUAL (gdk_device_virtual_get_type ()) #define GDK_TYPE_DEVICE_VIRTUAL (gdk_device_virtual_get_type ())
#define GDK_DEVICE_VIRTUAL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtual)) #define GDK_DEVICE_VIRTUAL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtual))
#define GDK_DEVICE_VIRTUAL_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtualClass)) #define GDK_DEVICE_VIRTUAL_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtualClass))
#define GDK_IS_DEVICE_VIRTUAL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDK_TYPE_DEVICE_VIRTUAL)) #define GDK_IS_DEVICE_VIRTUAL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDK_TYPE_DEVICE_VIRTUAL))
#define GDK_IS_DEVICE_VIRTUAL_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), GDK_TYPE_DEVICE_VIRTUAL)) #define GDK_IS_DEVICE_VIRTUAL_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), GDK_TYPE_DEVICE_VIRTUAL))
#define GDK_DEVICE_VIRTUAL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtualClass)) #define GDK_DEVICE_VIRTUAL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtualClass))
typedef struct _GdkDeviceVirtual GdkDeviceVirtual; typedef struct _GdkDeviceVirtual GdkDeviceVirtual;
typedef struct _GdkDeviceVirtualClass GdkDeviceVirtualClass; typedef struct _GdkDeviceVirtualClass GdkDeviceVirtualClass;
struct _GdkDeviceVirtual struct _GdkDeviceVirtual
{ {
GdkDevice parent_instance; GdkDevice parent_instance;
GdkDevice *active_device; GdkDevice *active_device;
}; };
struct _GdkDeviceVirtualClass struct _GdkDeviceVirtualClass
{ {
GdkDeviceClass parent_class; GdkDeviceClass parent_class;
}; };
GType gdk_device_virtual_get_type (void) G_GNUC_CONST; GType gdk_device_virtual_get_type (void) G_GNUC_CONST;
void _gdk_device_virtual_set_active (GdkDevice *device, void _gdk_device_virtual_set_active (GdkDevice *device,
GdkDevice *new_active); GdkDevice *new_active);
G_END_DECLS G_END_DECLS
#endif /* __GDK_DEVICE_VIRTUAL_H__ */ #endif /* __GDK_DEVICE_VIRTUAL_H__ */