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 gtk.ShortcutsSection;
26 
27 private import gobject.Signals;
28 private import gtk.Box;
29 private import gtk.c.functions;
30 public  import gtk.c.types;
31 public  import gtkc.gtktypes;
32 private import std.algorithm;
33 
34 
35 /**
36  * A GtkShortcutsSection collects all the keyboard shortcuts and gestures
37  * for a major application mode. If your application needs multiple sections,
38  * you should give each section a unique #GtkShortcutsSection:section-name and
39  * a #GtkShortcutsSection:title that can be shown in the section selector of
40  * the GtkShortcutsWindow.
41  * 
42  * The #GtkShortcutsSection:max-height property can be used to influence how
43  * the groups in the section are distributed over pages and columns.
44  * 
45  * This widget is only meant to be used with #GtkShortcutsWindow.
46  */
47 public class ShortcutsSection : Box
48 {
49 	/** the main Gtk struct */
50 	protected GtkShortcutsSection* gtkShortcutsSection;
51 
52 	/** Get the main Gtk struct */
53 	public GtkShortcutsSection* getShortcutsSectionStruct(bool transferOwnership = false)
54 	{
55 		if (transferOwnership)
56 			ownedRef = false;
57 		return gtkShortcutsSection;
58 	}
59 
60 	/** the main Gtk struct as a void* */
61 	protected override void* getStruct()
62 	{
63 		return cast(void*)gtkShortcutsSection;
64 	}
65 
66 	/**
67 	 * Sets our main struct and passes it to the parent class.
68 	 */
69 	public this (GtkShortcutsSection* gtkShortcutsSection, bool ownedRef = false)
70 	{
71 		this.gtkShortcutsSection = gtkShortcutsSection;
72 		super(cast(GtkBox*)gtkShortcutsSection, ownedRef);
73 	}
74 
75 
76 	/** */
77 	public static GType getType()
78 	{
79 		return gtk_shortcuts_section_get_type();
80 	}
81 
82 	protected class OnChangeCurrentPageDelegateWrapper
83 	{
84 		bool delegate(int, ShortcutsSection) dlg;
85 		gulong handlerId;
86 
87 		this(bool delegate(int, ShortcutsSection) dlg)
88 		{
89 			this.dlg = dlg;
90 			onChangeCurrentPageListeners ~= this;
91 		}
92 
93 		void remove(OnChangeCurrentPageDelegateWrapper source)
94 		{
95 			foreach(index, wrapper; onChangeCurrentPageListeners)
96 			{
97 				if (wrapper.handlerId == source.handlerId)
98 				{
99 					onChangeCurrentPageListeners[index] = null;
100 					onChangeCurrentPageListeners = std.algorithm.remove(onChangeCurrentPageListeners, index);
101 					break;
102 				}
103 			}
104 		}
105 	}
106 	OnChangeCurrentPageDelegateWrapper[] onChangeCurrentPageListeners;
107 
108 	/** */
109 	gulong addOnChangeCurrentPage(bool delegate(int, ShortcutsSection) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
110 	{
111 		auto wrapper = new OnChangeCurrentPageDelegateWrapper(dlg);
112 		wrapper.handlerId = Signals.connectData(
113 			this,
114 			"change-current-page",
115 			cast(GCallback)&callBackChangeCurrentPage,
116 			cast(void*)wrapper,
117 			cast(GClosureNotify)&callBackChangeCurrentPageDestroy,
118 			connectFlags);
119 		return wrapper.handlerId;
120 	}
121 
122 	extern(C) static int callBackChangeCurrentPage(GtkShortcutsSection* shortcutssectionStruct, int object, OnChangeCurrentPageDelegateWrapper wrapper)
123 	{
124 		return wrapper.dlg(object, wrapper.outer);
125 	}
126 
127 	extern(C) static void callBackChangeCurrentPageDestroy(OnChangeCurrentPageDelegateWrapper wrapper, GClosure* closure)
128 	{
129 		wrapper.remove(wrapper);
130 	}
131 }