1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module gio.RemoteActionGroupT; 26 27 public import gio.c.functions; 28 public import gio.c.types; 29 public import glib.Str; 30 public import glib.Variant; 31 public import gtkc.giotypes; 32 33 34 /** 35 * The GRemoteActionGroup interface is implemented by #GActionGroup 36 * instances that either transmit action invocations to other processes 37 * or receive action invocations in the local process from other 38 * processes. 39 * 40 * The interface has `_full` variants of the two 41 * methods on #GActionGroup used to activate actions: 42 * g_action_group_activate_action() and 43 * g_action_group_change_action_state(). These variants allow a 44 * "platform data" #GVariant to be specified: a dictionary providing 45 * context for the action invocation (for example: timestamps, startup 46 * notification IDs, etc). 47 * 48 * #GDBusActionGroup implements #GRemoteActionGroup. This provides a 49 * mechanism to send platform data for action invocations over D-Bus. 50 * 51 * Additionally, g_dbus_connection_export_action_group() will check if 52 * the exported #GActionGroup implements #GRemoteActionGroup and use the 53 * `_full` variants of the calls if available. This 54 * provides a mechanism by which to receive platform data for action 55 * invocations that arrive by way of D-Bus. 56 */ 57 public template RemoteActionGroupT(TStruct) 58 { 59 /** Get the main Gtk struct */ 60 public GRemoteActionGroup* getRemoteActionGroupStruct(bool transferOwnership = false) 61 { 62 if (transferOwnership) 63 ownedRef = false; 64 return cast(GRemoteActionGroup*)getStruct(); 65 } 66 67 68 /** 69 * Activates the remote action. 70 * 71 * This is the same as g_action_group_activate_action() except that it 72 * allows for provision of "platform data" to be sent along with the 73 * activation request. This typically contains details such as the user 74 * interaction timestamp or startup notification information. 75 * 76 * @platform_data must be non-%NULL and must have the type 77 * %G_VARIANT_TYPE_VARDICT. If it is floating, it will be consumed. 78 * 79 * Params: 80 * actionName = the name of the action to activate 81 * parameter = the optional parameter to the activation 82 * platformData = the platform data to send 83 * 84 * Since: 2.32 85 */ 86 public void activateActionFull(string actionName, Variant parameter, Variant platformData) 87 { 88 g_remote_action_group_activate_action_full(getRemoteActionGroupStruct(), Str.toStringz(actionName), (parameter is null) ? null : parameter.getVariantStruct(), (platformData is null) ? null : platformData.getVariantStruct()); 89 } 90 91 /** 92 * Changes the state of a remote action. 93 * 94 * This is the same as g_action_group_change_action_state() except that 95 * it allows for provision of "platform data" to be sent along with the 96 * state change request. This typically contains details such as the 97 * user interaction timestamp or startup notification information. 98 * 99 * @platform_data must be non-%NULL and must have the type 100 * %G_VARIANT_TYPE_VARDICT. If it is floating, it will be consumed. 101 * 102 * Params: 103 * actionName = the name of the action to change the state of 104 * value = the new requested value for the state 105 * platformData = the platform data to send 106 * 107 * Since: 2.32 108 */ 109 public void changeActionStateFull(string actionName, Variant value, Variant platformData) 110 { 111 g_remote_action_group_change_action_state_full(getRemoteActionGroupStruct(), Str.toStringz(actionName), (value is null) ? null : value.getVariantStruct(), (platformData is null) ? null : platformData.getVariantStruct()); 112 } 113 }