alexandria-book-collection-manager 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.hound.yml +2 -0
- data/.rubocop.yml +4 -4
- data/.rubocop_todo.yml +55 -82
- data/CHANGELOG.md +17 -0
- data/INSTALL.md +3 -3
- data/README.md +1 -2
- data/Rakefile +14 -33
- data/TODO.md +9 -1
- data/alexandria-book-collection-manager.gemspec +4 -3
- data/bin/alexandria +21 -34
- data/doc/FAQ +2 -5
- data/lib/alexandria.rb +4 -16
- data/lib/alexandria/book_providers.rb +5 -7
- data/lib/alexandria/book_providers/adlibris.rb +5 -3
- data/lib/alexandria/book_providers/amazon_aws.rb +3 -1
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +8 -0
- data/lib/alexandria/book_providers/barnes_and_noble.rb +7 -4
- data/lib/alexandria/book_providers/douban.rb +1 -1
- data/lib/alexandria/book_providers/proxis.rb +11 -27
- data/lib/alexandria/book_providers/renaud.rb +9 -3
- data/lib/alexandria/book_providers/siciliano.rb +7 -4
- data/lib/alexandria/book_providers/thalia.rb +5 -3
- data/lib/alexandria/book_providers/web.rb +11 -29
- data/lib/alexandria/book_providers/worldcat.rb +7 -5
- data/lib/alexandria/book_providers/z3950.rb +10 -7
- data/lib/alexandria/console.rb +5 -18
- data/lib/alexandria/execution_queue.rb +2 -1
- data/lib/alexandria/export_format.rb +47 -0
- data/lib/alexandria/export_library.rb +72 -180
- data/lib/alexandria/import_library.rb +14 -23
- data/lib/alexandria/import_library_csv.rb +3 -6
- data/lib/alexandria/library_collection.rb +78 -0
- data/lib/alexandria/library_sort_order.rb +43 -0
- data/lib/alexandria/library_store.rb +222 -0
- data/lib/alexandria/logging.rb +2 -0
- data/lib/alexandria/models/book.rb +8 -16
- data/lib/alexandria/models/library.rb +26 -308
- data/lib/alexandria/preferences.rb +7 -24
- data/lib/alexandria/scanners/cuecat.rb +3 -1
- data/lib/alexandria/smart_library.rb +32 -67
- data/lib/alexandria/ui/builder_base.rb +6 -26
- data/lib/alexandria/ui/callbacks.rb +8 -34
- data/lib/alexandria/ui/completion_models.rb +2 -1
- data/lib/alexandria/ui/dialogs/about_dialog.rb +35 -47
- data/lib/alexandria/ui/dialogs/acquire_dialog.rb +14 -30
- data/lib/alexandria/ui/dialogs/alert_dialog.rb +8 -17
- data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +10 -24
- data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +17 -18
- data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +25 -41
- data/lib/alexandria/ui/dialogs/export_dialog.rb +48 -56
- data/lib/alexandria/ui/dialogs/import_dialog.rb +31 -51
- data/lib/alexandria/ui/dialogs/keep_bad_isbn_dialog.rb +33 -0
- data/lib/alexandria/ui/dialogs/misc_dialogs.rb +12 -25
- data/lib/alexandria/ui/dialogs/new_book_dialog.rb +57 -94
- data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +24 -42
- data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +9 -21
- data/lib/alexandria/ui/dialogs/preferences_dialog.rb +27 -32
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +5 -3
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +15 -12
- data/lib/alexandria/ui/icons.rb +11 -22
- data/lib/alexandria/ui/init.rb +3 -3
- data/lib/alexandria/ui/libraries_combo.rb +1 -0
- data/lib/alexandria/ui/listview.rb +5 -21
- data/lib/alexandria/ui/multi_drag_treeview.rb +20 -32
- data/lib/alexandria/ui/sidepane.rb +9 -24
- data/lib/alexandria/ui/ui_manager.rb +36 -60
- data/lib/alexandria/undo_manager.rb +1 -0
- data/lib/alexandria/version.rb +2 -2
- data/lib/alexandria/web_themes.rb +1 -0
- data/po/cs.po +0 -4
- data/po/cy.po +0 -4
- data/po/de.po +0 -4
- data/po/el.po +0 -4
- data/po/es.po +0 -4
- data/po/fr.po +0 -4
- data/po/ga.po +0 -4
- data/po/gl.po +0 -4
- data/po/it.po +0 -4
- data/po/ja.po +0 -4
- data/po/mk.po +0 -4
- data/po/nb.po +0 -4
- data/po/nl.po +0 -4
- data/po/pl.po +0 -4
- data/po/pt.po +0 -4
- data/po/pt_BR.po +0 -4
- data/po/ru.po +0 -4
- data/po/sk.po +0 -4
- data/po/sv.po +0 -4
- data/po/uk.po +0 -4
- data/po/zh_TW.po +0 -4
- data/schemas/alexandria.schemas +1 -1
- data/share/alexandria/glade/acquire_dialog__builder.glade +14 -11
- data/share/alexandria/glade/book_properties_dialog__builder.glade +170 -298
- data/share/alexandria/glade/main_app__builder.glade +22 -16
- data/share/alexandria/glade/new_book_dialog__builder.glade +26 -58
- data/share/alexandria/glade/preferences_dialog__builder.glade +249 -289
- data/share/gnome/help/alexandria/C/introduction.xml +0 -4
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -4
- data/spec/alexandria/book_providers_spec.rb +1 -20
- data/spec/alexandria/console_spec.rb +32 -0
- data/spec/alexandria/export_library_spec.rb +141 -0
- data/spec/alexandria/library_spec.rb +24 -80
- data/spec/alexandria/library_store_spec.rb +37 -0
- data/spec/alexandria/smart_library_spec.rb +27 -22
- data/spec/alexandria/ui/dialogs/new_book_dialog_spec.rb +22 -0
- data/spec/alexandria/ui/dialogs_spec.rb +104 -38
- data/spec/end_to_end/basic_run_spec.rb +69 -0
- data/spec/spec_helper.rb +13 -25
- data/tasks/spec.rake +15 -2
- data/util/rake/fileinstall.rb +1 -0
- metadata +38 -16
- data/lib/alexandria/book_providers/deastore.rb +0 -265
- data/lib/alexandria/book_providers/mcu.rb +0 -182
data/po/nb.po
CHANGED
@@ -933,10 +933,6 @@ msgstr ""
|
|
933
933
|
msgid "Secret access key"
|
934
934
|
msgstr ""
|
935
935
|
|
936
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
937
|
-
msgid "Spanish Culture Ministry"
|
938
|
-
msgstr "Det spanske kulturministeriet"
|
939
|
-
|
940
936
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
941
937
|
msgid "Hostname"
|
942
938
|
msgstr "Vertsnavn"
|
data/po/nl.po
CHANGED
@@ -931,10 +931,6 @@ msgstr "Toegangssleutel ID"
|
|
931
931
|
msgid "Secret access key"
|
932
932
|
msgstr "Geheime toegangssleutel"
|
933
933
|
|
934
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
935
|
-
msgid "Spanish Culture Ministry"
|
936
|
-
msgstr "Spaans Ministerie van Cultuur"
|
937
|
-
|
938
934
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
939
935
|
msgid "Hostname"
|
940
936
|
msgstr "Servernaam"
|
data/po/pl.po
CHANGED
@@ -944,10 +944,6 @@ msgstr "Identyfikator klucza dostępu"
|
|
944
944
|
msgid "Secret access key"
|
945
945
|
msgstr "Tajny klucz dostępu"
|
946
946
|
|
947
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
948
|
-
msgid "Spanish Culture Ministry"
|
949
|
-
msgstr "Hiszpańskie Ministerstwo Kultury"
|
950
|
-
|
951
947
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
952
948
|
msgid "Hostname"
|
953
949
|
msgstr "Nazwa komputera"
|
data/po/pt.po
CHANGED
@@ -939,10 +939,6 @@ msgstr ""
|
|
939
939
|
msgid "Secret access key"
|
940
940
|
msgstr ""
|
941
941
|
|
942
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
943
|
-
msgid "Spanish Culture Ministry"
|
944
|
-
msgstr "Ministério da Cultura Espanhola"
|
945
|
-
|
946
942
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
947
943
|
msgid "Hostname"
|
948
944
|
msgstr "Nome do anfitrião"
|
data/po/pt_BR.po
CHANGED
@@ -936,10 +936,6 @@ msgstr ""
|
|
936
936
|
msgid "Secret access key"
|
937
937
|
msgstr ""
|
938
938
|
|
939
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
940
|
-
msgid "Spanish Culture Ministry"
|
941
|
-
msgstr "Ministério da Cultura Espanhola"
|
942
|
-
|
943
939
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
944
940
|
msgid "Hostname"
|
945
941
|
msgstr "Anfitrião"
|
data/po/ru.po
CHANGED
@@ -942,10 +942,6 @@ msgstr "Идентификатор ключа"
|
|
942
942
|
msgid "Secret access key"
|
943
943
|
msgstr "Секретный ключ"
|
944
944
|
|
945
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
946
|
-
msgid "Spanish Culture Ministry"
|
947
|
-
msgstr "Министерство культуры Испании"
|
948
|
-
|
949
945
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
950
946
|
msgid "Hostname"
|
951
947
|
msgstr "Сервер"
|
data/po/sk.po
CHANGED
@@ -939,10 +939,6 @@ msgstr ""
|
|
939
939
|
msgid "Secret access key"
|
940
940
|
msgstr ""
|
941
941
|
|
942
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
943
|
-
msgid "Spanish Culture Ministry"
|
944
|
-
msgstr "Španielske ministerstvo kultúry"
|
945
|
-
|
946
942
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
947
943
|
msgid "Hostname"
|
948
944
|
msgstr "Hostiteľ"
|
data/po/sv.po
CHANGED
@@ -936,10 +936,6 @@ msgstr ""
|
|
936
936
|
msgid "Secret access key"
|
937
937
|
msgstr ""
|
938
938
|
|
939
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
940
|
-
msgid "Spanish Culture Ministry"
|
941
|
-
msgstr "Spanska kulturministeriet"
|
942
|
-
|
943
939
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
944
940
|
msgid "Hostname"
|
945
941
|
msgstr "Värdnamn"
|
data/po/uk.po
CHANGED
@@ -938,10 +938,6 @@ msgstr ""
|
|
938
938
|
msgid "Secret access key"
|
939
939
|
msgstr ""
|
940
940
|
|
941
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
942
|
-
msgid "Spanish Culture Ministry"
|
943
|
-
msgstr "Міністерство культури Іспанії"
|
944
|
-
|
945
941
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
946
942
|
msgid "Hostname"
|
947
943
|
msgstr "Назва хоста"
|
data/po/zh_TW.po
CHANGED
@@ -920,10 +920,6 @@ msgstr ""
|
|
920
920
|
msgid "Secret access key"
|
921
921
|
msgstr ""
|
922
922
|
|
923
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
924
|
-
msgid "Spanish Culture Ministry"
|
925
|
-
msgstr "西班牙文化局"
|
926
|
-
|
927
923
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
928
924
|
msgid "Hostname"
|
929
925
|
msgstr "主機名稱"
|
data/schemas/alexandria.schemas
CHANGED
@@ -278,7 +278,7 @@
|
|
278
278
|
<owner>alexandria</owner>
|
279
279
|
<type>list</type>
|
280
280
|
<list_type>string</list_type>
|
281
|
-
<default>[Amazon, BarnesAndNoble, AdLibris,
|
281
|
+
<default>[Amazon, BarnesAndNoble, AdLibris, Proxis, Thalia, Siciliano, WorldCat, LOC, BL, SBN]</default>
|
282
282
|
<!-- BROKEN [Webster_it, Thalia, IBS_it, ] -->
|
283
283
|
<locale name="C">
|
284
284
|
<short>Providers priority</short>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Generated with glade 3.22.0 -->
|
2
3
|
<interface>
|
3
|
-
<requires lib="gtk+" version="
|
4
|
-
<!-- interface-naming-policy toplevel-contextual -->
|
4
|
+
<requires lib="gtk+" version="3.0"/>
|
5
5
|
<object class="GtkDialog" id="acquire_dialog">
|
6
6
|
<property name="visible">True</property>
|
7
7
|
<property name="can_focus">False</property>
|
@@ -11,12 +11,13 @@
|
|
11
11
|
<property name="type_hint">dialog</property>
|
12
12
|
<signal name="close" handler="on_destroy" swapped="no"/>
|
13
13
|
<child internal-child="vbox">
|
14
|
-
<object class="
|
14
|
+
<object class="GtkBox" id="dialog_vbox1">
|
15
15
|
<property name="visible">True</property>
|
16
16
|
<property name="can_focus">False</property>
|
17
|
+
<property name="orientation">vertical</property>
|
17
18
|
<property name="spacing">12</property>
|
18
19
|
<child internal-child="action_area">
|
19
|
-
<object class="
|
20
|
+
<object class="GtkButtonBox" id="dialog_action_area1">
|
20
21
|
<property name="visible">True</property>
|
21
22
|
<property name="can_focus">False</property>
|
22
23
|
<property name="layout_style">end</property>
|
@@ -27,7 +28,6 @@
|
|
27
28
|
<property name="can_focus">True</property>
|
28
29
|
<property name="can_default">True</property>
|
29
30
|
<property name="receives_default">False</property>
|
30
|
-
<property name="use_action_appearance">False</property>
|
31
31
|
<property name="use_stock">True</property>
|
32
32
|
<signal name="clicked" handler="on_help" swapped="no"/>
|
33
33
|
</object>
|
@@ -44,7 +44,6 @@
|
|
44
44
|
<property name="can_focus">True</property>
|
45
45
|
<property name="can_default">True</property>
|
46
46
|
<property name="receives_default">False</property>
|
47
|
-
<property name="use_action_appearance">False</property>
|
48
47
|
<property name="use_stock">True</property>
|
49
48
|
<signal name="clicked" handler="on_cancel" swapped="no"/>
|
50
49
|
</object>
|
@@ -61,7 +60,6 @@
|
|
61
60
|
<property name="can_focus">True</property>
|
62
61
|
<property name="can_default">True</property>
|
63
62
|
<property name="receives_default">False</property>
|
64
|
-
<property name="use_action_appearance">False</property>
|
65
63
|
<property name="use_stock">True</property>
|
66
64
|
<signal name="clicked" handler="on_add" swapped="no"/>
|
67
65
|
</object>
|
@@ -80,10 +78,11 @@
|
|
80
78
|
</packing>
|
81
79
|
</child>
|
82
80
|
<child>
|
83
|
-
<object class="
|
81
|
+
<object class="GtkBox" id="vbox1">
|
84
82
|
<property name="visible">True</property>
|
85
83
|
<property name="can_focus">False</property>
|
86
84
|
<property name="border_width">6</property>
|
85
|
+
<property name="orientation">vertical</property>
|
87
86
|
<property name="spacing">12</property>
|
88
87
|
<child>
|
89
88
|
<object class="GtkLabel" id="barcode_label">
|
@@ -128,8 +127,6 @@
|
|
128
127
|
<object class="GtkScrolledWindow" id="scrolledwindow1">
|
129
128
|
<property name="visible">True</property>
|
130
129
|
<property name="can_focus">True</property>
|
131
|
-
<property name="hscrollbar_policy">automatic</property>
|
132
|
-
<property name="vscrollbar_policy">automatic</property>
|
133
130
|
<property name="shadow_type">in</property>
|
134
131
|
<child>
|
135
132
|
<object class="GtkTreeView" id="barcodes_treeview">
|
@@ -138,6 +135,9 @@
|
|
138
135
|
<property name="visible">True</property>
|
139
136
|
<property name="can_focus">True</property>
|
140
137
|
<property name="headers_visible">False</property>
|
138
|
+
<child internal-child="selection">
|
139
|
+
<object class="GtkTreeSelection"/>
|
140
|
+
</child>
|
141
141
|
</object>
|
142
142
|
</child>
|
143
143
|
</object>
|
@@ -148,7 +148,7 @@
|
|
148
148
|
</packing>
|
149
149
|
</child>
|
150
150
|
<child>
|
151
|
-
<object class="
|
151
|
+
<object class="GtkBox" id="hbox1">
|
152
152
|
<property name="visible">True</property>
|
153
153
|
<property name="can_focus">False</property>
|
154
154
|
<property name="spacing">12</property>
|
@@ -197,5 +197,8 @@
|
|
197
197
|
<action-widget response="-6">cancel_button</action-widget>
|
198
198
|
<action-widget response="-5">add_button</action-widget>
|
199
199
|
</action-widgets>
|
200
|
+
<child>
|
201
|
+
<placeholder/>
|
202
|
+
</child>
|
200
203
|
</object>
|
201
204
|
</interface>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Generated with glade 3.22.0 -->
|
2
3
|
<interface>
|
3
|
-
<requires lib="gtk+" version="
|
4
|
-
<!-- interface-naming-policy project-wide -->
|
4
|
+
<requires lib="gtk+" version="3.0"/>
|
5
5
|
<object class="GtkDialog" id="book_properties_dialog">
|
6
6
|
<property name="visible">True</property>
|
7
7
|
<property name="can_focus">False</property>
|
@@ -9,11 +9,12 @@
|
|
9
9
|
<property name="type_hint">dialog</property>
|
10
10
|
<signal name="destroy" handler="on_destroy" swapped="no"/>
|
11
11
|
<child internal-child="vbox">
|
12
|
-
<object class="
|
12
|
+
<object class="GtkBox" id="dialog_vbox1">
|
13
13
|
<property name="visible">True</property>
|
14
14
|
<property name="can_focus">False</property>
|
15
|
+
<property name="orientation">vertical</property>
|
15
16
|
<child internal-child="action_area">
|
16
|
-
<object class="
|
17
|
+
<object class="GtkButtonBox" id="button_box">
|
17
18
|
<property name="visible">True</property>
|
18
19
|
<property name="can_focus">False</property>
|
19
20
|
<property name="layout_style">end</property>
|
@@ -35,131 +36,74 @@
|
|
35
36
|
</packing>
|
36
37
|
</child>
|
37
38
|
<child>
|
38
|
-
<object class="GtkNotebook" id="
|
39
|
+
<object class="GtkNotebook" id="notebook">
|
39
40
|
<property name="visible">True</property>
|
40
41
|
<property name="can_focus">True</property>
|
41
42
|
<property name="border_width">6</property>
|
42
43
|
<child>
|
43
|
-
<object class="
|
44
|
+
<object class="GtkBox" id="hbox1">
|
44
45
|
<property name="visible">True</property>
|
45
46
|
<property name="can_focus">False</property>
|
46
47
|
<property name="border_width">6</property>
|
47
48
|
<property name="spacing">12</property>
|
48
49
|
<child>
|
49
|
-
<object class="
|
50
|
+
<object class="GtkGrid" id="table1">
|
50
51
|
<property name="visible">True</property>
|
51
52
|
<property name="can_focus">False</property>
|
52
|
-
<property name="n_rows">7</property>
|
53
|
-
<property name="n_columns">2</property>
|
54
|
-
<property name="column_spacing">12</property>
|
55
53
|
<property name="row_spacing">12</property>
|
54
|
+
<property name="column_spacing">12</property>
|
55
|
+
<property name="row_homogeneous">True</property>
|
56
56
|
<child>
|
57
57
|
<object class="GtkLabel" id="label1">
|
58
58
|
<property name="visible">True</property>
|
59
59
|
<property name="can_focus">False</property>
|
60
|
-
<property name="xalign">0</property>
|
61
|
-
<property name="yalign">0</property>
|
62
60
|
<property name="label" translatable="yes">_Title:</property>
|
63
61
|
<property name="use_underline">True</property>
|
64
62
|
<property name="mnemonic_widget">entry_title</property>
|
65
|
-
</object>
|
66
|
-
<packing>
|
67
|
-
<property name="x_options"></property>
|
68
|
-
<property name="y_options"></property>
|
69
|
-
</packing>
|
70
|
-
</child>
|
71
|
-
<child>
|
72
|
-
<object class="GtkLabel" id="label7">
|
73
|
-
<property name="visible">True</property>
|
74
|
-
<property name="can_focus">False</property>
|
75
63
|
<property name="xalign">0</property>
|
76
|
-
<property name="yalign">0</property>
|
77
|
-
<property name="label" translatable="yes">_Publisher:</property>
|
78
|
-
<property name="use_underline">True</property>
|
79
|
-
<property name="mnemonic_widget">entry_publisher</property>
|
80
64
|
</object>
|
81
65
|
<packing>
|
82
|
-
<property name="
|
83
|
-
<property name="
|
84
|
-
<property name="x_options"></property>
|
85
|
-
<property name="y_options"></property>
|
66
|
+
<property name="left_attach">0</property>
|
67
|
+
<property name="top_attach">0</property>
|
86
68
|
</packing>
|
87
69
|
</child>
|
88
70
|
<child>
|
89
71
|
<object class="GtkEntry" id="entry_title">
|
90
72
|
<property name="visible">True</property>
|
91
73
|
<property name="can_focus">True</property>
|
92
|
-
<property name="invisible_char">•</property>
|
93
|
-
<property name="invisible_char_set">True</property>
|
94
|
-
<property name="primary_icon_activatable">False</property>
|
95
|
-
<property name="secondary_icon_activatable">False</property>
|
96
|
-
<property name="primary_icon_sensitive">True</property>
|
97
|
-
<property name="secondary_icon_sensitive">True</property>
|
98
74
|
<signal name="changed" handler="on_title_changed" swapped="no"/>
|
99
75
|
</object>
|
100
76
|
<packing>
|
101
77
|
<property name="left_attach">1</property>
|
102
|
-
<property name="
|
103
|
-
<property name="y_options"></property>
|
104
|
-
</packing>
|
105
|
-
</child>
|
106
|
-
<child>
|
107
|
-
<object class="GtkEntry" id="entry_publisher">
|
108
|
-
<property name="visible">True</property>
|
109
|
-
<property name="can_focus">True</property>
|
110
|
-
<property name="invisible_char">•</property>
|
111
|
-
<property name="invisible_char_set">True</property>
|
112
|
-
<property name="primary_icon_activatable">False</property>
|
113
|
-
<property name="secondary_icon_activatable">False</property>
|
114
|
-
<property name="primary_icon_sensitive">True</property>
|
115
|
-
<property name="secondary_icon_sensitive">True</property>
|
116
|
-
</object>
|
117
|
-
<packing>
|
118
|
-
<property name="left_attach">1</property>
|
119
|
-
<property name="right_attach">2</property>
|
120
|
-
<property name="top_attach">3</property>
|
121
|
-
<property name="bottom_attach">4</property>
|
122
|
-
<property name="y_options"></property>
|
78
|
+
<property name="top_attach">0</property>
|
123
79
|
</packing>
|
124
80
|
</child>
|
125
81
|
<child>
|
126
82
|
<object class="GtkLabel" id="label5">
|
127
83
|
<property name="visible">True</property>
|
128
84
|
<property name="can_focus">False</property>
|
129
|
-
<property name="xalign">0</property>
|
130
|
-
<property name="yalign">0</property>
|
131
85
|
<property name="label" translatable="yes">_ISBN:</property>
|
132
86
|
<property name="use_underline">True</property>
|
133
87
|
<property name="mnemonic_widget">entry_isbn</property>
|
88
|
+
<property name="xalign">0</property>
|
134
89
|
</object>
|
135
90
|
<packing>
|
91
|
+
<property name="left_attach">0</property>
|
136
92
|
<property name="top_attach">1</property>
|
137
|
-
<property name="bottom_attach">2</property>
|
138
|
-
<property name="x_options"></property>
|
139
|
-
<property name="y_options"></property>
|
140
93
|
</packing>
|
141
94
|
</child>
|
142
95
|
<child>
|
143
96
|
<object class="GtkEntry" id="entry_isbn">
|
144
97
|
<property name="visible">True</property>
|
145
98
|
<property name="can_focus">True</property>
|
146
|
-
<property name="invisible_char">•</property>
|
147
|
-
<property name="invisible_char_set">True</property>
|
148
|
-
<property name="primary_icon_activatable">False</property>
|
149
|
-
<property name="secondary_icon_activatable">False</property>
|
150
|
-
<property name="primary_icon_sensitive">True</property>
|
151
|
-
<property name="secondary_icon_sensitive">True</property>
|
152
99
|
</object>
|
153
100
|
<packing>
|
154
101
|
<property name="left_attach">1</property>
|
155
|
-
<property name="right_attach">2</property>
|
156
102
|
<property name="top_attach">1</property>
|
157
|
-
<property name="bottom_attach">2</property>
|
158
|
-
<property name="y_options"></property>
|
159
103
|
</packing>
|
160
104
|
</child>
|
161
105
|
<child>
|
162
|
-
<object class="
|
106
|
+
<object class="GtkBox" id="hbox3">
|
163
107
|
<property name="visible">True</property>
|
164
108
|
<property name="can_focus">False</property>
|
165
109
|
<property name="spacing">8</property>
|
@@ -167,8 +111,6 @@
|
|
167
111
|
<object class="GtkScrolledWindow" id="scrolledwindow2">
|
168
112
|
<property name="visible">True</property>
|
169
113
|
<property name="can_focus">True</property>
|
170
|
-
<property name="hscrollbar_policy">automatic</property>
|
171
|
-
<property name="vscrollbar_policy">automatic</property>
|
172
114
|
<property name="shadow_type">in</property>
|
173
115
|
<child>
|
174
116
|
<object class="GtkTreeView" id="treeview_authors">
|
@@ -176,6 +118,9 @@
|
|
176
118
|
<property name="can_focus">True</property>
|
177
119
|
<property name="headers_visible">False</property>
|
178
120
|
<property name="enable_search">False</property>
|
121
|
+
<child internal-child="selection">
|
122
|
+
<object class="GtkTreeSelection"/>
|
123
|
+
</child>
|
179
124
|
</object>
|
180
125
|
</child>
|
181
126
|
</object>
|
@@ -186,16 +131,17 @@
|
|
186
131
|
</packing>
|
187
132
|
</child>
|
188
133
|
<child>
|
189
|
-
<object class="
|
134
|
+
<object class="GtkBox" id="vbox2">
|
190
135
|
<property name="visible">True</property>
|
191
136
|
<property name="can_focus">False</property>
|
137
|
+
<property name="orientation">vertical</property>
|
192
138
|
<property name="spacing">4</property>
|
139
|
+
<property name="homogeneous">True</property>
|
193
140
|
<child>
|
194
141
|
<object class="GtkButton" id="button3">
|
195
142
|
<property name="visible">True</property>
|
196
143
|
<property name="can_focus">True</property>
|
197
144
|
<property name="receives_default">True</property>
|
198
|
-
<property name="use_action_appearance">False</property>
|
199
145
|
<signal name="clicked" handler="on_add_author" swapped="no"/>
|
200
146
|
<child>
|
201
147
|
<object class="GtkImage" id="image2">
|
@@ -216,7 +162,6 @@
|
|
216
162
|
<property name="visible">True</property>
|
217
163
|
<property name="can_focus">True</property>
|
218
164
|
<property name="receives_default">True</property>
|
219
|
-
<property name="use_action_appearance">False</property>
|
220
165
|
<signal name="clicked" handler="on_remove_author" swapped="no"/>
|
221
166
|
<child>
|
222
167
|
<object class="GtkImage" id="image3">
|
@@ -243,79 +188,80 @@
|
|
243
188
|
</object>
|
244
189
|
<packing>
|
245
190
|
<property name="left_attach">1</property>
|
246
|
-
<property name="right_attach">2</property>
|
247
191
|
<property name="top_attach">2</property>
|
248
|
-
<property name="
|
192
|
+
<property name="height">2</property>
|
249
193
|
</packing>
|
250
194
|
</child>
|
251
195
|
<child>
|
252
196
|
<object class="GtkLabel" id="label3">
|
253
197
|
<property name="visible">True</property>
|
254
198
|
<property name="can_focus">False</property>
|
255
|
-
<property name="xalign">0</property>
|
256
|
-
<property name="yalign">0</property>
|
257
199
|
<property name="label" translatable="yes">_Authors:</property>
|
258
200
|
<property name="use_underline">True</property>
|
259
201
|
<property name="mnemonic_widget">treeview_authors</property>
|
202
|
+
<property name="xalign">0</property>
|
260
203
|
</object>
|
261
204
|
<packing>
|
205
|
+
<property name="left_attach">0</property>
|
262
206
|
<property name="top_attach">2</property>
|
263
|
-
<property name="bottom_attach">3</property>
|
264
|
-
<property name="x_options"></property>
|
265
|
-
<property name="y_options"></property>
|
266
207
|
</packing>
|
267
208
|
</child>
|
268
209
|
<child>
|
269
|
-
<object class="GtkLabel" id="
|
210
|
+
<object class="GtkLabel" id="label17">
|
270
211
|
<property name="visible">True</property>
|
271
212
|
<property name="can_focus">False</property>
|
213
|
+
<property name="label" translatable="yes">Tags:</property>
|
272
214
|
<property name="xalign">0</property>
|
273
|
-
<property name="yalign">0</property>
|
274
|
-
<property name="label" translatable="yes">_Binding:</property>
|
275
|
-
<property name="use_underline">True</property>
|
276
|
-
<property name="mnemonic_widget">entry_edition</property>
|
277
215
|
</object>
|
278
216
|
<packing>
|
279
|
-
<property name="
|
280
|
-
<property name="
|
281
|
-
|
282
|
-
|
217
|
+
<property name="left_attach">0</property>
|
218
|
+
<property name="top_attach">7</property>
|
219
|
+
</packing>
|
220
|
+
</child>
|
221
|
+
<child>
|
222
|
+
<object class="GtkEntry" id="entry_tags">
|
223
|
+
<property name="visible">True</property>
|
224
|
+
<property name="can_focus">True</property>
|
225
|
+
</object>
|
226
|
+
<packing>
|
227
|
+
<property name="left_attach">1</property>
|
228
|
+
<property name="top_attach">7</property>
|
283
229
|
</packing>
|
284
230
|
</child>
|
285
231
|
<child>
|
286
232
|
<object class="GtkEntry" id="entry_edition">
|
287
233
|
<property name="visible">True</property>
|
288
234
|
<property name="can_focus">True</property>
|
289
|
-
<property name="invisible_char">•</property>
|
290
|
-
<property name="invisible_char_set">True</property>
|
291
|
-
<property name="primary_icon_activatable">False</property>
|
292
|
-
<property name="secondary_icon_activatable">False</property>
|
293
|
-
<property name="primary_icon_sensitive">True</property>
|
294
|
-
<property name="secondary_icon_sensitive">True</property>
|
295
235
|
</object>
|
296
236
|
<packing>
|
297
237
|
<property name="left_attach">1</property>
|
298
|
-
<property name="
|
299
|
-
<property name="top_attach">5</property>
|
300
|
-
<property name="bottom_attach">6</property>
|
301
|
-
<property name="y_options"></property>
|
238
|
+
<property name="top_attach">6</property>
|
302
239
|
</packing>
|
303
240
|
</child>
|
304
241
|
<child>
|
305
|
-
<object class="GtkLabel" id="
|
242
|
+
<object class="GtkLabel" id="label9">
|
306
243
|
<property name="visible">True</property>
|
307
244
|
<property name="can_focus">False</property>
|
245
|
+
<property name="label" translatable="yes">_Binding:</property>
|
246
|
+
<property name="use_underline">True</property>
|
308
247
|
<property name="xalign">0</property>
|
309
|
-
|
248
|
+
</object>
|
249
|
+
<packing>
|
250
|
+
<property name="left_attach">0</property>
|
251
|
+
<property name="top_attach">6</property>
|
252
|
+
</packing>
|
253
|
+
</child>
|
254
|
+
<child>
|
255
|
+
<object class="GtkLabel" id="label16">
|
256
|
+
<property name="visible">True</property>
|
257
|
+
<property name="can_focus">False</property>
|
310
258
|
<property name="label" translatable="yes">Publish _year:</property>
|
311
259
|
<property name="use_underline">True</property>
|
312
|
-
<property name="
|
260
|
+
<property name="xalign">0</property>
|
313
261
|
</object>
|
314
262
|
<packing>
|
315
|
-
<property name="
|
316
|
-
<property name="
|
317
|
-
<property name="x_options"></property>
|
318
|
-
<property name="y_options"></property>
|
263
|
+
<property name="left_attach">0</property>
|
264
|
+
<property name="top_attach">5</property>
|
319
265
|
</packing>
|
320
266
|
</child>
|
321
267
|
<child>
|
@@ -323,65 +269,50 @@
|
|
323
269
|
<property name="visible">True</property>
|
324
270
|
<property name="can_focus">True</property>
|
325
271
|
<property name="max_length">4</property>
|
326
|
-
<property name="invisible_char">•</property>
|
327
|
-
<property name="invisible_char_set">True</property>
|
328
|
-
<property name="primary_icon_activatable">False</property>
|
329
|
-
<property name="secondary_icon_activatable">False</property>
|
330
|
-
<property name="primary_icon_sensitive">True</property>
|
331
|
-
<property name="secondary_icon_sensitive">True</property>
|
332
272
|
</object>
|
333
273
|
<packing>
|
334
274
|
<property name="left_attach">1</property>
|
335
|
-
<property name="
|
336
|
-
<property name="top_attach">4</property>
|
337
|
-
<property name="bottom_attach">5</property>
|
338
|
-
<property name="y_options"></property>
|
275
|
+
<property name="top_attach">5</property>
|
339
276
|
</packing>
|
340
277
|
</child>
|
341
278
|
<child>
|
342
|
-
<object class="
|
279
|
+
<object class="GtkEntry" id="entry_publisher">
|
343
280
|
<property name="visible">True</property>
|
344
|
-
<property name="can_focus">
|
345
|
-
<property name="xalign">0</property>
|
346
|
-
<property name="label" translatable="yes">Tags:</property>
|
281
|
+
<property name="can_focus">True</property>
|
347
282
|
</object>
|
348
283
|
<packing>
|
349
|
-
<property name="
|
350
|
-
<property name="
|
351
|
-
<property name="x_options"></property>
|
352
|
-
<property name="y_options"></property>
|
284
|
+
<property name="left_attach">1</property>
|
285
|
+
<property name="top_attach">4</property>
|
353
286
|
</packing>
|
354
287
|
</child>
|
355
288
|
<child>
|
356
|
-
<object class="
|
289
|
+
<object class="GtkLabel" id="label7">
|
357
290
|
<property name="visible">True</property>
|
358
|
-
<property name="can_focus">
|
359
|
-
<property name="
|
360
|
-
<property name="
|
361
|
-
<property name="
|
362
|
-
<property name="secondary_icon_activatable">False</property>
|
363
|
-
<property name="primary_icon_sensitive">True</property>
|
364
|
-
<property name="secondary_icon_sensitive">True</property>
|
291
|
+
<property name="can_focus">False</property>
|
292
|
+
<property name="label" translatable="yes">_Publisher:</property>
|
293
|
+
<property name="use_underline">True</property>
|
294
|
+
<property name="xalign">0</property>
|
365
295
|
</object>
|
366
296
|
<packing>
|
367
|
-
<property name="left_attach">
|
368
|
-
<property name="
|
369
|
-
<property name="top_attach">6</property>
|
370
|
-
<property name="bottom_attach">7</property>
|
371
|
-
<property name="y_options"></property>
|
297
|
+
<property name="left_attach">0</property>
|
298
|
+
<property name="top_attach">4</property>
|
372
299
|
</packing>
|
373
300
|
</child>
|
301
|
+
<child>
|
302
|
+
<placeholder/>
|
303
|
+
</child>
|
374
304
|
</object>
|
375
305
|
<packing>
|
376
|
-
<property name="expand">
|
306
|
+
<property name="expand">False</property>
|
377
307
|
<property name="fill">True</property>
|
378
308
|
<property name="position">0</property>
|
379
309
|
</packing>
|
380
310
|
</child>
|
381
311
|
<child>
|
382
|
-
<object class="
|
312
|
+
<object class="GtkSeparator" id="vseparator1">
|
383
313
|
<property name="visible">True</property>
|
384
314
|
<property name="can_focus">False</property>
|
315
|
+
<property name="orientation">vertical</property>
|
385
316
|
</object>
|
386
317
|
<packing>
|
387
318
|
<property name="expand">False</property>
|
@@ -390,23 +321,23 @@
|
|
390
321
|
</packing>
|
391
322
|
</child>
|
392
323
|
<child>
|
393
|
-
<object class="
|
324
|
+
<object class="GtkBox" id="vbox1">
|
394
325
|
<property name="visible">True</property>
|
395
326
|
<property name="can_focus">False</property>
|
327
|
+
<property name="orientation">vertical</property>
|
396
328
|
<property name="spacing">8</property>
|
397
329
|
<child>
|
398
330
|
<object class="GtkLabel" id="label12">
|
399
331
|
<property name="visible">True</property>
|
400
332
|
<property name="can_focus">False</property>
|
401
|
-
<property name="xalign">0</property>
|
402
|
-
<property name="yalign">0.34000000357627869</property>
|
403
333
|
<property name="label" translatable="yes">_Cover:</property>
|
404
334
|
<property name="use_underline">True</property>
|
405
335
|
<property name="mnemonic_widget">button_cover</property>
|
336
|
+
<property name="xalign">0</property>
|
406
337
|
</object>
|
407
338
|
<packing>
|
408
339
|
<property name="expand">False</property>
|
409
|
-
<property name="fill">
|
340
|
+
<property name="fill">True</property>
|
410
341
|
<property name="position">0</property>
|
411
342
|
</packing>
|
412
343
|
</child>
|
@@ -415,7 +346,6 @@
|
|
415
346
|
<property name="visible">True</property>
|
416
347
|
<property name="can_focus">True</property>
|
417
348
|
<property name="receives_default">True</property>
|
418
|
-
<property name="use_action_appearance">False</property>
|
419
349
|
<signal name="clicked" handler="on_change_cover" swapped="no"/>
|
420
350
|
<child>
|
421
351
|
<object class="GtkImage" id="image_cover">
|
@@ -425,115 +355,10 @@
|
|
425
355
|
</object>
|
426
356
|
</child>
|
427
357
|
</object>
|
428
|
-
<packing>
|
429
|
-
<property name="expand">False</property>
|
430
|
-
<property name="fill">False</property>
|
431
|
-
<property name="position">1</property>
|
432
|
-
</packing>
|
433
|
-
</child>
|
434
|
-
<child>
|
435
|
-
<object class="GtkVBox" id="vbox4">
|
436
|
-
<property name="visible">True</property>
|
437
|
-
<property name="can_focus">False</property>
|
438
|
-
<child>
|
439
|
-
<object class="GtkVBox" id="vbox5">
|
440
|
-
<property name="visible">True</property>
|
441
|
-
<property name="can_focus">False</property>
|
442
|
-
<child>
|
443
|
-
<object class="GtkCheckButton" id="checkbutton_own">
|
444
|
-
<property name="label" translatable="yes">Own it?</property>
|
445
|
-
<property name="visible">True</property>
|
446
|
-
<property name="can_focus">True</property>
|
447
|
-
<property name="receives_default">False</property>
|
448
|
-
<property name="use_action_appearance">False</property>
|
449
|
-
<property name="use_underline">True</property>
|
450
|
-
<property name="draw_indicator">True</property>
|
451
|
-
<signal name="toggled" handler="own_toggled" after="yes" swapped="no"/>
|
452
|
-
</object>
|
453
|
-
<packing>
|
454
|
-
<property name="expand">False</property>
|
455
|
-
<property name="fill">False</property>
|
456
|
-
<property name="position">0</property>
|
457
|
-
</packing>
|
458
|
-
</child>
|
459
|
-
<child>
|
460
|
-
<object class="GtkVBox" id="vbox6">
|
461
|
-
<property name="visible">True</property>
|
462
|
-
<property name="can_focus">False</property>
|
463
|
-
<child>
|
464
|
-
<object class="GtkCheckButton" id="checkbutton_redd">
|
465
|
-
<property name="label" translatable="yes">Read it?</property>
|
466
|
-
<property name="visible">True</property>
|
467
|
-
<property name="can_focus">True</property>
|
468
|
-
<property name="receives_default">False</property>
|
469
|
-
<property name="use_action_appearance">False</property>
|
470
|
-
<property name="use_underline">True</property>
|
471
|
-
<property name="draw_indicator">True</property>
|
472
|
-
<signal name="toggled" handler="redd_toggled" after="yes" swapped="no"/>
|
473
|
-
</object>
|
474
|
-
<packing>
|
475
|
-
<property name="expand">True</property>
|
476
|
-
<property name="fill">False</property>
|
477
|
-
<property name="position">0</property>
|
478
|
-
</packing>
|
479
|
-
</child>
|
480
|
-
<child>
|
481
|
-
<object class="GtkEntry" id="redd_date">
|
482
|
-
<property name="visible">True</property>
|
483
|
-
<property name="can_focus">True</property>
|
484
|
-
<property name="invisible_char">•</property>
|
485
|
-
<property name="invisible_char_set">True</property>
|
486
|
-
<property name="primary_icon_stock">gtk-edit</property>
|
487
|
-
<property name="secondary_icon_stock">gtk-clear</property>
|
488
|
-
<property name="primary_icon_activatable">True</property>
|
489
|
-
<property name="secondary_icon_activatable">True</property>
|
490
|
-
<property name="primary_icon_sensitive">True</property>
|
491
|
-
<property name="secondary_icon_sensitive">True</property>
|
492
|
-
<property name="primary_icon_tooltip_text" translatable="yes">Select Date</property>
|
493
|
-
<property name="secondary_icon_tooltip_text" translatable="yes">Clear Date</property>
|
494
|
-
</object>
|
495
|
-
<packing>
|
496
|
-
<property name="expand">False</property>
|
497
|
-
<property name="fill">True</property>
|
498
|
-
<property name="position">1</property>
|
499
|
-
</packing>
|
500
|
-
</child>
|
501
|
-
</object>
|
502
|
-
<packing>
|
503
|
-
<property name="expand">True</property>
|
504
|
-
<property name="fill">True</property>
|
505
|
-
<property name="position">1</property>
|
506
|
-
</packing>
|
507
|
-
</child>
|
508
|
-
</object>
|
509
|
-
<packing>
|
510
|
-
<property name="expand">True</property>
|
511
|
-
<property name="fill">True</property>
|
512
|
-
<property name="position">0</property>
|
513
|
-
</packing>
|
514
|
-
</child>
|
515
|
-
<child>
|
516
|
-
<object class="GtkCheckButton" id="checkbutton_want">
|
517
|
-
<property name="label" translatable="yes">Want it?</property>
|
518
|
-
<property name="visible">True</property>
|
519
|
-
<property name="can_focus">True</property>
|
520
|
-
<property name="receives_default">False</property>
|
521
|
-
<property name="use_action_appearance">False</property>
|
522
|
-
<property name="use_underline">True</property>
|
523
|
-
<property name="draw_indicator">True</property>
|
524
|
-
<signal name="toggled" handler="want_toggled" after="yes" swapped="no"/>
|
525
|
-
</object>
|
526
|
-
<packing>
|
527
|
-
<property name="expand">False</property>
|
528
|
-
<property name="fill">False</property>
|
529
|
-
<property name="position">1</property>
|
530
|
-
</packing>
|
531
|
-
</child>
|
532
|
-
</object>
|
533
358
|
<packing>
|
534
359
|
<property name="expand">True</property>
|
535
360
|
<property name="fill">True</property>
|
536
|
-
<property name="position">
|
361
|
+
<property name="position">1</property>
|
537
362
|
</packing>
|
538
363
|
</child>
|
539
364
|
<child>
|
@@ -541,10 +366,11 @@
|
|
541
366
|
<property name="visible">True</property>
|
542
367
|
<property name="can_focus">False</property>
|
543
368
|
<child>
|
544
|
-
<object class="
|
369
|
+
<object class="GtkBox" id="hbox2">
|
545
370
|
<property name="visible">True</property>
|
546
371
|
<property name="can_focus">False</property>
|
547
372
|
<property name="spacing">3</property>
|
373
|
+
<property name="homogeneous">True</property>
|
548
374
|
<child>
|
549
375
|
<object class="GtkEventBox" id="eventbox6">
|
550
376
|
<property name="visible">True</property>
|
@@ -678,7 +504,7 @@
|
|
678
504
|
</child>
|
679
505
|
</object>
|
680
506
|
<packing>
|
681
|
-
<property name="expand">
|
507
|
+
<property name="expand">False</property>
|
682
508
|
<property name="fill">True</property>
|
683
509
|
<property name="position">6</property>
|
684
510
|
</packing>
|
@@ -690,24 +516,88 @@
|
|
690
516
|
<property name="expand">False</property>
|
691
517
|
<property name="fill">True</property>
|
692
518
|
<property name="pack_type">end</property>
|
693
|
-
<property name="position">
|
519
|
+
<property name="position">2</property>
|
694
520
|
</packing>
|
695
521
|
</child>
|
696
522
|
<child>
|
697
523
|
<object class="GtkLabel" id="label11">
|
698
524
|
<property name="visible">True</property>
|
699
525
|
<property name="can_focus">False</property>
|
526
|
+
<property name="label" translatable="yes">Rating:</property>
|
700
527
|
<property name="xalign">0</property>
|
701
528
|
<property name="yalign">0</property>
|
702
|
-
<property name="label" translatable="yes">Rating:</property>
|
703
529
|
</object>
|
704
530
|
<packing>
|
705
531
|
<property name="expand">False</property>
|
706
|
-
<property name="fill">
|
532
|
+
<property name="fill">True</property>
|
707
533
|
<property name="pack_type">end</property>
|
534
|
+
<property name="position">3</property>
|
535
|
+
</packing>
|
536
|
+
</child>
|
537
|
+
<child>
|
538
|
+
<object class="GtkCheckButton" id="checkbutton_want">
|
539
|
+
<property name="label" translatable="yes">Want it?</property>
|
540
|
+
<property name="visible">True</property>
|
541
|
+
<property name="can_focus">True</property>
|
542
|
+
<property name="receives_default">False</property>
|
543
|
+
<property name="use_underline">True</property>
|
544
|
+
<property name="draw_indicator">True</property>
|
545
|
+
<signal name="toggled" handler="want_toggled" after="yes" swapped="no"/>
|
546
|
+
</object>
|
547
|
+
<packing>
|
548
|
+
<property name="expand">False</property>
|
549
|
+
<property name="fill">True</property>
|
708
550
|
<property name="position">4</property>
|
709
551
|
</packing>
|
710
552
|
</child>
|
553
|
+
<child>
|
554
|
+
<object class="GtkCheckButton" id="checkbutton_redd">
|
555
|
+
<property name="label" translatable="yes">Read it?</property>
|
556
|
+
<property name="visible">True</property>
|
557
|
+
<property name="can_focus">True</property>
|
558
|
+
<property name="receives_default">False</property>
|
559
|
+
<property name="use_underline">True</property>
|
560
|
+
<property name="draw_indicator">True</property>
|
561
|
+
<signal name="toggled" handler="redd_toggled" after="yes" swapped="no"/>
|
562
|
+
</object>
|
563
|
+
<packing>
|
564
|
+
<property name="expand">False</property>
|
565
|
+
<property name="fill">True</property>
|
566
|
+
<property name="position">5</property>
|
567
|
+
</packing>
|
568
|
+
</child>
|
569
|
+
<child>
|
570
|
+
<object class="GtkEntry" id="redd_date">
|
571
|
+
<property name="visible">True</property>
|
572
|
+
<property name="can_focus">True</property>
|
573
|
+
<property name="invisible_char">•</property>
|
574
|
+
<property name="primary_icon_stock">gtk-edit</property>
|
575
|
+
<property name="secondary_icon_stock">gtk-clear</property>
|
576
|
+
<property name="primary_icon_tooltip_text" translatable="yes">Select Date</property>
|
577
|
+
<property name="secondary_icon_tooltip_text" translatable="yes">Clear Date</property>
|
578
|
+
</object>
|
579
|
+
<packing>
|
580
|
+
<property name="expand">False</property>
|
581
|
+
<property name="fill">True</property>
|
582
|
+
<property name="position">6</property>
|
583
|
+
</packing>
|
584
|
+
</child>
|
585
|
+
<child>
|
586
|
+
<object class="GtkCheckButton" id="checkbutton_own">
|
587
|
+
<property name="label" translatable="yes">Own it?</property>
|
588
|
+
<property name="visible">True</property>
|
589
|
+
<property name="can_focus">True</property>
|
590
|
+
<property name="receives_default">False</property>
|
591
|
+
<property name="use_underline">True</property>
|
592
|
+
<property name="draw_indicator">True</property>
|
593
|
+
<signal name="toggled" handler="own_toggled" after="yes" swapped="no"/>
|
594
|
+
</object>
|
595
|
+
<packing>
|
596
|
+
<property name="expand">False</property>
|
597
|
+
<property name="fill">True</property>
|
598
|
+
<property name="position">7</property>
|
599
|
+
</packing>
|
600
|
+
</child>
|
711
601
|
</object>
|
712
602
|
<packing>
|
713
603
|
<property name="expand">False</property>
|
@@ -729,10 +619,11 @@
|
|
729
619
|
</packing>
|
730
620
|
</child>
|
731
621
|
<child>
|
732
|
-
<object class="
|
622
|
+
<object class="GtkBox" id="vbox3">
|
733
623
|
<property name="visible">True</property>
|
734
624
|
<property name="can_focus">False</property>
|
735
625
|
<property name="border_width">6</property>
|
626
|
+
<property name="orientation">vertical</property>
|
736
627
|
<property name="spacing">12</property>
|
737
628
|
<child>
|
738
629
|
<object class="GtkCheckButton" id="checkbutton_loaned">
|
@@ -740,7 +631,6 @@
|
|
740
631
|
<property name="visible">True</property>
|
741
632
|
<property name="can_focus">True</property>
|
742
633
|
<property name="receives_default">False</property>
|
743
|
-
<property name="use_action_appearance">False</property>
|
744
634
|
<property name="use_underline">True</property>
|
745
635
|
<property name="draw_indicator">True</property>
|
746
636
|
<signal name="toggled" handler="on_loaned" after="yes" swapped="no"/>
|
@@ -752,75 +642,61 @@
|
|
752
642
|
</packing>
|
753
643
|
</child>
|
754
644
|
<child>
|
755
|
-
<object class="
|
645
|
+
<object class="GtkGrid" id="table2">
|
756
646
|
<property name="visible">True</property>
|
757
647
|
<property name="can_focus">False</property>
|
758
|
-
<property name="n_rows">3</property>
|
759
|
-
<property name="n_columns">2</property>
|
760
|
-
<property name="column_spacing">12</property>
|
761
648
|
<property name="row_spacing">12</property>
|
649
|
+
<property name="column_spacing">12</property>
|
762
650
|
<child>
|
763
651
|
<object class="GtkEntry" id="entry_loaned_to">
|
764
652
|
<property name="visible">True</property>
|
765
653
|
<property name="sensitive">False</property>
|
766
654
|
<property name="can_focus">True</property>
|
767
|
-
<property name="
|
768
|
-
<property name="
|
769
|
-
<property name="primary_icon_activatable">False</property>
|
770
|
-
<property name="secondary_icon_activatable">False</property>
|
771
|
-
<property name="primary_icon_sensitive">True</property>
|
772
|
-
<property name="secondary_icon_sensitive">True</property>
|
655
|
+
<property name="hexpand">True</property>
|
656
|
+
<property name="vexpand">True</property>
|
773
657
|
</object>
|
774
658
|
<packing>
|
775
659
|
<property name="left_attach">1</property>
|
776
|
-
<property name="
|
777
|
-
<property name="y_options"></property>
|
660
|
+
<property name="top_attach">0</property>
|
778
661
|
</packing>
|
779
662
|
</child>
|
780
663
|
<child>
|
781
664
|
<object class="GtkLabel" id="label_loaning_duration">
|
782
665
|
<property name="visible">True</property>
|
783
666
|
<property name="can_focus">False</property>
|
784
|
-
<property name="xalign">1</property>
|
785
667
|
<property name="justify">right</property>
|
668
|
+
<property name="xalign">1</property>
|
786
669
|
</object>
|
787
670
|
<packing>
|
788
|
-
<property name="
|
671
|
+
<property name="left_attach">1</property>
|
789
672
|
<property name="top_attach">2</property>
|
790
|
-
<property name="bottom_attach">3</property>
|
791
|
-
<property name="x_options"></property>
|
792
|
-
<property name="y_options"></property>
|
793
673
|
</packing>
|
794
674
|
</child>
|
795
675
|
<child>
|
796
676
|
<object class="GtkLabel" id="label15">
|
797
677
|
<property name="visible">True</property>
|
798
678
|
<property name="can_focus">False</property>
|
799
|
-
<property name="xalign">0</property>
|
800
679
|
<property name="label" translatable="yes">_To:</property>
|
801
680
|
<property name="use_underline">True</property>
|
802
681
|
<property name="mnemonic_widget">entry_loaned_to</property>
|
682
|
+
<property name="xalign">0</property>
|
803
683
|
</object>
|
804
684
|
<packing>
|
805
|
-
<property name="
|
806
|
-
<property name="
|
807
|
-
<property name="x_padding">6</property>
|
685
|
+
<property name="left_attach">0</property>
|
686
|
+
<property name="top_attach">0</property>
|
808
687
|
</packing>
|
809
688
|
</child>
|
810
689
|
<child>
|
811
690
|
<object class="GtkLabel" id="label14">
|
812
691
|
<property name="visible">True</property>
|
813
692
|
<property name="can_focus">False</property>
|
814
|
-
<property name="xalign">0</property>
|
815
693
|
<property name="label" translatable="yes">_Since:</property>
|
816
694
|
<property name="use_underline">True</property>
|
695
|
+
<property name="xalign">0</property>
|
817
696
|
</object>
|
818
697
|
<packing>
|
698
|
+
<property name="left_attach">0</property>
|
819
699
|
<property name="top_attach">1</property>
|
820
|
-
<property name="bottom_attach">2</property>
|
821
|
-
<property name="x_options"></property>
|
822
|
-
<property name="y_options"></property>
|
823
|
-
<property name="x_padding">6</property>
|
824
700
|
</packing>
|
825
701
|
</child>
|
826
702
|
<child>
|
@@ -828,26 +704,21 @@
|
|
828
704
|
<property name="visible">True</property>
|
829
705
|
<property name="can_focus">True</property>
|
830
706
|
<property name="invisible_char">•</property>
|
831
|
-
<property name="invisible_char_set">True</property>
|
832
707
|
<property name="primary_icon_stock">gtk-edit</property>
|
833
708
|
<property name="secondary_icon_stock">gtk-clear</property>
|
834
|
-
<property name="primary_icon_activatable">True</property>
|
835
|
-
<property name="secondary_icon_activatable">True</property>
|
836
|
-
<property name="primary_icon_sensitive">True</property>
|
837
|
-
<property name="secondary_icon_sensitive">True</property>
|
838
709
|
<signal name="changed" handler="on_loaned_date_changed" swapped="no"/>
|
839
710
|
</object>
|
840
711
|
<packing>
|
841
712
|
<property name="left_attach">1</property>
|
842
|
-
<property name="right_attach">2</property>
|
843
713
|
<property name="top_attach">1</property>
|
844
|
-
<property name="bottom_attach">2</property>
|
845
|
-
<property name="y_options"></property>
|
846
714
|
</packing>
|
847
715
|
</child>
|
716
|
+
<child>
|
717
|
+
<placeholder/>
|
718
|
+
</child>
|
848
719
|
</object>
|
849
720
|
<packing>
|
850
|
-
<property name="expand">
|
721
|
+
<property name="expand">False</property>
|
851
722
|
<property name="fill">True</property>
|
852
723
|
<property name="position">1</property>
|
853
724
|
</packing>
|
@@ -873,8 +744,6 @@
|
|
873
744
|
<property name="visible">True</property>
|
874
745
|
<property name="can_focus">True</property>
|
875
746
|
<property name="border_width">6</property>
|
876
|
-
<property name="hscrollbar_policy">automatic</property>
|
877
|
-
<property name="vscrollbar_policy">automatic</property>
|
878
747
|
<child>
|
879
748
|
<object class="GtkTextView" id="textview_notes">
|
880
749
|
<property name="visible">True</property>
|
@@ -906,5 +775,8 @@
|
|
906
775
|
</child>
|
907
776
|
</object>
|
908
777
|
</child>
|
778
|
+
<child>
|
779
|
+
<placeholder/>
|
780
|
+
</child>
|
909
781
|
</object>
|
910
782
|
</interface>
|