summaryrefslogtreecommitdiff
path: root/libs/gtkmm2/gdk/gdkmm/event.cc
blob: e9a71e918c9485b89583664264e7204dbe7b7af7 (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
// Generated by gtkmmproc -- DO NOT MODIFY!

#include <gdkmm/event.h>
#include <gdkmm/private/event_p.h>

#include <gdk/gdkenumtypes.h>
// -*- c++ -*-
/* $Id$ */

/*
 *
 * Copyright 1998-2002 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <gdkmm/display.h>

namespace Gdk
{

bool Event::send_client_message(const Glib::RefPtr<Display>& display, NativeWindow winid)
{
  return gdk_event_send_client_message_for_display(display->gobj(), gobj(), winid);
}

} //namespace Gdk


namespace
{
} // anonymous namespace

// static
GType Glib::Value<Gdk::EventType>::value_type()
{
  return gdk_event_type_get_type();
}

// static
GType Glib::Value<Gdk::ExtensionMode>::value_type()
{
  return gdk_extension_mode_get_type();
}

// static
GType Glib::Value<Gdk::AxisUse>::value_type()
{
  return gdk_axis_use_get_type();
}


namespace Glib
{

Gdk::Event wrap(GdkEvent* object, bool take_copy)
{
  return Gdk::Event(object, take_copy);
}

} // namespace Glib


namespace Gdk
{


// static
GType Event::get_type()
{
  return gdk_event_get_type();
}

Event::Event()
:
  gobject_ (0) // Allows creation of invalid wrapper, e.g. for output arguments to methods.
{}

Event::Event(const Event& other)
:
  gobject_ ((other.gobject_) ? gdk_event_copy(other.gobject_) : 0)
{}

Event::Event(GdkEvent* gobject, bool make_a_copy)
:
  // For BoxedType wrappers, make_a_copy is true by default.  The static
  // BoxedType wrappers must always take a copy, thus make_a_copy = true
  // ensures identical behaviour if the default argument is used.
  gobject_ ((make_a_copy && gobject) ? gdk_event_copy(gobject) : gobject)
{}

Event& Event::operator=(const Event& other)
{
  Event temp (other);
  swap(temp);
  return *this;
}

Event::~Event()
{
  if(gobject_)
    gdk_event_free(gobject_);
}

void Event::swap(Event& other)
{
  GdkEvent *const temp = gobject_;
  gobject_ = other.gobject_;
  other.gobject_ = temp;
}

GdkEvent* Event::gobj_copy() const
{
  return gdk_event_copy(gobject_);
}


Event Event::get()
{
  return Event(gdk_event_get());
}

Event Event::peek()
{
  return Event(gdk_event_peek());
}

Event Event::get_graphics_expose(const Glib::RefPtr<Window>& window)
{
  return Event(gdk_event_get_graphics_expose(Glib::unwrap(window)));
}

void Event::put()
{
  gdk_event_put(gobj());
}

bool Event::events_pending()
{
  return gdk_events_pending();
}

guint32 Event::get_time() const
{
  return gdk_event_get_time(const_cast<GdkEvent*>(gobj()));
}

bool Event::get_state(ModifierType& state) const
{
  return gdk_event_get_state(const_cast<GdkEvent*>(gobj()), ((GdkModifierType*) &(state)));
}

bool Event::get_coords(double& x_win, double& y_win) const
{
  return gdk_event_get_coords(const_cast<GdkEvent*>(gobj()), &(x_win), &(y_win));
}

bool Event::get_root_coords(double& x_root, double& y_root) const
{
  return gdk_event_get_root_coords(const_cast<GdkEvent*>(gobj()), &(x_root), &(y_root));
}

bool Event::get_axis(AxisUse axis_use, double& value) const
{
  return gdk_event_get_axis(const_cast<GdkEvent*>(gobj()), ((GdkAxisUse)(axis_use)), &(value));
}

void Event::set_show_events(bool show_events)
{
  gdk_set_show_events(static_cast<int>(show_events));
}

bool Event::get_show_events()
{
  return gdk_get_show_events();
}

void Event::set_screen(const Glib::RefPtr<Screen>& screen)
{
  gdk_event_set_screen(gobj(), Glib::unwrap(screen));
}

Glib::RefPtr<Screen> Event::get_screen()
{

  Glib::RefPtr<Screen> retvalue = Glib::wrap(gdk_event_get_screen(gobj()));

  if(retvalue)
    retvalue->reference(); //The function does not do a ref for us.
  return retvalue;
}

Glib::RefPtr<const Screen> Event::get_screen() const
{

  Glib::RefPtr<const Screen> retvalue = Glib::wrap(gdk_event_get_screen(const_cast<GdkEvent*>(gobj())));

  if(retvalue)
    retvalue->reference(); //The function does not do a ref for us.
  return retvalue;
}

bool Event::send_client_message(NativeWindow winid)
{
  return gdk_event_send_client_message(gobj(), (GdkNativeWindow)(winid));
}


} // namespace Gdk