/usr/include/gdkmm-2.4/gdkmm/device.h is in libgtkmm-2.4-dev 1:2.24.5-1.
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 | // -*- c++ -*-
// Generated by gmmproc 2.45.3 -- DO NOT MODIFY!
#ifndef _GDKMM_DEVICE_H
#define _GDKMM_DEVICE_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/* $Id: device.hg,v 1.3 2004/02/10 17:29:54 mxpxpod Exp $ */
/* Copyright (C) 2002-2004 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gdkmm/window.h>
#include <gdkmm/event.h>
//#include <gdkmm/display.h>
#include <gdk/gdk.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GdkDevice GdkDevice;
typedef struct _GdkDeviceClass GdkDeviceClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Gdk
{ class Device_Class; } // namespace Gdk
#endif //DOXYGEN_SHOULD_SKIP_THIS
namespace Gdk
{
/** @addtogroup gdkmmEnums gdkmm Enums and Flags */
/**
*
* @ingroup gdkmmEnums
*/
enum InputMode
{
MODE_DISABLED,
MODE_SCREEN,
MODE_WINDOW
};
} // namespace Gdk
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gdk::InputMode> : public Glib::Value_Enum<Gdk::InputMode>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gdk
{
/**
*
* @ingroup gdkmmEnums
*/
enum InputSource
{
SOURCE_MOUSE,
SOURCE_PEN,
SOURCE_ERASER,
SOURCE_CURSOR
};
} // namespace Gdk
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gdk::InputSource> : public Glib::Value_Enum<Gdk::InputSource>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gdk
{
class Display;
/** A Gdk::Device instance contains a detailed description of an extended input device.
*/
class Device : public Glib::Object
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef Device CppObjectType;
typedef Device_Class CppClassType;
typedef GdkDevice BaseObjectType;
typedef GdkDeviceClass BaseClassType;
private: friend class Device_Class;
static CppClassType device_class_;
private:
// noncopyable
Device(const Device&);
Device& operator=(const Device&);
protected:
explicit Device(const Glib::ConstructParams& construct_params);
explicit Device(GdkDevice* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
virtual ~Device();
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GObject.
GdkDevice* gobj() { return reinterpret_cast<GdkDevice*>(gobject_); }
///Provides access to the underlying C GObject.
const GdkDevice* gobj() const { return reinterpret_cast<GdkDevice*>(gobject_); }
///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
GdkDevice* gobj_copy();
private:
protected:
Device();
public:
void set_source(InputSource source);
bool set_mode(InputMode mode);
/** If @a index has a valid keyval, this function will
* fill in @a keyval and @a modifiers with the keyval settings.
*
* @newin{2,22}
*
* @param index The index of the macro button to get.
* @param keyval Return value for the keyval.
* @param modifiers Return value for modifiers.
*/
void get_key(guint index_, guint& keyval, ModifierType& modifiers) const;
void set_key(guint index_, guint keyval, ModifierType modifiers);
/** Returns the axis use for @a index.
*
* @newin{2,22}
*
* @param index The index of the axis.
* @return A Gdk::AxisUse specifying how the axis is used.
*/
AxisUse get_axis_use(guint index_) const;
void set_axis_use(guint index_, AxisUse use);
/** Gets the current state of a device.
*
* @param window A Gdk::Window.
* @param axes An array of doubles to store the values of the axes of @a device in,
* or <tt>0</tt>.
* @param mask Location to store the modifiers, or <tt>0</tt>.
*/
void get_state(const Glib::RefPtr<Window>& window, double& axes, ModifierType& mask);
/** Obtains the motion history for a device; given a starting and
* ending timestamp, return all events in the motion history for
* the device in the given range of time. Some windowing systems
* do not support motion history, in which case, <tt>false</tt> will
* be returned. (This is not distinguishable from the case where
* motion history is supported and no events were found.)
*
* @param window The window with respect to which which the event coordinates will be reported.
* @param start Starting timestamp for range of events to return.
* @param stop Ending timestamp for the range of events to return.
* @param events Location to store a newly-allocated array of Gdk::TimeCoord, or <tt>0</tt>.
* @param n_events Location to store the length of @a events, or <tt>0</tt>.
* @return <tt>true</tt> if the windowing system supports motion history and
* at least one event was found.
*/
bool get_history(const Glib::RefPtr<Window>& window, guint32 start, guint32 stop, GdkTimeCoord**& events, int& n_events);
/** Interprets an array of double as axis values for a given device,
* and locates the value in the array for a given axis use.
*
* @param axes Pointer to an array of axes.
* @param use The use to look for.
* @param value Location to store the found value.
* @return <tt>true</tt> if the given axis use was found, otherwise <tt>false</tt>.
*/
bool get_axis(double& axes, AxisUse use, double& value) const;
/** Determines the name of the device.
*
* @newin{2,22}
*
* @return A name.
*/
Glib::ustring get_name() const;
/** Determines the type of the device.
*
* @newin{2,22}
*
* @return A Gdk::InputSource.
*/
InputSource get_source() const;
/** Determines the mode of the device.
*
* @newin{2,22}
*
* @return A Gdk::InputSource.
*/
InputMode get_mode() const;
/** Determines whether the pointer follows device motion.
*
* @newin{2,22}
*
* @return <tt>true</tt> if the pointer follows device motion.
*/
bool get_has_cursor() const;
/** Gets the number of axes of a device.
*
* @newin{2,22}
*
* @return The number of axes of @a device.
*/
gint get_n_axes() const;
public:
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
};
} // 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::Device
*/
Glib::RefPtr<Gdk::Device> wrap(GdkDevice* object, bool take_copy = false);
}
#endif /* _GDKMM_DEVICE_H */
|