forked from AuroraMiddleware/gtk
Add missing templates to testdialog
This makes the template test cases not crash. The templates also serve to test the new action widget support. https://bugzilla.gnome.org/show_bug.cgi?id=728846
This commit is contained in:
parent
66b6078ae2
commit
516f1e1808
23
tests/mydialog.ui
Normal file
23
tests/mydialog.ui
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<interface>
|
||||||
|
<template class="MyDialog" parent="GtkDialog">
|
||||||
|
<child type="action">
|
||||||
|
<object class="GtkButton" id="cancel_button">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label">_Abort</property>
|
||||||
|
<property name="use_underline">True</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<child type="action">
|
||||||
|
<object class="GtkButton" id="go_button">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label">_Go</property>
|
||||||
|
<property name="use_underline">True</property>
|
||||||
|
<property name="can_default">True</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
<action-widgets>
|
||||||
|
<action-widget response="cancel">cancel_button</action-widget>
|
||||||
|
<action-widget response="apply" default="True">go_button</action-widget>
|
||||||
|
</action-widgets>
|
||||||
|
</template>
|
||||||
|
</interface>
|
14
tests/mydialog2.ui
Normal file
14
tests/mydialog2.ui
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<interface>
|
||||||
|
<template class="MyDialog2" parent="GtkDialog">
|
||||||
|
<child internal-child="vbox">
|
||||||
|
<object class="GtkBox">
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel" id="content">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label">template content</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</template>
|
||||||
|
</interface>
|
@ -216,7 +216,6 @@ show_dialog_from_template (GtkWindow *parent)
|
|||||||
"transient-for", parent,
|
"transient-for", parent,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
add_buttons (dialog);
|
|
||||||
add_content (dialog);
|
add_content (dialog);
|
||||||
|
|
||||||
gtk_dialog_run (GTK_DIALOG (dialog));
|
gtk_dialog_run (GTK_DIALOG (dialog));
|
||||||
@ -238,7 +237,6 @@ show_dialog_flex_template (GtkWindow *parent)
|
|||||||
"use-header-bar", use_header,
|
"use-header-bar", use_header,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
add_buttons (dialog);
|
|
||||||
add_content (dialog);
|
add_content (dialog);
|
||||||
|
|
||||||
gtk_dialog_run (GTK_DIALOG (dialog));
|
gtk_dialog_run (GTK_DIALOG (dialog));
|
||||||
|
Loading…
Reference in New Issue
Block a user