ScaleButton

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.

Constructors

this
this(GtkScaleButton* gtkScaleButton)

Sets our main struct and passes it to the parent class

this
this(GtkIconSize size, double min, double max, double step, string[] icons)

Creates a GtkScaleButton, with a range between min and max, with a stepping of step. Since 2.12

Members

Functions

addOnPopdown
void addOnPopdown(void delegate(ScaleButton) dlg, ConnectFlags connectFlags)

The ::popdown signal is a keybinding signal which gets emitted to popdown the scale widget. The default binding for this signal is Escape. Since 2.12

addOnPopup
void addOnPopup(void delegate(ScaleButton) dlg, ConnectFlags connectFlags)

The ::popup signal is a keybinding signal which gets emitted to popup the scale widget. The default bindings for this signal are Space, Enter and Return. Since 2.12

addOnValueChanged
void addOnValueChanged(void delegate(gdouble, ScaleButton) dlg, ConnectFlags connectFlags)

The ::value-changed signal is emitted when the value field has changed. Since 2.12

getAdjustment
Adjustment getAdjustment()

Gets the GtkAdjustment associated with the GtkScaleButton's scale. See gtk_range_get_adjustment() for details. Since 2.12

getMinusButton
Widget getMinusButton()

Retrieves the minus button of the GtkScaleButton. Since 2.14

getPlusButton
Widget getPlusButton()

Retrieves the plus button of the GtkScaleButton. Since 2.14

getPopup
Widget getPopup()

Retrieves the popup of the GtkScaleButton. Since 2.14

getScaleButtonStruct
GtkScaleButton* getScaleButtonStruct()
Undocumented in source. Be warned that the author may not have intended to support it.
getStruct
void* getStruct()

the main Gtk struct as a void*

getValue
double getValue()

Gets the current value of the scale button. Since 2.12

setAdjustment
void setAdjustment(Adjustment adjustment)

Sets the GtkAdjustment to be used as a model for the GtkScaleButton's scale. See gtk_range_set_adjustment() for details. Since 2.12

setIcons
void setIcons(string[] icons)

Sets the icons to be used by the scale button. For details, see the "icons" property. Since 2.12

setStruct
void setStruct(GObject* obj)
Undocumented in source. Be warned that the author may not have intended to support it.
setValue
void setValue(double value)

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 "value-changed" signal if the value changes. Since 2.12

Mixins

__anonymous
mixin OrientableT!(GtkScaleButton)
Undocumented in source.

Static functions

callBackPopdown
void callBackPopdown(GtkScaleButton* buttonStruct, ScaleButton _scaleButton)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackPopup
void callBackPopup(GtkScaleButton* buttonStruct, ScaleButton _scaleButton)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackValueChanged
void callBackValueChanged(GtkScaleButton* buttonStruct, gdouble value, ScaleButton _scaleButton)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

connectedSignals
int[string] connectedSignals;
gtkScaleButton
GtkScaleButton* gtkScaleButton;

the main Gtk struct

onPopdownListeners
void delegate(ScaleButton)[] onPopdownListeners;
Undocumented in source.
onPopupListeners
void delegate(ScaleButton)[] onPopupListeners;
Undocumented in source.
onValueChangedListeners
void delegate(gdouble, ScaleButton)[] onValueChangedListeners;
Undocumented in source.

Inherited Members

From Button

gtkButton
GtkButton* gtkButton;

the main Gtk struct

getButtonStruct
GtkButton* getButtonStruct()
Undocumented in source. Be warned that the author may not have intended to support it.
getStruct
void* getStruct()

the main Gtk struct as a void*

setStruct
void setStruct(GObject* obj)
Undocumented in source. Be warned that the author may not have intended to support it.
__anonymous
mixin ActionableT!(GtkButton)
Undocumented in source.
__anonymous
mixin ActivatableT!(GtkButton)
Undocumented in source.
setIconSize
void setIconSize(IconSize iconSize)
getIconSize
IconSize getIconSize()
connectedSignals
int[string] connectedSignals;
onActivateListeners
void delegate(Button)[] onActivateListeners;
Undocumented in source.
addOnActivate
void addOnActivate(void delegate(Button) dlg, ConnectFlags connectFlags)

The ::activate signal on GtkButton is an action signal and emitting it causes the button to animate press then release. Applications should never connect to this signal, but use the "clicked" signal.

callBackActivate
void callBackActivate(GtkButton* widgetStruct, Button _button)
Undocumented in source. Be warned that the author may not have intended to support it.
onClickedListeners
void delegate(Button)[] onClickedListeners;
Undocumented in source.
addOnClicked
void addOnClicked(void delegate(Button) dlg, ConnectFlags connectFlags)

Emitted when the button has been activated (pressed and released).

callBackClicked
void callBackClicked(GtkButton* buttonStruct, Button _button)
Undocumented in source. Be warned that the author may not have intended to support it.
onEnterListeners
void delegate(Button)[] onEnterListeners;
Undocumented in source.
addOnEnter
void addOnEnter(void delegate(Button) dlg, ConnectFlags connectFlags)

Warning GtkButton::enter has been deprecated since version 2.8 and should not be used in newly-written code. Use the "enter-notify-event" signal. Emitted when the pointer enters the button.

callBackEnter
void callBackEnter(GtkButton* buttonStruct, Button _button)
Undocumented in source. Be warned that the author may not have intended to support it.
onLeaveListeners
void delegate(Button)[] onLeaveListeners;
Undocumented in source.
addOnLeave
void addOnLeave(void delegate(Button) dlg, ConnectFlags connectFlags)

Warning GtkButton::leave has been deprecated since version 2.8 and should not be used in newly-written code. Use the "leave-notify-event" signal. Emitted when the pointer leaves the button.

callBackLeave
void callBackLeave(GtkButton* buttonStruct, Button _button)
Undocumented in source. Be warned that the author may not have intended to support it.
onPressedListeners
void delegate(Button)[] onPressedListeners;
Undocumented in source.
addOnPressed
void addOnPressed(void delegate(Button) dlg, ConnectFlags connectFlags)

Warning GtkButton::pressed has been deprecated since version 2.8 and should not be used in newly-written code. Use the "button-press-event" signal. Emitted when the button is pressed.

callBackPressed
void callBackPressed(GtkButton* buttonStruct, Button _button)
Undocumented in source. Be warned that the author may not have intended to support it.
onReleasedListeners
void delegate(Button)[] onReleasedListeners;
Undocumented in source.
addOnReleased
void addOnReleased(void delegate(Button) dlg, ConnectFlags connectFlags)

Warning GtkButton::released has been deprecated since version 2.8 and should not be used in newly-written code. Use the "button-release-event" signal. Emitted when the button is released.

callBackReleased
void callBackReleased(GtkButton* buttonStruct, Button _button)
Undocumented in source. Be warned that the author may not have intended to support it.
pressed
void pressed()

Warning gtk_button_pressed has been deprecated since version 2.20 and should not be used in newly-written code. Use the "button-press-event" signal. Emits a "pressed" signal to the given GtkButton.

released
void released()

Warning gtk_button_released has been deprecated since version 2.20 and should not be used in newly-written code. Use the "button-release-event" signal. Emits a "released" signal to the given GtkButton.

clicked
void clicked()

Emits a "clicked" signal to the given GtkButton.

enter
void enter()

Warning gtk_button_enter has been deprecated since version 2.20 and should not be used in newly-written code. Use the "enter-notify-event" signal. Emits a "enter" signal to the given GtkButton.

leave
void leave()

Warning gtk_button_leave has been deprecated since version 2.20 and should not be used in newly-written code. Use the "leave-notify-event" signal. Emits a "leave" signal to the given GtkButton.

setRelief
void setRelief(GtkReliefStyle newstyle)

Sets the relief style of the edges of the given GtkButton widget. Three styles exist, GTK_RELIEF_NORMAL, GTK_RELIEF_HALF, GTK_RELIEF_NONE. The default style is, as one can guess, GTK_RELIEF_NORMAL.

getRelief
GtkReliefStyle getRelief()

Returns the current relief style of the given GtkButton.

getLabel
string getLabel()

Fetches the text from the label of the button, as set by gtk_button_set_label(). If the label text has not been set the return value will be NULL. This will be the case if you create an empty button with gtk_button_new() to use as a container.

setLabel
void setLabel(string label)

Sets the text of the label of the button to str. This text is also used to select the stock item if gtk_button_set_use_stock() is used. This will also clear any previously set labels.

getUseStock
int getUseStock()

Warning gtk_button_get_use_stock is deprecated and should not be used in newly-written code. 3.10 Returns whether the button label is a stock item.

setUseStock
void setUseStock(int useStock)

Warning gtk_button_set_use_stock is deprecated and should not be used in newly-written code. 3.10 If TRUE, the label set on the button is used as a stock id to select the stock item for the button.

getUseUnderline
int getUseUnderline()

Returns whether an embedded underline in the button label indicates a mnemonic. See gtk_button_set_use_underline().

setUseUnderline
void setUseUnderline(int useUnderline)

If true, an underline in the text of the button label indicates the next character should be used for the mnemonic accelerator key.

setFocusOnClick
void setFocusOnClick(int focusOnClick)

Sets whether the button will grab focus when it is clicked with the mouse. Making mouse clicks not grab focus is useful in places like toolbars where you don't want the keyboard focus removed from the main area of the application. Since 2.4

getFocusOnClick
int getFocusOnClick()

Returns whether the button grabs focus when it is clicked with the mouse. See gtk_button_set_focus_on_click(). Since 2.4

setAlignment
void setAlignment(float xalign, float yalign)

Sets the alignment of the child. This property has no effect unless the child is a GtkMisc or a GtkAlignment. Since 2.4

getAlignment
void getAlignment(float xalign, float yalign)

Gets the alignment of the child in the button. Since 2.4

setImage
void setImage(Widget image)

Set the image of button to the given widget. The image will be displayed if the label text is NULL or if "always-show-image" is TRUE. You don't have to call gtk_widget_show() on image yourself. Since 2.6

getImage
Widget getImage()

Gets the widget that is currenty set as the image of button. This may have been explicitly set by gtk_button_set_image() or constructed by gtk_button_new_from_stock(). Since 2.6

setImagePosition
void setImagePosition(GtkPositionType position)

Sets the position of the image relative to the text inside the button. Since 2.10

getImagePosition
GtkPositionType getImagePosition()

Gets the position of the image relative to the text inside the button. Since 2.10

setAlwaysShowImage
void setAlwaysShowImage(int alwaysShow)

If TRUE, the button will always show the image in addition to the label, if available. Use this property if the button would be useless or hard to use without the image.

getAlwaysShowImage
int getAlwaysShowImage()

Returns whether the button will always show the image in addition to the label, if available.

getEventWindow
Window getEventWindow()

Returns the button's event window if it is realized, NULL otherwise. This function should be rarely needed. Since 2.22

From OrientableIF

getOrientableTStruct
GtkOrientable* getOrientableTStruct()
Undocumented in source.
getStruct
void* getStruct()

the main Gtk struct as a void*

getOrientation
GtkOrientation getOrientation()

Retrieves the orientation of the orientable. Since 2.16

setOrientation
void setOrientation(GtkOrientation orientation)

Sets the orientation of the orientable. Since 2.16

Meta