-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #591 from andersonku/master
Converting from Glade to GTK Builder to remove dependency Updates issue #413
- Loading branch information
Showing
51 changed files
with
25,879 additions
and
24,651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
<?xml version="1.0"?> | ||
<interface> | ||
<object class="GtkDialog" id="dlgOpenWithName"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="title" translatable="yes">Import Matrix</property> | ||
<property name="modal">True</property> | ||
<property name="destroy_with_parent">True</property> | ||
<property name="icon_name">gtk-add</property> | ||
<property name="type_hint">dialog</property> | ||
<child internal-child="vbox"> | ||
<object class="GtkVBox" id="vbox13"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<child internal-child="action_area"> | ||
<object class="GtkHButtonBox" id="hbuttonbox3"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="layout_style">end</property> | ||
<child> | ||
<object class="GtkButton" id="button19"> | ||
<property name="label">gtk-cancel</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">True</property> | ||
<property name="can_default">True</property> | ||
<property name="receives_default">False</property> | ||
<property name="use_stock">True</property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkButton" id="button20"> | ||
<property name="label">gtk-ok</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">True</property> | ||
<property name="can_default">True</property> | ||
<property name="receives_default">False</property> | ||
<property name="use_stock">True</property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">True</property> | ||
<property name="pack_type">end</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkVBox" id="vbox14"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<child> | ||
<object class="GtkHBox" id="hbox9"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<child> | ||
<object class="GtkLabel" id="label75"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="xalign">0</property> | ||
<property name="label" translatable="yes">Name</property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="padding">5</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkEntry" id="txtName"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">True</property> | ||
<property name="primary_icon_activatable">False</property> | ||
<property name="secondary_icon_activatable">False</property> | ||
<property name="primary_icon_sensitive">True</property> | ||
<property name="secondary_icon_sensitive">True</property> | ||
</object> | ||
<packing> | ||
<property name="expand">True</property> | ||
<property name="fill">True</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">True</property> | ||
<property name="padding">3</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkLabel" id="label76"> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
<property name="ypad">7</property> | ||
<property name="label" translatable="yes">Input File:</property> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">False</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkFileChooserWidget" id="filechooser"> | ||
<property name="width_request">550</property> | ||
<property name="height_request">240</property> | ||
<property name="visible">True</property> | ||
<property name="can_focus">False</property> | ||
</object> | ||
<packing> | ||
<property name="expand">True</property> | ||
<property name="fill">True</property> | ||
<property name="position">2</property> | ||
</packing> | ||
</child> | ||
</object> | ||
<packing> | ||
<property name="expand">True</property> | ||
<property name="fill">True</property> | ||
<property name="position">2</property> | ||
</packing> | ||
</child> | ||
</object> | ||
</child> | ||
<action-widgets> | ||
<action-widget response="-6">button19</action-widget> | ||
<action-widget response="-5">button20</action-widget> | ||
</action-widgets> | ||
</object> | ||
</interface> |
Oops, something went wrong.