/usr/include/gdkmm-3.0/gdkmm/event.h is in libgtkmm-3.0-dev 3.10.1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 | // -*- c++ -*-
// Generated by gmmproc 2.38.0 -- DO NOT MODIFY!
#ifndef _GDKMM_EVENT_H
#define _GDKMM_EVENT_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/* Copyright (C) 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 Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <gdkmm/types.h>
#include <gdkmm/screen.h>
/* Shadow DELETE macro (from winnt.h).
*/
#if defined(DELETE) && !defined(GTKMM_MACRO_SHADOW_DELETE)
enum { GTKMM_MACRO_DEFINITION_DELETE = DELETE };
#undef DELETE
enum { DELETE = GTKMM_MACRO_DEFINITION_DELETE };
#define DELETE DELETE
#define GTKMM_MACRO_SHADOW_DELETE 1
#endif
#ifndef DOXYGEN_SHOULD_SKIP_THIS
extern "C" { typedef union _GdkEvent GdkEvent; }
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gdk
{
/** @addtogroup gdkmmEnums gdkmm Enums and Flags */
/**
* @var EventType NOTHING
* a special code to indicate a null event.
*
* @var EventType DELETE
* the window manager has requested that the toplevel window behidden or destroyed, usually when the user clicks on a special icon in thetitle bar.
*
* @var EventType DESTROY
* the window has been destroyed.
*
* @var EventType EXPOSE
* all or part of the window has become visible and needs to beredrawn.
*
* @var EventType MOTION_NOTIFY
* the pointer (usually a mouse) has moved.
*
* @var EventType BUTTON_PRESS
* a mouse button has been pressed.
*
* @var EventType DOUBLE_BUTTON_PRESS
* a mouse button has been double-clicked (clicked twicewithin a short period of time). Note that each click also generates aButton::PRESS event.
*
* @var EventType TRIPLE_BUTTON_PRESS
* a mouse button has been clicked 3 times in a short periodof time. Note that each click also generates a Button::PRESS event.
*
* @var EventType BUTTON_RELEASE
* a mouse button has been released.
*
* @var EventType KEY_PRESS
* a key has been pressed.
*
* @var EventType KEY_RELEASE
* a key has been released.
*
* @var EventType ENTER_NOTIFY
* the pointer has entered the window.
*
* @var EventType LEAVE_NOTIFY
* the pointer has left the window.
*
* @var EventType FOCUS_CHANGE
* the keyboard focus has entered or left the window.
*
* @var EventType CONFIGURE
* the size, position or stacking order of the window has changed.Note that GTK+ discards these events for Window::CHILD windows.
*
* @var EventType MAP
* the window has been mapped.
*
* @var EventType UNMAP
* the window has been unmapped.
*
* @var EventType PROPERTY_NOTIFY
* a property on the window has been changed or deleted.
*
* @var EventType SELECTION_CLEAR
* the application has lost ownership of a selection.
*
* @var EventType SELECTION_REQUEST
* another application has requested a selection.
*
* @var EventType SELECTION_NOTIFY
* a selection has been received.
*
* @var EventType PROXIMITY_IN
* an input device has moved into contact with a sensingsurface (e.g. a touchscreen or graphics tablet).
*
* @var EventType PROXIMITY_OUT
* an input device has moved out of contact with a sensingsurface.
*
* @var EventType DRAG_ENTER
* the mouse has entered the window while a drag is in progress.
*
* @var EventType DRAG_LEAVE
* the mouse has left the window while a drag is in progress.
*
* @var EventType DRAG_MOTION
* the mouse has moved in the window while a drag is inprogress.
*
* @var EventType DRAG_STATUS
* the status of the drag operation initiated by the windowhas changed.
*
* @var EventType DROP_START
* a drop operation onto the window has started.
*
* @var EventType DROP_FINISHED
* the drop operation initiated by the window has completed.
*
* @var EventType CLIENT_EVENT
* a message has been received from another application.
*
* @var EventType VISIBILITY_NOTIFY
* the window visibility status has changed.
*
* @var EventType SCROLL
* the scroll wheel was turned.
*
* @var EventType WINDOW_STATE
* the state of a window has changed. See Gdk::WindowStatefor the possible window states.
*
* @var EventType SETTING
* a setting has been modified.
*
* @var EventType OWNER_CHANGE
* the owner of a selection has changed. This event typewas added in 2.6.
*
* @var EventType GRAB_BROKEN
* a pointer or keyboard grab was broken. This event typewas added in 2.8.
*
* @var EventType DAMAGE
* the content of the window has been changed. This event typewas added in 2.14.
*
* @var EventType TOUCH_BEGIN
* A new touch event sequence has just started. This eventtype was added in 3.4.
*
* @var EventType TOUCH_UPDATE
* A touch event sequence has been updated. This event typewas added in 3.4.
*
* @var EventType TOUCH_END
* A touch event sequence has finished. This event typewas added in 3.4.
*
* @var EventType TOUCH_CANCEL
* A touch event sequence has been canceled. This event typewas added in 3.4.
*
* @var EventType EVENT_LAST
* marks the end of the GdkEventType enumeration. Added in 2.18.
*
* @enum EventType
*
* Specifies the type of the event.
*
* Do not confuse these events with the signals that GTK+ widgets emit.
* Although many of these events result in corresponding signals being emitted,
* the events are often transformed or filtered along the way.
*
* In some language bindings, the values Gdk::2BUTTON_PRESS and
* Gdk::3BUTTON_PRESS would translate into something syntactically
* invalid (eg <tt>Gdk.EventType.2ButtonPress</tt>, where a
* symbol is not allowed to start with a number). In that case, the
* aliases Gdk::DOUBLE_BUTTON_PRESS and Gdk::TRIPLE_BUTTON_PRESS can
* be used instead.
* @ingroup gdkmmEnums
*/
enum EventType
{
NOTHING = -1,
DELETE = 0,
DESTROY = 1,
EXPOSE = 2,
MOTION_NOTIFY = 3,
BUTTON_PRESS = 4,
DOUBLE_BUTTON_PRESS = 5,
TRIPLE_BUTTON_PRESS = 6,
BUTTON_RELEASE = 7,
KEY_PRESS = 8,
KEY_RELEASE = 9,
ENTER_NOTIFY = 10,
LEAVE_NOTIFY = 11,
FOCUS_CHANGE = 12,
CONFIGURE = 13,
MAP = 14,
UNMAP = 15,
PROPERTY_NOTIFY = 16,
SELECTION_CLEAR = 17,
SELECTION_REQUEST = 18,
SELECTION_NOTIFY = 19,
PROXIMITY_IN = 20,
PROXIMITY_OUT = 21,
DRAG_ENTER = 22,
DRAG_LEAVE = 23,
DRAG_MOTION = 24,
DRAG_STATUS = 25,
DROP_START = 26,
DROP_FINISHED = 27,
CLIENT_EVENT = 28,
VISIBILITY_NOTIFY = 29,
SCROLL = 31,
WINDOW_STATE = 32,
SETTING = 33,
OWNER_CHANGE = 34,
GRAB_BROKEN = 35,
DAMAGE = 36,
TOUCH_BEGIN = 37,
TOUCH_UPDATE = 38,
TOUCH_END = 39,
TOUCH_CANCEL = 40,
EVENT_LAST = 41
};
} // namespace Gdk
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gdk::EventType> : public Glib::Value_Enum<Gdk::EventType>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gdk
{
/**
* @var AxisUse AXIS_IGNORE
* the axis is ignored.
*
* @var AxisUse AXIS_X
* the axis is used as the x axis.
*
* @var AxisUse AXIS_Y
* the axis is used as the y axis.
*
* @var AxisUse AXIS_PRESSURE
* the axis is used for pressure information.
*
* @var AxisUse AXIS_XTILT
* the axis is used for x tilt information.
*
* @var AxisUse AXIS_YTILT
* the axis is used for y tilt information.
*
* @var AxisUse AXIS_WHEEL
* the axis is used for wheel information.
*
* @var AxisUse AXIS_LAST
* a constant equal to the numerically highest axis value.
*
* @enum AxisUse
*
* An enumeration describing the way in which a device
* axis (valuator) maps onto the predefined valuator
* types that GTK+ understands.
* @ingroup gdkmmEnums
*/
enum AxisUse
{
AXIS_IGNORE,
AXIS_X,
AXIS_Y,
AXIS_PRESSURE,
AXIS_XTILT,
AXIS_YTILT,
AXIS_WHEEL,
AXIS_LAST
};
} // namespace Gdk
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gdk::AxisUse> : public Glib::Value_Enum<Gdk::AxisUse>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gdk
{
//TODO: Actually use this class instead of GdkEvent?
class Event
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef Event CppObjectType;
typedef GdkEvent BaseObjectType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
Event();
explicit Event(GdkEvent* gobject, bool make_a_copy = true);
Event(const Event& other);
Event& operator=(const Event& other);
~Event();
void swap(Event& other);
///Provides access to the underlying C instance.
GdkEvent* gobj() { return gobject_; }
///Provides access to the underlying C instance.
const GdkEvent* gobj() const { return gobject_; }
///Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs.
GdkEvent* gobj_copy() const;
protected:
GdkEvent* gobject_;
private:
public:
/** Checks all open displays for a Gdk::Event to process,to be processed
* on, fetching events from the windowing system if necessary.
* See Gdk::Display::get_event().
* @return The next Gdk::Event to be processed, or <tt>0</tt> if no events
* are pending. The returned Gdk::Event should be freed with free().
*/
static Event get();
/** If there is an event waiting in the event queue of some open
* display, returns a copy of it. See Gdk::Display::peek_event().
* @return A copy of the first Gdk::Event on some event queue, or <tt>0</tt> if no
* events are in any queues. The returned Gdk::Event should be freed with
* free().
*/
static Event peek();
//deprecated
/** Appends a copy of the given event onto the front of the event
* queue for event->any.window's display, or the default event
* queue if event->any.window is <tt>0</tt>. See Gdk::Display::put_event().
*/
void put();
/** Checks if any events are ready to be processed for any display.
* @return <tt>true</tt> if any events are pending.
*/
static bool events_pending();
/** Returns the time stamp from @a event, if there is one; otherwise
* returns Gdk::CURRENT_TIME. If @a event is <tt>0</tt>, returns Gdk::CURRENT_TIME.
* @return Time stamp field from @a event.
*/
guint32 get_time() const;
/** If the event contains a "state" field, puts that field in @a state. Otherwise
* stores an empty state (0). Returns <tt>true</tt> if there was a state field
* in the event. @a event may be <tt>0</tt>, in which case it's treated
* as if the event had no state field.
* @param state Return location for state.
* @return <tt>true</tt> if there was a state field in the event.
*/
bool get_state(ModifierType& state) const;
/** Extract the event window relative x/y coordinates from an event.
* @param x_win Location to put event window x coordinate.
* @param y_win Location to put event window y coordinate.
* @return <tt>true</tt> if the event delivered event window coordinates.
*/
bool get_coords(double& x_win, double& y_win) const;
/** Extract the root window relative x/y coordinates from an event.
* @param x_root Location to put root window x coordinate.
* @param y_root Location to put root window y coordinate.
* @return <tt>true</tt> if the event delivered root window coordinates.
*/
bool get_root_coords(double& x_root, double& y_root) const;
/** Extract the axis value for a particular axis use from
* an event structure.
* @param axis_use The axis use to look for.
* @param value Location to store the value found.
* @return <tt>true</tt> if the specified axis was found, otherwise <tt>false</tt>.
*/
bool get_axis(AxisUse axis_use, double& value) const;
//_WRAP_METHOD(void gdk_event_handler_set(GdkEventFunc func, gpointer data, GDestroyNotify notify), gdk_event_handler_set)
/** Sets whether a trace of received events is output.
* Note that GTK+ must be compiled with debugging (that is,
* configured using the <tt>--enable-debug</tt> option)
* to use this option.
* @param show_events <tt>true</tt> to output event debugging information.
*/
static void set_show_events(bool show_events);
/** Gets whether event debugging output is enabled.
* @return <tt>true</tt> if event debugging output is enabled.
*/
static bool get_show_events();
//deprecated
/** Returns the screen for the event. The screen is
* typically the screen for <tt>event->any.window</tt>, but
* for events such as mouse events, it is the screen
* where the pointer was when the event occurs -
* that is, the screen which has the root window
* to which <tt>event->motion.x_root</tt> and
* <tt>event->motion.y_root</tt> are relative.
*
* @newin{2,2}
* @return The screen for the event.
*/
Glib::RefPtr<Screen> get_screen();
/** Returns the screen for the event. The screen is
* typically the screen for <tt>event->any.window</tt>, but
* for events such as mouse events, it is the screen
* where the pointer was when the event occurs -
* that is, the screen which has the root window
* to which <tt>event->motion.x_root</tt> and
* <tt>event->motion.y_root</tt> are relative.
*
* @newin{2,2}
* @return The screen for the event.
*/
Glib::RefPtr<const Screen> get_screen() const;
};
} // namespace Gdk
namespace Gdk
{
/** @relates Gdk::Event
* @param lhs The left-hand side
* @param rhs The right-hand side
*/
inline void swap(Event& lhs, Event& rhs)
{ lhs.swap(rhs); }
} // namespace Gdk
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gdk::Event
*/
Gdk::Event wrap(GdkEvent* object, bool take_copy = false);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
template <>
class Value<Gdk::Event> : public Glib::Value_Boxed<Gdk::Event>
{};
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
} // namespace Glib
#endif /* _GDKMM_EVENT_H */
|