File: ScaleButton.d

package info (click to toggle)
gtk-d 3.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,204 kB
  • sloc: javascript: 565; sh: 71; makefile: 23
file content (298 lines) | stat: -rw-r--r-- 7,607 bytes parent folder | download | duplicates (5)
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
 * 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 gtk.ScaleButton;

private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gobject.Signals;
private import gtk.Adjustment;
private import gtk.Button;
private import gtk.OrientableIF;
private import gtk.OrientableT;
private import gtk.Widget;
private import gtk.c.functions;
public  import gtk.c.types;
public  import gtkc.gtktypes;
private import std.algorithm;


/**
 * #GtkScaleButton provides a button which pops up a scale widget.
 * This kind of widget is commonly used for volume controls in multimedia
 * applications, and GTK+ provides a #GtkVolumeButton subclass that
 * is tailored for this use case.
 * 
 * # CSS nodes
 * 
 * GtkScaleButton has a single CSS node with name button. To differentiate
 * it from a plain #GtkButton, it gets the .scale style class.
 */
public class ScaleButton : Button, OrientableIF
{
	/** the main Gtk struct */
	protected GtkScaleButton* gtkScaleButton;

	/** Get the main Gtk struct */
	public GtkScaleButton* getScaleButtonStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gtkScaleButton;
	}

	/** the main Gtk struct as a void* */
	protected override void* getStruct()
	{
		return cast(void*)gtkScaleButton;
	}

	/**
	 * Sets our main struct and passes it to the parent class.
	 */
	public this (GtkScaleButton* gtkScaleButton, bool ownedRef = false)
	{
		this.gtkScaleButton = gtkScaleButton;
		super(cast(GtkButton*)gtkScaleButton, ownedRef);
	}

	// add the Orientable capabilities
	mixin OrientableT!(GtkScaleButton);


	/** */
	public static GType getType()
	{
		return gtk_scale_button_get_type();
	}

	/**
	 * Creates a #GtkScaleButton, with a range between @min and @max, with
	 * a stepping of @step.
	 *
	 * Params:
	 *     size = a stock icon size (#GtkIconSize)
	 *     min = the minimum value of the scale (usually 0)
	 *     max = the maximum value of the scale (usually 100)
	 *     step = the stepping of value when a scroll-wheel event,
	 *         or up/down arrow event occurs (usually 2)
	 *     icons = a %NULL-terminated
	 *         array of icon names, or %NULL if you want to set the list
	 *         later with gtk_scale_button_set_icons()
	 *
	 * Returns: a new #GtkScaleButton
	 *
	 * Since: 2.12
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(GtkIconSize size, double min, double max, double step, string[] icons)
	{
		auto p = gtk_scale_button_new(size, min, max, step, Str.toStringzArray(icons));

		if(p is null)
		{
			throw new ConstructionException("null returned by new");
		}

		this(cast(GtkScaleButton*) p);
	}

	/**
	 * Gets the #GtkAdjustment associated with the #GtkScaleButton’s scale.
	 * See gtk_range_get_adjustment() for details.
	 *
	 * Returns: the adjustment associated with the scale
	 *
	 * Since: 2.12
	 */
	public Adjustment getAdjustment()
	{
		auto p = gtk_scale_button_get_adjustment(gtkScaleButton);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(Adjustment)(cast(GtkAdjustment*) p);
	}

	/**
	 * Retrieves the minus button of the #GtkScaleButton.
	 *
	 * Returns: the minus button of the #GtkScaleButton as a #GtkButton
	 *
	 * Since: 2.14
	 */
	public Button getMinusButton()
	{
		auto p = gtk_scale_button_get_minus_button(gtkScaleButton);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(Button)(cast(GtkButton*) p);
	}

	/**
	 * Retrieves the plus button of the #GtkScaleButton.
	 *
	 * Returns: the plus button of the #GtkScaleButton as a #GtkButton
	 *
	 * Since: 2.14
	 */
	public Button getPlusButton()
	{
		auto p = gtk_scale_button_get_plus_button(gtkScaleButton);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(Button)(cast(GtkButton*) p);
	}

	/**
	 * Retrieves the popup of the #GtkScaleButton.
	 *
	 * Returns: the popup of the #GtkScaleButton
	 *
	 * Since: 2.14
	 */
	public Widget getPopup()
	{
		auto p = gtk_scale_button_get_popup(gtkScaleButton);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(Widget)(cast(GtkWidget*) p);
	}

	/**
	 * Gets the current value of the scale button.
	 *
	 * Returns: current value of the scale button
	 *
	 * Since: 2.12
	 */
	public double getValue()
	{
		return gtk_scale_button_get_value(gtkScaleButton);
	}

	/**
	 * Sets the #GtkAdjustment to be used as a model
	 * for the #GtkScaleButton’s scale.
	 * See gtk_range_set_adjustment() for details.
	 *
	 * Params:
	 *     adjustment = a #GtkAdjustment
	 *
	 * Since: 2.12
	 */
	public void setAdjustment(Adjustment adjustment)
	{
		gtk_scale_button_set_adjustment(gtkScaleButton, (adjustment is null) ? null : adjustment.getAdjustmentStruct());
	}

	/**
	 * Sets the icons to be used by the scale button.
	 * For details, see the #GtkScaleButton:icons property.
	 *
	 * Params:
	 *     icons = a %NULL-terminated array of icon names
	 *
	 * Since: 2.12
	 */
	public void setIcons(string[] icons)
	{
		gtk_scale_button_set_icons(gtkScaleButton, Str.toStringzArray(icons));
	}

	/**
	 * Sets the current value of the scale; if the value is outside
	 * the minimum or maximum range values, it will be clamped to fit
	 * inside them. The scale button emits the #GtkScaleButton::value-changed
	 * signal if the value changes.
	 *
	 * Params:
	 *     value = new value of the scale button
	 *
	 * Since: 2.12
	 */
	public void setValue(double value)
	{
		gtk_scale_button_set_value(gtkScaleButton, value);
	}

	/**
	 * The ::popdown signal is a
	 * [keybinding signal][GtkBindingSignal]
	 * which gets emitted to popdown the scale widget.
	 *
	 * The default binding for this signal is Escape.
	 *
	 * Since: 2.12
	 */
	gulong addOnPopdown(void delegate(ScaleButton) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		return Signals.connect(this, "popdown", dlg, connectFlags ^ ConnectFlags.SWAPPED);
	}

	/**
	 * The ::popup signal is a
	 * [keybinding signal][GtkBindingSignal]
	 * which gets emitted to popup the scale widget.
	 *
	 * The default bindings for this signal are Space, Enter and Return.
	 *
	 * Since: 2.12
	 */
	gulong addOnPopup(void delegate(ScaleButton) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		return Signals.connect(this, "popup", dlg, connectFlags ^ ConnectFlags.SWAPPED);
	}

	/**
	 * The ::value-changed signal is emitted when the value field has
	 * changed.
	 *
	 * Params:
	 *     value = the new value
	 *
	 * Since: 2.12
	 */
	gulong addOnValueChanged(void delegate(double, ScaleButton) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		return Signals.connect(this, "value-changed", dlg, connectFlags ^ ConnectFlags.SWAPPED);
	}
}