-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GtkScaleButton: Define children with a GtkBuilder template
- Loading branch information
Showing
5 changed files
with
183 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<interface domain="gtk30"> | ||
<!-- interface-requires gtk+ 3.10 --> | ||
<!-- interface-requires gtkprivate 3.10 --> | ||
<template class="GtkScaleButton" parent="GtkButton"> | ||
<property name="can_focus">True</property> | ||
<property name="receives_default">True</property> | ||
<property name="relief">none</property> | ||
<property name="focus_on_click">False</property> | ||
<child> | ||
<object class="GtkImage" id="image"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="stock">gtk-missing-image</property> | ||
</object> | ||
</child> | ||
</template> | ||
<object class="GtkAdjustment" id="adjustment"> | ||
<property name="upper">100</property> | ||
<property name="step_increment">2</property> | ||
<property name="page_increment">20</property> | ||
</object> | ||
<object class="GtkWindow" id="dock"> | ||
<property name="name">gtk-scalebutton-popup-window</property> | ||
<property name="can_focus">False</property> | ||
<property name="type">popup</property> | ||
<property name="decorated">False</property> | ||
<signal name="button-press-event" handler="cb_dock_button_press" swapped="no"/> | ||
<signal name="grab-broken-event" handler="cb_dock_grab_broken_event" swapped="no"/> | ||
<signal name="grab-notify" handler="cb_dock_grab_notify" swapped="no"/> | ||
<signal name="key-release-event" handler="cb_dock_key_release" swapped="no"/> | ||
<child> | ||
<object class="GtkFrame" id="frame1"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="label_xalign">0</property> | ||
<property name="shadow_type">out</property> | ||
<child> | ||
<object class="GtkBox" id="box"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="orientation">vertical</property> | ||
<child> | ||
<object class="GtkButton" id="plus_button"> | ||
<property name="label">+</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">True</property> | ||
<property name="receives_default">True</property> | ||
<property name="relief">none</property> | ||
<signal name="button-press-event" handler="cb_button_press" swapped="no"/> | ||
<signal name="button-release-event" handler="cb_button_release" swapped="no"/> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkScaleButtonScale" id="scale"> | ||
<property name="height_request">100</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">True</property> | ||
<property name="orientation">vertical</property> | ||
<property name="adjustment">adjustment</property> | ||
<property name="inverted">True</property> | ||
<property name="round_digits">1</property> | ||
<property name="draw_value">False</property> | ||
<signal name="grab-notify" handler="cb_scale_grab_notify" swapped="no"/> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">True</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkButton" id="minus_button"> | ||
<property name="label">-</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">True</property> | ||
<property name="receives_default">True</property> | ||
<property name="relief">none</property> | ||
<signal name="button-press-event" handler="cb_button_press" swapped="no"/> | ||
<signal name="button-release-event" handler="cb_button_release" swapped="no"/> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">2</property> | ||
</packing> | ||
</child> | ||
</object> | ||
</child> | ||
<child type="label_item"> | ||
<placeholder/> | ||
</child> | ||
</object> | ||
</child> | ||
</object> | ||
</interface> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters