mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 04:10:13 +00:00
d4ff275002
Add a Help item to the gear menu that opens the node-format.md file in a new window. This could be improved if we could parse markdown and apply tags, similar to how we can load pango markup.
28 lines
918 B
XML
28 lines
918 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<object class="GtkWindow" id="window">
|
|
<style>
|
|
<class name="devel"/>
|
|
</style>
|
|
<property name="title" translatable="yes">Help</property>
|
|
<property name="default-width">720</property>
|
|
<property name="default-height">520</property>
|
|
<child>
|
|
<object class="GtkScrolledWindow">
|
|
<child>
|
|
<object class="GtkTextView" id="text_view">
|
|
<property name="wrap-mode">word</property>
|
|
<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="buffer">
|
|
<object class="GtkTextBuffer" id="buffer"/>
|
|
</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|