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