/usr/include/d/gtkd-3/atk/Util.d is in libgtkd-3-dev 3.7.5-2build1.
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 | /*
* This file is part of gtkD.
*
* gtkD 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 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module atk.Util;
private import atk.ObjectAtk;
private import atk.c.functions;
public import atk.c.types;
private import glib.Str;
private import gobject.ObjectG;
public import gtkc.atktypes;
/**
* A set of ATK utility functions which are used to support event
* registration of various types, and obtaining the 'root' accessible
* of a process and information about the current ATK implementation
* and toolkit version.
*/
public struct Util
{
/** */
public static GType getType()
{
return atk_util_get_type();
}
/**
* Adds the specified function to the list of functions to be called
* when an object receives focus.
*
* Deprecated: Focus tracking has been dropped as a feature
* to be implemented by ATK itself. If you need focus tracking on your
* implementation, subscribe to the #AtkObject::state-change "focused" signal.
*
* Params:
* focusTracker = Function to be added to the list of functions to be called
* when an object receives focus.
*
* Returns: added focus tracker id, or 0 on failure.
*/
public static uint addFocusTracker(AtkEventListener focusTracker)
{
return atk_add_focus_tracker(focusTracker);
}
/**
* Adds the specified function to the list of functions to be called
* when an ATK event of type event_type occurs.
*
* The format of event_type is the following:
* "ATK:<atk_type>:<atk_event>:<atk_event_detail>
*
* Where "ATK" works as the namespace, <atk_interface> is the name of
* the ATK type (interface or object), <atk_event> is the name of the
* signal defined on that interface and <atk_event_detail> is the
* gsignal detail of that signal. You can find more info about gsignal
* details here:
* http://developer.gnome.org/gobject/stable/gobject-Signals.html
*
* The first three parameters are mandatory. The last one is optional.
*
* For example:
* ATK:AtkObject:state-change
* ATK:AtkText:text-selection-changed
* ATK:AtkText:text-insert:system
*
* Toolkit implementor note: ATK provides a default implementation for
* this virtual method. ATK implementors are discouraged from
* reimplementing this method.
*
* Toolkit implementor note: this method is not intended to be used by
* ATK implementors but by ATK consumers.
*
* ATK consumers note: as this method adds a listener for a given ATK
* type, that type should be already registered on the GType system
* before calling this method. A simple way to do that is creating an
* instance of #AtkNoOpObject. This class implements all ATK
* interfaces, so creating the instance will register all ATK types as
* a collateral effect.
*
* Params:
* listener = the listener to notify
* eventType = the type of event for which notification is requested
*
* Returns: added event listener id, or 0 on failure.
*/
public static uint addGlobalEventListener(GSignalEmissionHook listener, string eventType)
{
return atk_add_global_event_listener(listener, Str.toStringz(eventType));
}
/**
* Adds the specified function to the list of functions to be called
* when a key event occurs. The @data element will be passed to the
* #AtkKeySnoopFunc (@listener) as the @func_data param, on notification.
*
* Params:
* listener = the listener to notify
* data = a #gpointer that points to a block of data that should be sent to the registered listeners,
* along with the event notification, when it occurs.
*
* Returns: added event listener id, or 0 on failure.
*/
public static uint addKeyEventListener(AtkKeySnoopFunc listener, void* data)
{
return atk_add_key_event_listener(listener, data);
}
/**
* Specifies the function to be called for focus tracker initialization.
* This function should be called by an implementation of the
* ATK interface if any specific work needs to be done to enable
* focus tracking.
*
* Deprecated: Focus tracking has been dropped as a feature
* to be implemented by ATK itself.
*
* Params:
* init = Function to be called for focus tracker initialization
*/
public static void focusTrackerInit(AtkEventListenerInit init)
{
atk_focus_tracker_init(init);
}
/**
* Cause the focus tracker functions which have been specified to be
* executed for the object.
*
* Deprecated: Focus tracking has been dropped as a feature
* to be implemented by ATK itself. As #AtkObject::focus-event was
* deprecated in favor of a #AtkObject::state-change signal, in order
* to notify a focus change on your implementation, you can use
* atk_object_notify_state_change() instead.
*
* Params:
* object = an #AtkObject
*/
public static void focusTrackerNotify(ObjectAtk object)
{
atk_focus_tracker_notify((object is null) ? null : object.getObjectAtkStruct());
}
/**
* Gets the currently focused object.
*
* Returns: the currently focused object for the current
* application
*
* Since: 1.6
*/
public static ObjectAtk getFocusObject()
{
auto p = atk_get_focus_object();
if(p is null)
{
return null;
}
return ObjectG.getDObject!(ObjectAtk)(cast(AtkObject*) p);
}
/**
* Gets the root accessible container for the current application.
*
* Returns: the root accessible container for the current
* application
*/
public static ObjectAtk getRoot()
{
auto p = atk_get_root();
if(p is null)
{
return null;
}
return ObjectG.getDObject!(ObjectAtk)(cast(AtkObject*) p);
}
/**
* Gets name string for the GUI toolkit implementing ATK for this application.
*
* Returns: name string for the GUI toolkit implementing ATK for this application
*/
public static string getToolkitName()
{
return Str.toString(atk_get_toolkit_name());
}
/**
*
*
* Deprecated: Focus tracking has been dropped as a feature
* to be implemented by ATK itself. If you need focus tracking on your
* implementation, subscribe to the #AtkObject::state-change "focused" signal.
*
* Removes the specified focus tracker from the list of functions
* to be called when any object receives focus.
*
* Params:
* trackerId = the id of the focus tracker to remove
*/
public static void removeFocusTracker(uint trackerId)
{
atk_remove_focus_tracker(trackerId);
}
/**
* @listener_id is the value returned by #atk_add_global_event_listener
* when you registered that event listener.
*
* Toolkit implementor note: ATK provides a default implementation for
* this virtual method. ATK implementors are discouraged from
* reimplementing this method.
*
* Toolkit implementor note: this method is not intended to be used by
* ATK implementors but by ATK consumers.
*
* Removes the specified event listener
*
* Params:
* listenerId = the id of the event listener to remove
*/
public static void removeGlobalEventListener(uint listenerId)
{
atk_remove_global_event_listener(listenerId);
}
/**
* @listener_id is the value returned by #atk_add_key_event_listener
* when you registered that event listener.
*
* Removes the specified event listener.
*
* Params:
* listenerId = the id of the event listener to remove
*/
public static void removeKeyEventListener(uint listenerId)
{
atk_remove_key_event_listener(listenerId);
}
}
|