1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
<?xml version="1.0" ?>
<glade-interface>
<widget class="GtkUIManager" id="uimanager">
<child>
<widget class="GtkActionGroup" id="DefaultActions">
<child>
<widget class="GtkAction" id="Quit">
<property name="name">Quit</property>
<property name="label">_Quit</property>
<property name="tooltip">Quit the program</property>
<property name="stock_id">gtk-quit</property>
<signal handler="on_quit__activated" name="activate"/>
</widget>
</child>
<child>
<widget class="GtkAction" id="SaveAs">
<property name="name">SaveAs</property>
<property name="label">Save _As...</property>
<property name="tooltip">Save with a different name</property>
<property name="stock_id">gtk-save-as</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="EditMenu">
<property name="name">EditMenu</property>
<property name="label">_Edit</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="Copy">
<property name="name">Copy</property>
<property name="label">_Copy</property>
<property name="tooltip">Copy selected object into the clipboard</property>
<property name="stock_id">gtk-copy</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="FileMenu">
<property name="name">FileMenu</property>
<property name="label">_File</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="Save">
<property name="name">Save</property>
<property name="label">_Save</property>
<property name="tooltip">Save a file</property>
<property name="stock_id">gtk-save</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="Cut">
<property name="name">Cut</property>
<property name="label">C_ut</property>
<property name="tooltip">Cut selected object into the clipboard</property>
<property name="stock_id">gtk-cut</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="Paste">
<property name="name">Paste</property>
<property name="label">_Paste</property>
<property name="tooltip">Paste object from the Clipboard</property>
<property name="stock_id">gtk-paste</property>
</widget>
</child>
<child>
<widget class="GtkAction" id="New">
<property name="name">New</property>
<property name="label">_New</property>
<property name="tooltip">Create a new file</property>
<property name="stock_id">gtk-new</property>
<signal handler="on_new__activated" name="activate"/>
</widget>
</child>
<child>
<widget class="GtkAction" id="Open">
<property name="name">Open</property>
<property name="label">_Open</property>
<property name="tooltip">Open a file</property>
<property name="stock_id">gtk-open</property>
</widget>
</child>
</widget>
</child>
<ui id="initial-state"><![CDATA[<ui><menubar action="menubar1" name="menubar1">
<menu action="FileMenu" name="FileMenu">
<menuitem action="New" name="New"/>
<menuitem action="Open" name="Open"/>
<menuitem action="Save" name="Save"/>
<menuitem action="SaveAs" name="SaveAs"/>
<separator/>
<menuitem action="Quit" name="Quit"/>
</menu>
<menu action="EditMenu" name="EditMenu">
<menuitem action="Copy" name="Copy"/>
<menuitem action="Cut" name="Cut"/>
<menuitem action="Paste" name="Paste"/>
</menu>
</menubar><toolbar action="toolbar1" name="toolbar1">
<toolitem action="New" name="New"/>
<toolitem action="Open" name="Open"/>
<toolitem action="Save" name="Save"/>
<separator/>
<toolitem action="Copy" name="Copy"/>
<toolitem action="Cut" name="Cut"/>
<toolitem action="Paste" name="Paste"/>
</toolbar></ui>]]></ui>
</widget>
<widget class="GtkWindow" id="window1">
<property name="resize_mode">queue</property>
<property name="type">toplevel</property>
<property name="events"></property>
<property name="visible">False</property>
<child>
<widget class="GtkVBox" id="vbox1">
<property name="events"></property>
<property name="visible">True</property>
<signal handler="on_window1__destroy" name="destroy" after="False"/>
<child>
<widget constructor="initial-state" class="GtkMenuBar" id="menubar1">
<property name="events"></property>
<property name="visible">True</property>
</widget>
<packing>
<property name="expand">False</property>
</packing>
</child>
<child>
<widget constructor="initial-state" class="GtkToolbar" id="toolbar1">
<property name="events"></property>
<property name="visible">True</property>
</widget>
<packing>
<property name="position">1</property>
<property name="expand">False</property>
</packing>
</child>
<child>
<widget class="GtkTextView" id="textview1">
<property name="events"></property>
<property name="can_focus">True</property>
<property name="visible">True</property>
</widget>
<packing>
<property name="position">2</property>
</packing>
</child>
</widget>
</child>
</widget>
</glade-interface>
|