mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 05:30:28 +00:00
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.
166 lines
6.5 KiB
XML
166 lines
6.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<menu id="gear_menu">
|
|
<section>
|
|
<item>
|
|
<attribute name="label" translatable="yes">_Inspector</attribute>
|
|
<attribute name="action">app.inspector</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">_Keyboard Shortcuts</attribute>
|
|
<attribute name="action">win.show-help-overlay</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">_About GTK Demo</attribute>
|
|
<attribute name="action">app.about</attribute>
|
|
</item>
|
|
</section>
|
|
</menu>
|
|
<object class="GtkTreeStore" id="treestore">
|
|
<columns>
|
|
<column type="gchararray"/>
|
|
<column type="gchararray"/>
|
|
<column type="gchararray"/>
|
|
<column type="gpointer"/>
|
|
<column type="gint"/>
|
|
</columns>
|
|
</object>
|
|
<object class="GtkApplicationWindow" id="window">
|
|
<style>
|
|
<class name="devel"/>
|
|
</style>
|
|
<property name="default-width">800</property>
|
|
<property name="default-height">600</property>
|
|
<child type="titlebar">
|
|
<object class="GtkHeaderBar" id="headerbar">
|
|
<property name="show-title-buttons">1</property>
|
|
<child>
|
|
<object class="GtkButton">
|
|
<property name="valign">center</property>
|
|
<property name="action-name">win.run</property>
|
|
<style>
|
|
<class name="text-button"/>
|
|
</style>
|
|
<child>
|
|
<object class="GtkLabel">
|
|
<property name="label" translatable="yes">Run</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child type="end">
|
|
<object class="GtkMenuButton" id="gear_menu_button">
|
|
<property name="valign">center</property>
|
|
<property name="menu-model">gear_menu</property>
|
|
<property name="icon-name">open-menu-symbolic</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkBox">
|
|
<child>
|
|
<object class="GtkFrame">
|
|
<child>
|
|
<object class="GtkScrolledWindow">
|
|
<property name="width-request">120</property>
|
|
<property name="hscrollbar-policy">never</property>
|
|
<property name="min-content-width">150</property>
|
|
<child>
|
|
<object class="GtkTreeView" id="treeview">
|
|
<property name="model">treestore</property>
|
|
<property name="headers-visible">0</property>
|
|
<child internal-child="selection">
|
|
<object class="GtkTreeSelection" id="treeview-selection">
|
|
<property name="mode">browse</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkTreeViewColumn">
|
|
<child>
|
|
<object class="GtkCellRendererText"/>
|
|
<attributes>
|
|
<attribute name="style">4</attribute>
|
|
<attribute name="text">1</attribute>
|
|
</attributes>
|
|
</child>
|
|
<child>
|
|
<object class="GtkCellRendererText">
|
|
<property name="text"> </property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkNotebook" id="notebook">
|
|
<property name="scrollable">1</property>
|
|
<property name="enable-popup">1</property>
|
|
<property name="show-border">0</property>
|
|
<property name="hexpand">1</property>
|
|
<property name="vexpand">1</property>
|
|
<child>
|
|
<object class="GtkNotebookPage">
|
|
<property name="tab-expand">1</property>
|
|
<property name="child">
|
|
<object class="GtkScrolledWindow">
|
|
<child>
|
|
<object class="GtkTextView" id="info-textview">
|
|
<property name="left-margin">20</property>
|
|
<property name="right-margin">20</property>
|
|
<property name="top-margin">20</property>
|
|
<property name="bottom-margin">20</property>
|
|
<property name="pixels-above-lines">2</property>
|
|
<property name="pixels-below-lines">2</property>
|
|
<property name="editable">0</property>
|
|
<property name="wrap-mode">word</property>
|
|
<property name="cursor-visible">0</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</property>
|
|
<property name="tab">
|
|
<object class="GtkLabel">
|
|
<property name="label" translatable="yes">_Info</property>
|
|
<property name="use-underline">1</property>
|
|
</object>
|
|
</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkNotebookPage">
|
|
<property name="position">1</property>
|
|
<property name="tab-expand">1</property>
|
|
<property name="child">
|
|
<object class="GtkScrolledWindow" id="source-scrolledwindow">
|
|
<child>
|
|
<object class="GtkTextView" id="source-textview">
|
|
<property name="left-margin">20</property>
|
|
<property name="right-margin">20</property>
|
|
<property name="top-margin">20</property>
|
|
<property name="bottom-margin">20</property>
|
|
<property name="editable">0</property>
|
|
<property name="cursor-visible">0</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</property>
|
|
<property name="tab">
|
|
<object class="GtkLabel">
|
|
<property name="label" translatable="yes">Source</property>
|
|
</object>
|
|
</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|