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.RemoteActionGroupIF;
26 
27 private import gio.c.functions;
28 public  import gio.c.types;
29 private import glib.Str;
30 private 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 interface RemoteActionGroupIF{
58 	/** Get the main Gtk struct */
59 	public GRemoteActionGroup* getRemoteActionGroupStruct(bool transferOwnership = false);
60 
61 	/** the main Gtk struct as a void* */
62 	protected void* getStruct();
63 
64 
65 	/** */
66 	public static GType getType()
67 	{
68 		return g_remote_action_group_get_type();
69 	}
70 
71 	/**
72 	 * Activates the remote action.
73 	 *
74 	 * This is the same as g_action_group_activate_action() except that it
75 	 * allows for provision of "platform data" to be sent along with the
76 	 * activation request.  This typically contains details such as the user
77 	 * interaction timestamp or startup notification information.
78 	 *
79 	 * @platform_data must be non-%NULL and must have the type
80 	 * %G_VARIANT_TYPE_VARDICT.  If it is floating, it will be consumed.
81 	 *
82 	 * Params:
83 	 *     actionName = the name of the action to activate
84 	 *     parameter = the optional parameter to the activation
85 	 *     platformData = the platform data to send
86 	 *
87 	 * Since: 2.32
88 	 */
89 	public void activateActionFull(string actionName, Variant parameter, Variant platformData);
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 }