forked from AuroraMiddleware/gtk
c2e4e1af73
Use window title, or custom title widget if it's set. Remove 'title' property. Update demos and tests to set the title on the window instead of headerbar.
82 lines
3.1 KiB
XML
82 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<template class="ConstraintEditorWindow" parent="GtkApplicationWindow">
|
|
<style>
|
|
<class name="devel"/>
|
|
</style>
|
|
<property name="title" translatable="yes">GTK Constraint Editor</property>
|
|
<property name="default-width">1024</property>
|
|
<property name="default-height">768</property>
|
|
<child type="titlebar">
|
|
<object class="GtkHeaderBar" id="header">
|
|
<property name="show-title-buttons">1</property>
|
|
<child type="start">
|
|
<object class="GtkButton">
|
|
<property name="icon-name">document-open-symbolic</property>
|
|
<property name="tooltip-text">Open ui file</property>
|
|
<signal name="clicked" handler="open_cb"/>
|
|
</object>
|
|
</child>
|
|
<child type="start">
|
|
<object class="GtkButton">
|
|
<property name="icon-name">document-save-symbolic</property>
|
|
<property name="tooltip-text">Save to ui file</property>
|
|
<signal name="clicked" handler="save_cb"/>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkPaned" id="paned">
|
|
<property name="orientation">horizontal</property>
|
|
<child>
|
|
<object class="GtkBox">
|
|
<property name="orientation">vertical</property>
|
|
<child>
|
|
<object class="GtkBox">
|
|
<property name="orientation">horizontal</property>
|
|
<child>
|
|
<object class="GtkButton">
|
|
<property name="label">Add Child</property>
|
|
<signal name="clicked" handler="add_child" swapped="yes"/>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkButton">
|
|
<property name="label">Add Guide</property>
|
|
<signal name="clicked" handler="add_guide" swapped="yes"/>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkButton">
|
|
<property name="label">Add Constraint</property>
|
|
<signal name="clicked" handler="add_constraint" swapped="yes"/>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkScrolledWindow">
|
|
<property name="hscrollbar-policy">never</property>
|
|
<property name="vscrollbar-policy">automatic</property>
|
|
<property name="vexpand">1</property>
|
|
<child>
|
|
<object class="GtkListBox" id="list">
|
|
<property name="show-separators">1</property>
|
|
<property name="selection-mode">none</property>
|
|
<signal name="row-activated" handler="row_activated"/>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="ConstraintView" id="view">
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|