forked from AuroraMiddleware/gtk
c250dddb00
Most of our .ui files were still using the gtk30 domain, despite the library having switched to gtk40. Fix this.
51 lines
2.1 KiB
XML
51 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface domain="gtk40">
|
|
<!-- interface-requires gtk+ 3.10 -->
|
|
<template class="GtkColorChooserDialog" parent="GtkDialog">
|
|
<property name="title" translatable="yes">Select a Color</property>
|
|
<property name="type-hint">dialog</property>
|
|
<property name="resizable">0</property>
|
|
<child internal-child="vbox">
|
|
<object class="GtkBox" id="dialog-vbox1">
|
|
<property name="orientation">vertical</property>
|
|
<property name="spacing">2</property>
|
|
<property name="margin">5</property>
|
|
<child>
|
|
<object class="GtkColorChooserWidget" id="chooser">
|
|
<property name="visible">1</property>
|
|
<property name="orientation">vertical</property>
|
|
<property name="margin">5</property>
|
|
<property name="rgba">rgb(255,255,255)</property>
|
|
<property name="expand">1</property>
|
|
<signal name="color-activated" handler="color_activated_cb" swapped="no"/>
|
|
<signal name="notify::rgba" handler="propagate_notify" swapped="no"/>
|
|
<signal name="notify::show-editor" handler="propagate_notify" swapped="no"/>
|
|
</object>
|
|
<packing>
|
|
<property name="position">1</property>
|
|
</packing>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child type="action">
|
|
<object class="GtkButton" id="cancel_button">
|
|
<property name="visible">1</property>
|
|
<property name="use-underline">1</property>
|
|
<property name="label" translatable="yes">_Cancel</property>
|
|
</object>
|
|
</child>
|
|
<child type="action">
|
|
<object class="GtkButton" id="ok_button">
|
|
<property name="visible">1</property>
|
|
<property name="label" translatable="yes">_Select</property>
|
|
<property name="use-underline">1</property>
|
|
<property name="can-default">1</property>
|
|
</object>
|
|
</child>
|
|
<action-widgets>
|
|
<action-widget response="cancel">cancel_button</action-widget>
|
|
<action-widget response="ok" default="true">ok_button</action-widget>
|
|
</action-widgets>
|
|
</template>
|
|
</interface>
|