2012-01-14 23:22:33 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<interface>
|
2016-02-14 03:53:16 +00:00
|
|
|
<template class="DemoApplicationWindow" parent="GtkApplicationWindow">
|
2016-02-14 02:46:40 +00:00
|
|
|
<property name="title" translatable="yes">Application Class</property>
|
|
|
|
<property name="default-width">200</property>
|
|
|
|
<property name="default-height">200</property>
|
|
|
|
<property name="icon-name">document-open</property>
|
2012-01-14 23:22:33 +00:00
|
|
|
<child>
|
2016-02-14 02:46:40 +00:00
|
|
|
<object class="GtkGrid" id="grid">
|
|
|
|
<property name="visible">1</property>
|
2012-01-14 23:22:33 +00:00
|
|
|
<child>
|
2016-02-14 02:46:40 +00:00
|
|
|
<object class="GtkToolbar" id="toolbar">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="hexpand">1</property>
|
|
|
|
<style>
|
|
|
|
<class name="primary-toolbar"/>
|
|
|
|
</style>
|
|
|
|
<child>
|
|
|
|
<object class="GtkMenuToolButton" id="menutool">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="icon-name">document-open</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkToolButton" id="quit">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="icon-name">application-exit</property>
|
|
|
|
<property name="action-name">app.quit</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkSeparatorToolItem" id="sep">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkToolButton" id="logo">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="icon-name">applications-other</property>
|
|
|
|
<property name="action-name">win.logo</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
2012-01-14 23:22:33 +00:00
|
|
|
</object>
|
2016-02-14 02:46:40 +00:00
|
|
|
<packing>
|
|
|
|
<property name="left-attach">0</property>
|
|
|
|
<property name="top-attach">0</property>
|
|
|
|
</packing>
|
2012-01-14 23:22:33 +00:00
|
|
|
</child>
|
|
|
|
<child>
|
2016-02-14 02:46:40 +00:00
|
|
|
<object class="GtkInfoBar" id="infobar">
|
|
|
|
<property name="no-show-all">1</property>
|
|
|
|
<property name="hexpand">1</property>
|
|
|
|
<child internal-child="content_area">
|
|
|
|
<object class="GtkBox" id="content_area">
|
|
|
|
<child>
|
|
|
|
<object class="GtkLabel" id="message">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="hexpand">1</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child internal-child="action_area">
|
|
|
|
<object class="GtkBox" id="action_area">
|
|
|
|
<child>
|
|
|
|
<object class="GtkButton" id="button">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="valign">center</property>
|
|
|
|
<property name="label" translatable="yes">_OK</property>
|
|
|
|
<property name="use_underline">1</property>
|
2016-02-14 03:53:16 +00:00
|
|
|
<signal name="clicked" handler="clicked_cb"/>
|
2016-02-14 02:46:40 +00:00
|
|
|
</object>
|
|
|
|
</child>
|
2012-01-14 23:22:33 +00:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
2016-02-14 02:46:40 +00:00
|
|
|
<packing>
|
|
|
|
<property name="left-attach">0</property>
|
|
|
|
<property name="top-attach">1</property>
|
|
|
|
</packing>
|
2012-01-14 23:22:33 +00:00
|
|
|
</child>
|
2016-02-14 02:46:40 +00:00
|
|
|
<child>
|
|
|
|
<object class="GtkScrolledWindow" id="sw">
|
|
|
|
<property name="visible">1</property>
|
|
|
|
<property name="shadow-type">in</property>
|
2012-01-14 23:22:33 +00:00
|
|
|
<child>
|
2016-02-14 02:46:40 +00:00
|
|
|
<object class="GtkTextView" id="contents">
|
2015-09-09 21:34:32 +00:00
|
|
|
<property name="visible">1</property>
|
2016-02-14 02:46:40 +00:00
|
|
|
<property name="hexpand">1</property>
|
|
|
|
<property name="vexpand">1</property>
|
|
|
|
<property name="buffer">buffer</property>
|
2012-01-14 23:22:33 +00:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
2016-02-14 02:46:40 +00:00
|
|
|
<packing>
|
|
|
|
<property name="left-attach">0</property>
|
|
|
|
<property name="top-attach">2</property>
|
|
|
|
</packing>
|
2012-01-14 23:22:33 +00:00
|
|
|
</child>
|
|
|
|
<child>
|
2016-02-14 02:46:40 +00:00
|
|
|
<object class="GtkStatusbar" id="status">
|
2015-09-09 21:34:32 +00:00
|
|
|
<property name="hexpand">1</property>
|
2016-02-14 02:46:40 +00:00
|
|
|
<property name="visible">1</property>
|
2012-01-14 23:22:33 +00:00
|
|
|
</object>
|
2016-02-14 02:46:40 +00:00
|
|
|
<packing>
|
|
|
|
<property name="left-attach">0</property>
|
|
|
|
<property name="top-attach">3</property>
|
|
|
|
</packing>
|
2012-01-14 23:22:33 +00:00
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
2016-02-14 02:46:40 +00:00
|
|
|
</template>
|
2012-01-25 03:27:28 +00:00
|
|
|
<menu id="toolmenu">
|
2012-01-25 23:23:25 +00:00
|
|
|
<item>
|
|
|
|
<attribute name="label">File1</attribute>
|
|
|
|
<attribute name="action">win.file1</attribute>
|
|
|
|
</item>
|
2012-01-25 03:27:28 +00:00
|
|
|
</menu>
|
2016-02-14 02:46:40 +00:00
|
|
|
<object class="GtkTextBuffer" id="buffer">
|
2016-02-14 03:53:16 +00:00
|
|
|
<signal name="changed" handler="update_statusbar"/>
|
|
|
|
<signal name="mark-set" handler="mark_set_callback"/>
|
2016-02-14 02:46:40 +00:00
|
|
|
</object>
|
2012-01-14 23:22:33 +00:00
|
|
|
</interface>
|