yorkcmarker 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +7 -0
- data/.rspec +2 -0
- data/LICENCE +7 -0
- data/README.markdown +56 -0
- data/assets/assignment-mark-form.pdf +0 -0
- data/assets/summary-mark-form.pdf +0 -0
- data/bin/DataFiles.rb +47 -0
- data/bin/Generator.rb +43 -0
- data/bin/ReportMarker.rb +442 -0
- data/bin/ReportMarkerGUI.rb +294 -0
- data/bin/glade/ReportMarkerGUI.glade +2609 -0
- data/cmarking2.gemspec +21 -0
- data/spec/ReportMarkerGUI_spec.rb +314 -0
- data/spec/spec_helper.rb +7 -0
- data/yorkcmarker +16 -0
- metadata +143 -0
@@ -0,0 +1,294 @@
|
|
1
|
+
class ReportMarkerGUI < ReportMarker
|
2
|
+
include GladeGUI
|
3
|
+
require_relative "Generator"
|
4
|
+
|
5
|
+
# initialize marker name and student number to allow
|
6
|
+
# access to GUI fields as instance variables
|
7
|
+
def initialize
|
8
|
+
@marker_name = nil
|
9
|
+
@student_number = "Y"
|
10
|
+
end
|
11
|
+
|
12
|
+
# load the GUI from the Glade (glade-gtk2) layout file
|
13
|
+
def load_from_layout
|
14
|
+
load_glade(__FILE__) #loads file, glade/ReportMarkerGUI.glade into @builder
|
15
|
+
end
|
16
|
+
|
17
|
+
# show the GUI window
|
18
|
+
def show()
|
19
|
+
load_from_layout
|
20
|
+
set_glade_all(self) #populates glade controls with instance variables (i.e. Myclass.var1)
|
21
|
+
show_window()
|
22
|
+
end
|
23
|
+
|
24
|
+
def buttonSave__clicked(button)
|
25
|
+
get_glade_all() # get values of controls
|
26
|
+
|
27
|
+
set_output_directory_if_required
|
28
|
+
|
29
|
+
if all_details_present?
|
30
|
+
case @builder["notepad_parts"].page
|
31
|
+
when 0
|
32
|
+
if File.exists?("#{ReportMarker.data_directory}/#{@student_number}_part1.json")
|
33
|
+
if VR::Dialog.ok_box("You've already completed part one for this student, continuing will overwrite it.", title = "Marking Assistant")
|
34
|
+
save_part_one
|
35
|
+
end
|
36
|
+
else
|
37
|
+
save_part_one
|
38
|
+
end
|
39
|
+
when 1
|
40
|
+
if File.exists?("#{ReportMarker.data_directory}/#{@student_number}_part2.json")
|
41
|
+
if VR::Dialog.ok_box("You've already completed part two for this student, continuing will overwrite it.", title = "Marking Assistant")
|
42
|
+
save_part_two
|
43
|
+
end
|
44
|
+
else
|
45
|
+
save_part_two
|
46
|
+
end
|
47
|
+
when 2
|
48
|
+
ReportMarker.save_demonstration_mark({
|
49
|
+
:student_number => @student_number,
|
50
|
+
:demonstration_mark => @builder["spinbutton_tdm"].value.to_i
|
51
|
+
})
|
52
|
+
VR::Dialog.message_box("Demonstration mark saved successfully",
|
53
|
+
title = "Marking Assistant")
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def buttonGenerate__clicked(button)
|
59
|
+
set_output_directory_if_required
|
60
|
+
generator = Generator.new(ReportMarker.output_directory + "/data")
|
61
|
+
generator.generate
|
62
|
+
VR::Dialog.message_box("Generated marksheets saved to #{ReportMarker.output_directory}",
|
63
|
+
title = "Marking Assistant")
|
64
|
+
end
|
65
|
+
|
66
|
+
def buttonClear__clicked(button)
|
67
|
+
@builder.objects.each do |ui_object|
|
68
|
+
if ui_object.class.to_s == "Gtk::CheckButton"
|
69
|
+
ui_object.active = false
|
70
|
+
end
|
71
|
+
end
|
72
|
+
@builder["ReportMarkerGUI.student_number"].text = "Y"
|
73
|
+
end
|
74
|
+
|
75
|
+
def set_output_directory_if_required
|
76
|
+
if ReportMarker.output_directory.nil?
|
77
|
+
VR::Dialog.message_box("I don't know where to save the marksheets. "\
|
78
|
+
"Please tell me on the next screen",
|
79
|
+
title = "Marking Assistant")
|
80
|
+
ReportMarker.output_directory = VR::Dialog.folder_box(@builder)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def save_part_two
|
85
|
+
details = part_two_details
|
86
|
+
ReportMarker.save_part_two(details)
|
87
|
+
|
88
|
+
VR::Dialog.message_box("Part 2 saved successfully", title = "Marking Assistant")
|
89
|
+
end
|
90
|
+
|
91
|
+
def part_two_details
|
92
|
+
details = { :marker_name => @marker_name,
|
93
|
+
:student_number => @student_number,
|
94
|
+
:implementation => implementation_marks,
|
95
|
+
:code_listing => code_listing_marks,
|
96
|
+
:testing_and_verification => testing_and_verification_marks,
|
97
|
+
:user_manual => user_manual_marks,
|
98
|
+
:mcpi => mcpi_marks
|
99
|
+
}
|
100
|
+
end
|
101
|
+
|
102
|
+
def save_part_one
|
103
|
+
details = part_one_details
|
104
|
+
|
105
|
+
ReportMarker.save_part_one(details)
|
106
|
+
|
107
|
+
VR::Dialog.message_box("Part 1 saved successfully", title = "Marking Assistant")
|
108
|
+
end
|
109
|
+
|
110
|
+
def part_one_details
|
111
|
+
marks = part_one_marks
|
112
|
+
details = {
|
113
|
+
:marker_name => @marker_name,
|
114
|
+
:student_number => @student_number,
|
115
|
+
:requirements => marks[:requirements],
|
116
|
+
:analysis => marks[:analysis],
|
117
|
+
:specification => marks[:specification],
|
118
|
+
:design => marks[:design],
|
119
|
+
}
|
120
|
+
end
|
121
|
+
|
122
|
+
def part_one_marks
|
123
|
+
marks = { :requirements => requirements_marks,
|
124
|
+
:analysis => analysis_marks,
|
125
|
+
:specification => specification_marks,
|
126
|
+
:design => design_marks,
|
127
|
+
}
|
128
|
+
end
|
129
|
+
|
130
|
+
def implementation_marks
|
131
|
+
implementation = Array.new
|
132
|
+
1.upto(3) do |checkbox_number|
|
133
|
+
if @builder["checkbutton_i#{checkbox_number}"].active?
|
134
|
+
implementation << 1
|
135
|
+
else
|
136
|
+
implementation << 0
|
137
|
+
end
|
138
|
+
end
|
139
|
+
implementation
|
140
|
+
end
|
141
|
+
|
142
|
+
def code_listing_marks
|
143
|
+
code_listing = Array.new
|
144
|
+
1.upto(11) do |checkbox_number|
|
145
|
+
if @builder["checkbutton_cl#{checkbox_number}"].active?
|
146
|
+
code_listing << 1
|
147
|
+
else
|
148
|
+
code_listing << 0
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
1.upto(11) do |question_number|
|
153
|
+
1.upto(11) do |additional_mark|
|
154
|
+
unless @builder["checkbutton_cl#{question_number}_#{additional_mark}"].nil?
|
155
|
+
if @builder["checkbutton_cl#{question_number}_#{additional_mark}"].active?
|
156
|
+
code_listing[question_number-1] += 1
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
code_listing
|
162
|
+
end
|
163
|
+
|
164
|
+
def testing_and_verification_marks
|
165
|
+
testing_and_verification = Array.new
|
166
|
+
1.upto(5) do |checkbox_number|
|
167
|
+
if @builder["checkbutton_tv#{checkbox_number}"].active?
|
168
|
+
testing_and_verification << 1
|
169
|
+
else
|
170
|
+
testing_and_verification << 0
|
171
|
+
end
|
172
|
+
end
|
173
|
+
testing_and_verification
|
174
|
+
end
|
175
|
+
|
176
|
+
def user_manual_marks
|
177
|
+
user_manual = Array.new
|
178
|
+
1.upto(7) do |checkbox_number|
|
179
|
+
if @builder["checkbutton_ui#{checkbox_number}"].active?
|
180
|
+
user_manual << 1
|
181
|
+
else
|
182
|
+
user_manual << 0
|
183
|
+
end
|
184
|
+
end
|
185
|
+
user_manual
|
186
|
+
end
|
187
|
+
|
188
|
+
def mcpi_marks
|
189
|
+
mcpi = Array.new
|
190
|
+
1.upto(5) do |checkbox_number|
|
191
|
+
if @builder["checkbutton_mcpi#{checkbox_number}"].active?
|
192
|
+
mcpi << 1
|
193
|
+
else
|
194
|
+
mcpi << 0
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
1.upto(5) do |question_number|
|
199
|
+
1.upto(5) do |additional_mark|
|
200
|
+
unless @builder["checkbutton_mcpi#{question_number}_#{additional_mark}"].nil?
|
201
|
+
if @builder["checkbutton_mcpi#{question_number}_#{additional_mark}"].active?
|
202
|
+
mcpi[question_number-1] += 1
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|
207
|
+
mcpi
|
208
|
+
end
|
209
|
+
|
210
|
+
def show_validation_problems
|
211
|
+
if @marker_name.empty?
|
212
|
+
VR::Dialog.message_box("You forgot to fill in your name! Please put it in the box at the top.", title = "Marking Assistant")
|
213
|
+
end
|
214
|
+
if @student_number.length < 2
|
215
|
+
VR::Dialog.message_box("Did you forget to fill in the student number? It should be more than 2 characters long.", title = "Marking Assistant")
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
def all_details_present?
|
220
|
+
if answer = (@marker_name.empty? || @student_number.length < 2)
|
221
|
+
show_validation_problems
|
222
|
+
end
|
223
|
+
!answer
|
224
|
+
end
|
225
|
+
|
226
|
+
def requirements_marks
|
227
|
+
requirements = Array.new
|
228
|
+
1.upto(2) do |checkbox_number|
|
229
|
+
if @builder["checkbutton_r#{checkbox_number}"].active?
|
230
|
+
requirements << 1
|
231
|
+
else
|
232
|
+
requirements << 0
|
233
|
+
end
|
234
|
+
end
|
235
|
+
requirements
|
236
|
+
end
|
237
|
+
|
238
|
+
def analysis_marks
|
239
|
+
analysis = Array.new
|
240
|
+
1.upto(7) do |checkbox_number|
|
241
|
+
if @builder["checkbutton_a#{checkbox_number}"].active?
|
242
|
+
analysis << 1
|
243
|
+
else
|
244
|
+
analysis << 0
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
1.upto(7) do |question_number|
|
249
|
+
1.upto(7) do |additional_mark|
|
250
|
+
unless @builder["checkbutton_a#{question_number}_#{additional_mark}"].nil?
|
251
|
+
if @builder["checkbutton_a#{question_number}_#{additional_mark}"].active?
|
252
|
+
analysis[question_number-1] += 1
|
253
|
+
end
|
254
|
+
end
|
255
|
+
end
|
256
|
+
end
|
257
|
+
analysis
|
258
|
+
end
|
259
|
+
|
260
|
+
def specification_marks
|
261
|
+
specification = Array.new
|
262
|
+
1.upto(3) do |checkbox_number|
|
263
|
+
if @builder["checkbutton_s#{checkbox_number}"].active?
|
264
|
+
specification << 1
|
265
|
+
else
|
266
|
+
specification << 0
|
267
|
+
end
|
268
|
+
end
|
269
|
+
specification
|
270
|
+
end
|
271
|
+
|
272
|
+
def design_marks
|
273
|
+
design = Array.new
|
274
|
+
1.upto(11) do |checkbox_number|
|
275
|
+
if @builder["checkbutton_d#{checkbox_number}"].active?
|
276
|
+
design << 1
|
277
|
+
else
|
278
|
+
design << 0
|
279
|
+
end
|
280
|
+
end
|
281
|
+
|
282
|
+
1.upto(11) do |question_number|
|
283
|
+
1.upto(11) do |additional_mark|
|
284
|
+
unless @builder["checkbutton_d#{question_number}_#{additional_mark}"].nil?
|
285
|
+
if @builder["checkbutton_d#{question_number}_#{additional_mark}"].active?
|
286
|
+
design[question_number-1] += 1
|
287
|
+
end
|
288
|
+
end
|
289
|
+
end
|
290
|
+
end
|
291
|
+
design
|
292
|
+
end
|
293
|
+
|
294
|
+
end
|
@@ -0,0 +1,2609 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<interface>
|
3
|
+
<requires lib="gtk+" version="2.16"/>
|
4
|
+
<!-- interface-naming-policy project-wide -->
|
5
|
+
<object class="GtkAdjustment" id="adjustment1">
|
6
|
+
<property name="upper">15</property>
|
7
|
+
<property name="step_increment">1</property>
|
8
|
+
<property name="page_increment">10</property>
|
9
|
+
</object>
|
10
|
+
<object class="GtkWindow" id="window1">
|
11
|
+
<property name="visible">True</property>
|
12
|
+
<property name="can_focus">False</property>
|
13
|
+
<property name="title" translatable="yes">C Marking Assistant v2.3.4</property>
|
14
|
+
<property name="modal">True</property>
|
15
|
+
<property name="window_position">center-always</property>
|
16
|
+
<signal name="destroy" handler="destroy_window" swapped="no"/>
|
17
|
+
<child>
|
18
|
+
<object class="GtkVBox" id="vbox1">
|
19
|
+
<property name="visible">True</property>
|
20
|
+
<property name="can_focus">False</property>
|
21
|
+
<property name="spacing">10</property>
|
22
|
+
<child>
|
23
|
+
<object class="GtkLabel" id="label5">
|
24
|
+
<property name="visible">True</property>
|
25
|
+
<property name="can_focus">False</property>
|
26
|
+
<property name="label" translatable="yes"><big><big>Introduction to C: Marking Assistant</big></big>
|
27
|
+
by Mat Gilbert<i> http://matalangilbert.blogspot.com</i></property>
|
28
|
+
<property name="use_markup">True</property>
|
29
|
+
</object>
|
30
|
+
<packing>
|
31
|
+
<property name="expand">True</property>
|
32
|
+
<property name="fill">True</property>
|
33
|
+
<property name="padding">10</property>
|
34
|
+
<property name="position">0</property>
|
35
|
+
</packing>
|
36
|
+
</child>
|
37
|
+
<child>
|
38
|
+
<object class="GtkTable" id="table4">
|
39
|
+
<property name="visible">True</property>
|
40
|
+
<property name="can_focus">False</property>
|
41
|
+
<property name="n_rows">2</property>
|
42
|
+
<property name="n_columns">2</property>
|
43
|
+
<child>
|
44
|
+
<object class="GtkAlignment" id="alignment1">
|
45
|
+
<property name="visible">True</property>
|
46
|
+
<property name="can_focus">False</property>
|
47
|
+
<property name="xalign">1</property>
|
48
|
+
<property name="xscale">0</property>
|
49
|
+
<child>
|
50
|
+
<object class="GtkLabel" id="label9">
|
51
|
+
<property name="visible">True</property>
|
52
|
+
<property name="can_focus">False</property>
|
53
|
+
<property name="label" translatable="yes">Marker Name:</property>
|
54
|
+
</object>
|
55
|
+
</child>
|
56
|
+
</object>
|
57
|
+
<packing>
|
58
|
+
<property name="x_options">GTK_FILL</property>
|
59
|
+
<property name="y_options">GTK_FILL</property>
|
60
|
+
</packing>
|
61
|
+
</child>
|
62
|
+
<child>
|
63
|
+
<object class="GtkAlignment" id="alignment5">
|
64
|
+
<property name="visible">True</property>
|
65
|
+
<property name="can_focus">False</property>
|
66
|
+
<property name="xalign">1</property>
|
67
|
+
<property name="xscale">0</property>
|
68
|
+
<child>
|
69
|
+
<object class="GtkLabel" id="label10">
|
70
|
+
<property name="visible">True</property>
|
71
|
+
<property name="can_focus">False</property>
|
72
|
+
<property name="label" translatable="yes">Student Number:</property>
|
73
|
+
</object>
|
74
|
+
</child>
|
75
|
+
</object>
|
76
|
+
<packing>
|
77
|
+
<property name="top_attach">1</property>
|
78
|
+
<property name="bottom_attach">2</property>
|
79
|
+
</packing>
|
80
|
+
</child>
|
81
|
+
<child>
|
82
|
+
<object class="GtkEntry" id="ReportMarkerGUI.marker_name">
|
83
|
+
<property name="visible">True</property>
|
84
|
+
<property name="can_focus">True</property>
|
85
|
+
<property name="invisible_char">●</property>
|
86
|
+
<property name="primary_icon_activatable">False</property>
|
87
|
+
<property name="secondary_icon_activatable">False</property>
|
88
|
+
<property name="primary_icon_sensitive">True</property>
|
89
|
+
<property name="secondary_icon_sensitive">True</property>
|
90
|
+
</object>
|
91
|
+
<packing>
|
92
|
+
<property name="left_attach">1</property>
|
93
|
+
<property name="right_attach">2</property>
|
94
|
+
</packing>
|
95
|
+
</child>
|
96
|
+
<child>
|
97
|
+
<object class="GtkEntry" id="ReportMarkerGUI.student_number">
|
98
|
+
<property name="visible">True</property>
|
99
|
+
<property name="can_focus">True</property>
|
100
|
+
<property name="invisible_char">●</property>
|
101
|
+
<property name="primary_icon_activatable">False</property>
|
102
|
+
<property name="secondary_icon_activatable">False</property>
|
103
|
+
<property name="primary_icon_sensitive">True</property>
|
104
|
+
<property name="secondary_icon_sensitive">True</property>
|
105
|
+
</object>
|
106
|
+
<packing>
|
107
|
+
<property name="left_attach">1</property>
|
108
|
+
<property name="right_attach">2</property>
|
109
|
+
<property name="top_attach">1</property>
|
110
|
+
<property name="bottom_attach">2</property>
|
111
|
+
</packing>
|
112
|
+
</child>
|
113
|
+
</object>
|
114
|
+
<packing>
|
115
|
+
<property name="expand">True</property>
|
116
|
+
<property name="fill">True</property>
|
117
|
+
<property name="position">1</property>
|
118
|
+
</packing>
|
119
|
+
</child>
|
120
|
+
<child>
|
121
|
+
<object class="GtkNotebook" id="notepad_parts">
|
122
|
+
<property name="visible">True</property>
|
123
|
+
<property name="can_focus">True</property>
|
124
|
+
<child>
|
125
|
+
<object class="GtkNotebook" id="notebook_part_one">
|
126
|
+
<property name="visible">True</property>
|
127
|
+
<property name="can_focus">True</property>
|
128
|
+
<property name="tab_pos">left</property>
|
129
|
+
<child>
|
130
|
+
<object class="GtkVBox" id="vbox2">
|
131
|
+
<property name="visible">True</property>
|
132
|
+
<property name="can_focus">False</property>
|
133
|
+
<child>
|
134
|
+
<object class="GtkCheckButton" id="checkbutton_r1">
|
135
|
+
<property name="label" translatable="yes">Is there one?</property>
|
136
|
+
<property name="visible">True</property>
|
137
|
+
<property name="can_focus">True</property>
|
138
|
+
<property name="receives_default">False</property>
|
139
|
+
<property name="use_action_appearance">False</property>
|
140
|
+
<property name="draw_indicator">True</property>
|
141
|
+
</object>
|
142
|
+
<packing>
|
143
|
+
<property name="expand">True</property>
|
144
|
+
<property name="fill">True</property>
|
145
|
+
<property name="position">0</property>
|
146
|
+
</packing>
|
147
|
+
</child>
|
148
|
+
<child>
|
149
|
+
<object class="GtkCheckButton" id="checkbutton_r2">
|
150
|
+
<property name="label" translatable="yes">Are the requirements complete?</property>
|
151
|
+
<property name="visible">True</property>
|
152
|
+
<property name="can_focus">True</property>
|
153
|
+
<property name="receives_default">False</property>
|
154
|
+
<property name="use_action_appearance">False</property>
|
155
|
+
<property name="draw_indicator">True</property>
|
156
|
+
</object>
|
157
|
+
<packing>
|
158
|
+
<property name="expand">True</property>
|
159
|
+
<property name="fill">True</property>
|
160
|
+
<property name="position">1</property>
|
161
|
+
</packing>
|
162
|
+
</child>
|
163
|
+
<child>
|
164
|
+
<object class="GtkLayout" id="layout1">
|
165
|
+
<property name="visible">True</property>
|
166
|
+
<property name="can_focus">False</property>
|
167
|
+
</object>
|
168
|
+
<packing>
|
169
|
+
<property name="expand">True</property>
|
170
|
+
<property name="fill">True</property>
|
171
|
+
<property name="position">2</property>
|
172
|
+
</packing>
|
173
|
+
</child>
|
174
|
+
<child>
|
175
|
+
<object class="GtkLayout" id="layout2">
|
176
|
+
<property name="visible">True</property>
|
177
|
+
<property name="can_focus">False</property>
|
178
|
+
</object>
|
179
|
+
<packing>
|
180
|
+
<property name="expand">True</property>
|
181
|
+
<property name="fill">True</property>
|
182
|
+
<property name="position">3</property>
|
183
|
+
</packing>
|
184
|
+
</child>
|
185
|
+
<child>
|
186
|
+
<object class="GtkLayout" id="layout3">
|
187
|
+
<property name="visible">True</property>
|
188
|
+
<property name="can_focus">False</property>
|
189
|
+
</object>
|
190
|
+
<packing>
|
191
|
+
<property name="expand">True</property>
|
192
|
+
<property name="fill">True</property>
|
193
|
+
<property name="position">4</property>
|
194
|
+
</packing>
|
195
|
+
</child>
|
196
|
+
<child>
|
197
|
+
<object class="GtkLayout" id="layout4">
|
198
|
+
<property name="visible">True</property>
|
199
|
+
<property name="can_focus">False</property>
|
200
|
+
</object>
|
201
|
+
<packing>
|
202
|
+
<property name="expand">True</property>
|
203
|
+
<property name="fill">True</property>
|
204
|
+
<property name="position">5</property>
|
205
|
+
</packing>
|
206
|
+
</child>
|
207
|
+
<child>
|
208
|
+
<object class="GtkLayout" id="layout5">
|
209
|
+
<property name="visible">True</property>
|
210
|
+
<property name="can_focus">False</property>
|
211
|
+
</object>
|
212
|
+
<packing>
|
213
|
+
<property name="expand">True</property>
|
214
|
+
<property name="fill">True</property>
|
215
|
+
<property name="position">6</property>
|
216
|
+
</packing>
|
217
|
+
</child>
|
218
|
+
<child>
|
219
|
+
<object class="GtkLayout" id="layout6">
|
220
|
+
<property name="visible">True</property>
|
221
|
+
<property name="can_focus">False</property>
|
222
|
+
</object>
|
223
|
+
<packing>
|
224
|
+
<property name="expand">True</property>
|
225
|
+
<property name="fill">True</property>
|
226
|
+
<property name="position">7</property>
|
227
|
+
</packing>
|
228
|
+
</child>
|
229
|
+
<child>
|
230
|
+
<object class="GtkLayout" id="layout7">
|
231
|
+
<property name="visible">True</property>
|
232
|
+
<property name="can_focus">False</property>
|
233
|
+
</object>
|
234
|
+
<packing>
|
235
|
+
<property name="expand">True</property>
|
236
|
+
<property name="fill">True</property>
|
237
|
+
<property name="position">8</property>
|
238
|
+
</packing>
|
239
|
+
</child>
|
240
|
+
<child>
|
241
|
+
<object class="GtkLayout" id="layout8">
|
242
|
+
<property name="visible">True</property>
|
243
|
+
<property name="can_focus">False</property>
|
244
|
+
</object>
|
245
|
+
<packing>
|
246
|
+
<property name="expand">True</property>
|
247
|
+
<property name="fill">True</property>
|
248
|
+
<property name="position">9</property>
|
249
|
+
</packing>
|
250
|
+
</child>
|
251
|
+
<child>
|
252
|
+
<object class="GtkLayout" id="layout9">
|
253
|
+
<property name="visible">True</property>
|
254
|
+
<property name="can_focus">False</property>
|
255
|
+
</object>
|
256
|
+
<packing>
|
257
|
+
<property name="expand">True</property>
|
258
|
+
<property name="fill">True</property>
|
259
|
+
<property name="position">10</property>
|
260
|
+
</packing>
|
261
|
+
</child>
|
262
|
+
</object>
|
263
|
+
</child>
|
264
|
+
<child type="tab">
|
265
|
+
<object class="GtkLabel" id="label4">
|
266
|
+
<property name="visible">True</property>
|
267
|
+
<property name="can_focus">False</property>
|
268
|
+
<property name="label" translatable="yes"><b>Requirements</b></property>
|
269
|
+
<property name="use_markup">True</property>
|
270
|
+
</object>
|
271
|
+
<packing>
|
272
|
+
<property name="tab_fill">False</property>
|
273
|
+
</packing>
|
274
|
+
</child>
|
275
|
+
<child>
|
276
|
+
<object class="GtkTable" id="table3">
|
277
|
+
<property name="visible">True</property>
|
278
|
+
<property name="can_focus">False</property>
|
279
|
+
<property name="n_rows">7</property>
|
280
|
+
<property name="n_columns">2</property>
|
281
|
+
<child>
|
282
|
+
<object class="GtkCheckButton" id="checkbutton_a7">
|
283
|
+
<property name="label" translatable="yes">Analysis of known processes/algorithms?</property>
|
284
|
+
<property name="visible">True</property>
|
285
|
+
<property name="can_focus">True</property>
|
286
|
+
<property name="receives_default">False</property>
|
287
|
+
<property name="use_action_appearance">False</property>
|
288
|
+
<property name="draw_indicator">True</property>
|
289
|
+
</object>
|
290
|
+
<packing>
|
291
|
+
<property name="left_attach">1</property>
|
292
|
+
<property name="right_attach">2</property>
|
293
|
+
<property name="top_attach">6</property>
|
294
|
+
<property name="bottom_attach">7</property>
|
295
|
+
</packing>
|
296
|
+
</child>
|
297
|
+
<child>
|
298
|
+
<object class="GtkAlignment" id="alignment3">
|
299
|
+
<property name="visible">True</property>
|
300
|
+
<property name="can_focus">False</property>
|
301
|
+
<property name="xalign">1</property>
|
302
|
+
<property name="xscale">0</property>
|
303
|
+
<child>
|
304
|
+
<object class="GtkCheckButton" id="checkbutton_a6_2">
|
305
|
+
<property name="visible">True</property>
|
306
|
+
<property name="can_focus">True</property>
|
307
|
+
<property name="receives_default">False</property>
|
308
|
+
<property name="use_action_appearance">False</property>
|
309
|
+
<property name="draw_indicator">True</property>
|
310
|
+
</object>
|
311
|
+
</child>
|
312
|
+
</object>
|
313
|
+
<packing>
|
314
|
+
<property name="top_attach">5</property>
|
315
|
+
<property name="bottom_attach">6</property>
|
316
|
+
</packing>
|
317
|
+
</child>
|
318
|
+
<child>
|
319
|
+
<object class="GtkAlignment" id="alignment4">
|
320
|
+
<property name="visible">True</property>
|
321
|
+
<property name="can_focus">False</property>
|
322
|
+
<property name="xalign">1</property>
|
323
|
+
<property name="xscale">0</property>
|
324
|
+
<child>
|
325
|
+
<object class="GtkCheckButton" id="checkbutton_a5_2">
|
326
|
+
<property name="visible">True</property>
|
327
|
+
<property name="can_focus">True</property>
|
328
|
+
<property name="receives_default">False</property>
|
329
|
+
<property name="use_action_appearance">False</property>
|
330
|
+
<property name="draw_indicator">True</property>
|
331
|
+
</object>
|
332
|
+
</child>
|
333
|
+
</object>
|
334
|
+
<packing>
|
335
|
+
<property name="top_attach">4</property>
|
336
|
+
<property name="bottom_attach">5</property>
|
337
|
+
</packing>
|
338
|
+
</child>
|
339
|
+
<child>
|
340
|
+
<object class="GtkCheckButton" id="checkbutton_a1">
|
341
|
+
<property name="label" translatable="yes">Is there one?</property>
|
342
|
+
<property name="visible">True</property>
|
343
|
+
<property name="can_focus">True</property>
|
344
|
+
<property name="receives_default">False</property>
|
345
|
+
<property name="use_action_appearance">False</property>
|
346
|
+
<property name="draw_indicator">True</property>
|
347
|
+
</object>
|
348
|
+
<packing>
|
349
|
+
<property name="left_attach">1</property>
|
350
|
+
<property name="right_attach">2</property>
|
351
|
+
</packing>
|
352
|
+
</child>
|
353
|
+
<child>
|
354
|
+
<object class="GtkCheckButton" id="checkbutton_a2">
|
355
|
+
<property name="label" translatable="yes">Does it expand on the requirements?</property>
|
356
|
+
<property name="visible">True</property>
|
357
|
+
<property name="can_focus">True</property>
|
358
|
+
<property name="receives_default">False</property>
|
359
|
+
<property name="use_action_appearance">False</property>
|
360
|
+
<property name="draw_indicator">True</property>
|
361
|
+
</object>
|
362
|
+
<packing>
|
363
|
+
<property name="left_attach">1</property>
|
364
|
+
<property name="right_attach">2</property>
|
365
|
+
<property name="top_attach">1</property>
|
366
|
+
<property name="bottom_attach">2</property>
|
367
|
+
</packing>
|
368
|
+
</child>
|
369
|
+
<child>
|
370
|
+
<object class="GtkCheckButton" id="checkbutton_a3">
|
371
|
+
<property name="label" translatable="yes">Does it treat the problem as a black box?</property>
|
372
|
+
<property name="visible">True</property>
|
373
|
+
<property name="can_focus">True</property>
|
374
|
+
<property name="receives_default">False</property>
|
375
|
+
<property name="use_action_appearance">False</property>
|
376
|
+
<property name="draw_indicator">True</property>
|
377
|
+
</object>
|
378
|
+
<packing>
|
379
|
+
<property name="left_attach">1</property>
|
380
|
+
<property name="right_attach">2</property>
|
381
|
+
<property name="top_attach">2</property>
|
382
|
+
<property name="bottom_attach">3</property>
|
383
|
+
</packing>
|
384
|
+
</child>
|
385
|
+
<child>
|
386
|
+
<object class="GtkCheckButton" id="checkbutton_a4">
|
387
|
+
<property name="label" translatable="yes">Does it identify the user?</property>
|
388
|
+
<property name="visible">True</property>
|
389
|
+
<property name="can_focus">True</property>
|
390
|
+
<property name="receives_default">False</property>
|
391
|
+
<property name="use_action_appearance">False</property>
|
392
|
+
<property name="draw_indicator">True</property>
|
393
|
+
</object>
|
394
|
+
<packing>
|
395
|
+
<property name="left_attach">1</property>
|
396
|
+
<property name="right_attach">2</property>
|
397
|
+
<property name="top_attach">3</property>
|
398
|
+
<property name="bottom_attach">4</property>
|
399
|
+
</packing>
|
400
|
+
</child>
|
401
|
+
<child>
|
402
|
+
<object class="GtkCheckButton" id="checkbutton_a5">
|
403
|
+
<property name="label" translatable="yes">Analysis of inputs (units and range)?</property>
|
404
|
+
<property name="visible">True</property>
|
405
|
+
<property name="can_focus">True</property>
|
406
|
+
<property name="receives_default">False</property>
|
407
|
+
<property name="use_action_appearance">False</property>
|
408
|
+
<property name="draw_indicator">True</property>
|
409
|
+
</object>
|
410
|
+
<packing>
|
411
|
+
<property name="left_attach">1</property>
|
412
|
+
<property name="right_attach">2</property>
|
413
|
+
<property name="top_attach">4</property>
|
414
|
+
<property name="bottom_attach">5</property>
|
415
|
+
</packing>
|
416
|
+
</child>
|
417
|
+
<child>
|
418
|
+
<object class="GtkCheckButton" id="checkbutton_a6">
|
419
|
+
<property name="label" translatable="yes">Analysis of outputs (units and range)?</property>
|
420
|
+
<property name="visible">True</property>
|
421
|
+
<property name="can_focus">True</property>
|
422
|
+
<property name="receives_default">False</property>
|
423
|
+
<property name="use_action_appearance">False</property>
|
424
|
+
<property name="draw_indicator">True</property>
|
425
|
+
</object>
|
426
|
+
<packing>
|
427
|
+
<property name="left_attach">1</property>
|
428
|
+
<property name="right_attach">2</property>
|
429
|
+
<property name="top_attach">5</property>
|
430
|
+
<property name="bottom_attach">6</property>
|
431
|
+
</packing>
|
432
|
+
</child>
|
433
|
+
<child>
|
434
|
+
<object class="GtkAlignment" id="alignment2">
|
435
|
+
<property name="visible">True</property>
|
436
|
+
<property name="can_focus">False</property>
|
437
|
+
<property name="xalign">1</property>
|
438
|
+
<property name="xscale">0</property>
|
439
|
+
<child>
|
440
|
+
<object class="GtkCheckButton" id="checkbutton_a7_2">
|
441
|
+
<property name="visible">True</property>
|
442
|
+
<property name="can_focus">True</property>
|
443
|
+
<property name="receives_default">False</property>
|
444
|
+
<property name="use_action_appearance">False</property>
|
445
|
+
<property name="draw_indicator">True</property>
|
446
|
+
</object>
|
447
|
+
</child>
|
448
|
+
</object>
|
449
|
+
<packing>
|
450
|
+
<property name="top_attach">6</property>
|
451
|
+
<property name="bottom_attach">7</property>
|
452
|
+
</packing>
|
453
|
+
</child>
|
454
|
+
<child>
|
455
|
+
<placeholder/>
|
456
|
+
</child>
|
457
|
+
<child>
|
458
|
+
<placeholder/>
|
459
|
+
</child>
|
460
|
+
<child>
|
461
|
+
<placeholder/>
|
462
|
+
</child>
|
463
|
+
<child>
|
464
|
+
<placeholder/>
|
465
|
+
</child>
|
466
|
+
</object>
|
467
|
+
<packing>
|
468
|
+
<property name="position">1</property>
|
469
|
+
</packing>
|
470
|
+
</child>
|
471
|
+
<child type="tab">
|
472
|
+
<object class="GtkLabel" id="label6">
|
473
|
+
<property name="visible">True</property>
|
474
|
+
<property name="can_focus">False</property>
|
475
|
+
<property name="label" translatable="yes"><b>Analysis</b></property>
|
476
|
+
<property name="use_markup">True</property>
|
477
|
+
</object>
|
478
|
+
<packing>
|
479
|
+
<property name="position">1</property>
|
480
|
+
<property name="tab_fill">False</property>
|
481
|
+
</packing>
|
482
|
+
</child>
|
483
|
+
<child>
|
484
|
+
<object class="GtkTable" id="table2">
|
485
|
+
<property name="visible">True</property>
|
486
|
+
<property name="can_focus">False</property>
|
487
|
+
<property name="n_rows">11</property>
|
488
|
+
<child>
|
489
|
+
<object class="GtkCheckButton" id="checkbutton_s1">
|
490
|
+
<property name="label" translatable="yes">Is there one?</property>
|
491
|
+
<property name="visible">True</property>
|
492
|
+
<property name="can_focus">True</property>
|
493
|
+
<property name="receives_default">False</property>
|
494
|
+
<property name="use_action_appearance">False</property>
|
495
|
+
<property name="draw_indicator">True</property>
|
496
|
+
</object>
|
497
|
+
</child>
|
498
|
+
<child>
|
499
|
+
<object class="GtkCheckButton" id="checkbutton_s2">
|
500
|
+
<property name="label" translatable="yes">Does it use analysis to build on requirements?</property>
|
501
|
+
<property name="visible">True</property>
|
502
|
+
<property name="can_focus">True</property>
|
503
|
+
<property name="receives_default">False</property>
|
504
|
+
<property name="use_action_appearance">False</property>
|
505
|
+
<property name="draw_indicator">True</property>
|
506
|
+
</object>
|
507
|
+
<packing>
|
508
|
+
<property name="top_attach">1</property>
|
509
|
+
<property name="bottom_attach">2</property>
|
510
|
+
</packing>
|
511
|
+
</child>
|
512
|
+
<child>
|
513
|
+
<object class="GtkCheckButton" id="checkbutton_s3">
|
514
|
+
<property name="label" translatable="yes">Is it split into mandatory/optional specifications?</property>
|
515
|
+
<property name="visible">True</property>
|
516
|
+
<property name="can_focus">True</property>
|
517
|
+
<property name="receives_default">False</property>
|
518
|
+
<property name="use_action_appearance">False</property>
|
519
|
+
<property name="draw_indicator">True</property>
|
520
|
+
</object>
|
521
|
+
<packing>
|
522
|
+
<property name="top_attach">2</property>
|
523
|
+
<property name="bottom_attach">3</property>
|
524
|
+
</packing>
|
525
|
+
</child>
|
526
|
+
<child>
|
527
|
+
<object class="GtkFixed" id="fixed1">
|
528
|
+
<property name="visible">True</property>
|
529
|
+
<property name="can_focus">False</property>
|
530
|
+
</object>
|
531
|
+
<packing>
|
532
|
+
<property name="top_attach">3</property>
|
533
|
+
<property name="bottom_attach">4</property>
|
534
|
+
</packing>
|
535
|
+
</child>
|
536
|
+
<child>
|
537
|
+
<object class="GtkFixed" id="fixed2">
|
538
|
+
<property name="visible">True</property>
|
539
|
+
<property name="can_focus">False</property>
|
540
|
+
</object>
|
541
|
+
<packing>
|
542
|
+
<property name="top_attach">4</property>
|
543
|
+
<property name="bottom_attach">5</property>
|
544
|
+
</packing>
|
545
|
+
</child>
|
546
|
+
<child>
|
547
|
+
<object class="GtkFixed" id="fixed3">
|
548
|
+
<property name="visible">True</property>
|
549
|
+
<property name="can_focus">False</property>
|
550
|
+
</object>
|
551
|
+
<packing>
|
552
|
+
<property name="top_attach">5</property>
|
553
|
+
<property name="bottom_attach">6</property>
|
554
|
+
</packing>
|
555
|
+
</child>
|
556
|
+
<child>
|
557
|
+
<object class="GtkFixed" id="fixed4">
|
558
|
+
<property name="visible">True</property>
|
559
|
+
<property name="can_focus">False</property>
|
560
|
+
</object>
|
561
|
+
<packing>
|
562
|
+
<property name="top_attach">6</property>
|
563
|
+
<property name="bottom_attach">7</property>
|
564
|
+
</packing>
|
565
|
+
</child>
|
566
|
+
<child>
|
567
|
+
<object class="GtkFixed" id="fixed5">
|
568
|
+
<property name="visible">True</property>
|
569
|
+
<property name="can_focus">False</property>
|
570
|
+
</object>
|
571
|
+
<packing>
|
572
|
+
<property name="top_attach">7</property>
|
573
|
+
<property name="bottom_attach">8</property>
|
574
|
+
</packing>
|
575
|
+
</child>
|
576
|
+
<child>
|
577
|
+
<object class="GtkFixed" id="fixed6">
|
578
|
+
<property name="visible">True</property>
|
579
|
+
<property name="can_focus">False</property>
|
580
|
+
</object>
|
581
|
+
<packing>
|
582
|
+
<property name="top_attach">8</property>
|
583
|
+
<property name="bottom_attach">9</property>
|
584
|
+
</packing>
|
585
|
+
</child>
|
586
|
+
<child>
|
587
|
+
<object class="GtkFixed" id="fixed7">
|
588
|
+
<property name="visible">True</property>
|
589
|
+
<property name="can_focus">False</property>
|
590
|
+
</object>
|
591
|
+
<packing>
|
592
|
+
<property name="top_attach">9</property>
|
593
|
+
<property name="bottom_attach">10</property>
|
594
|
+
</packing>
|
595
|
+
</child>
|
596
|
+
<child>
|
597
|
+
<object class="GtkFixed" id="fixed8">
|
598
|
+
<property name="visible">True</property>
|
599
|
+
<property name="can_focus">False</property>
|
600
|
+
</object>
|
601
|
+
<packing>
|
602
|
+
<property name="top_attach">10</property>
|
603
|
+
<property name="bottom_attach">11</property>
|
604
|
+
</packing>
|
605
|
+
</child>
|
606
|
+
</object>
|
607
|
+
<packing>
|
608
|
+
<property name="position">2</property>
|
609
|
+
</packing>
|
610
|
+
</child>
|
611
|
+
<child type="tab">
|
612
|
+
<object class="GtkLabel" id="label7">
|
613
|
+
<property name="visible">True</property>
|
614
|
+
<property name="can_focus">False</property>
|
615
|
+
<property name="label" translatable="yes"><b>Specification</b></property>
|
616
|
+
<property name="use_markup">True</property>
|
617
|
+
</object>
|
618
|
+
<packing>
|
619
|
+
<property name="position">2</property>
|
620
|
+
<property name="tab_fill">False</property>
|
621
|
+
</packing>
|
622
|
+
</child>
|
623
|
+
<child>
|
624
|
+
<object class="GtkTable" id="table1">
|
625
|
+
<property name="visible">True</property>
|
626
|
+
<property name="can_focus">False</property>
|
627
|
+
<property name="n_rows">11</property>
|
628
|
+
<property name="n_columns">5</property>
|
629
|
+
<child>
|
630
|
+
<object class="GtkCheckButton" id="checkbutton_d1">
|
631
|
+
<property name="label" translatable="yes">Is there one?</property>
|
632
|
+
<property name="visible">True</property>
|
633
|
+
<property name="can_focus">True</property>
|
634
|
+
<property name="receives_default">False</property>
|
635
|
+
<property name="use_action_appearance">False</property>
|
636
|
+
<property name="draw_indicator">True</property>
|
637
|
+
</object>
|
638
|
+
<packing>
|
639
|
+
<property name="left_attach">2</property>
|
640
|
+
<property name="right_attach">3</property>
|
641
|
+
</packing>
|
642
|
+
</child>
|
643
|
+
<child>
|
644
|
+
<object class="GtkCheckButton" id="checkbutton_d2">
|
645
|
+
<property name="label" translatable="yes">Is there a complete user interface design?</property>
|
646
|
+
<property name="visible">True</property>
|
647
|
+
<property name="can_focus">True</property>
|
648
|
+
<property name="receives_default">False</property>
|
649
|
+
<property name="use_action_appearance">False</property>
|
650
|
+
<property name="draw_indicator">True</property>
|
651
|
+
</object>
|
652
|
+
<packing>
|
653
|
+
<property name="left_attach">2</property>
|
654
|
+
<property name="right_attach">3</property>
|
655
|
+
<property name="top_attach">1</property>
|
656
|
+
<property name="bottom_attach">2</property>
|
657
|
+
</packing>
|
658
|
+
</child>
|
659
|
+
<child>
|
660
|
+
<object class="GtkCheckButton" id="checkbutton_d3">
|
661
|
+
<property name="label" translatable="yes">Does it document expected inputs?</property>
|
662
|
+
<property name="visible">True</property>
|
663
|
+
<property name="can_focus">True</property>
|
664
|
+
<property name="receives_default">False</property>
|
665
|
+
<property name="use_action_appearance">False</property>
|
666
|
+
<property name="draw_indicator">True</property>
|
667
|
+
</object>
|
668
|
+
<packing>
|
669
|
+
<property name="left_attach">2</property>
|
670
|
+
<property name="right_attach">3</property>
|
671
|
+
<property name="top_attach">2</property>
|
672
|
+
<property name="bottom_attach">3</property>
|
673
|
+
</packing>
|
674
|
+
</child>
|
675
|
+
<child>
|
676
|
+
<object class="GtkCheckButton" id="checkbutton_d4">
|
677
|
+
<property name="label" translatable="yes">Does it document expected outputs?</property>
|
678
|
+
<property name="visible">True</property>
|
679
|
+
<property name="can_focus">True</property>
|
680
|
+
<property name="receives_default">False</property>
|
681
|
+
<property name="use_action_appearance">False</property>
|
682
|
+
<property name="draw_indicator">True</property>
|
683
|
+
</object>
|
684
|
+
<packing>
|
685
|
+
<property name="left_attach">2</property>
|
686
|
+
<property name="right_attach">3</property>
|
687
|
+
<property name="top_attach">3</property>
|
688
|
+
<property name="bottom_attach">4</property>
|
689
|
+
</packing>
|
690
|
+
</child>
|
691
|
+
<child>
|
692
|
+
<object class="GtkCheckButton" id="checkbutton_d5">
|
693
|
+
<property name="label" translatable="yes">Does the design follow a structured approach?</property>
|
694
|
+
<property name="visible">True</property>
|
695
|
+
<property name="can_focus">True</property>
|
696
|
+
<property name="receives_default">False</property>
|
697
|
+
<property name="use_action_appearance">False</property>
|
698
|
+
<property name="draw_indicator">True</property>
|
699
|
+
</object>
|
700
|
+
<packing>
|
701
|
+
<property name="left_attach">2</property>
|
702
|
+
<property name="right_attach">3</property>
|
703
|
+
<property name="top_attach">4</property>
|
704
|
+
<property name="bottom_attach">5</property>
|
705
|
+
</packing>
|
706
|
+
</child>
|
707
|
+
<child>
|
708
|
+
<object class="GtkCheckButton" id="checkbutton_d6">
|
709
|
+
<property name="label" translatable="yes">Is the structure represented in a diagram?</property>
|
710
|
+
<property name="visible">True</property>
|
711
|
+
<property name="can_focus">True</property>
|
712
|
+
<property name="receives_default">False</property>
|
713
|
+
<property name="use_action_appearance">False</property>
|
714
|
+
<property name="draw_indicator">True</property>
|
715
|
+
</object>
|
716
|
+
<packing>
|
717
|
+
<property name="left_attach">2</property>
|
718
|
+
<property name="right_attach">3</property>
|
719
|
+
<property name="top_attach">5</property>
|
720
|
+
<property name="bottom_attach">6</property>
|
721
|
+
</packing>
|
722
|
+
</child>
|
723
|
+
<child>
|
724
|
+
<object class="GtkCheckButton" id="checkbutton_d7">
|
725
|
+
<property name="label" translatable="yes">Is the problem broken down into functions?</property>
|
726
|
+
<property name="visible">True</property>
|
727
|
+
<property name="can_focus">True</property>
|
728
|
+
<property name="receives_default">False</property>
|
729
|
+
<property name="use_action_appearance">False</property>
|
730
|
+
<property name="draw_indicator">True</property>
|
731
|
+
</object>
|
732
|
+
<packing>
|
733
|
+
<property name="left_attach">2</property>
|
734
|
+
<property name="right_attach">3</property>
|
735
|
+
<property name="top_attach">6</property>
|
736
|
+
<property name="bottom_attach">7</property>
|
737
|
+
</packing>
|
738
|
+
</child>
|
739
|
+
<child>
|
740
|
+
<object class="GtkCheckButton" id="checkbutton_d8">
|
741
|
+
<property name="label" translatable="yes">Are the functions properly documented (table)?</property>
|
742
|
+
<property name="visible">True</property>
|
743
|
+
<property name="can_focus">True</property>
|
744
|
+
<property name="receives_default">False</property>
|
745
|
+
<property name="use_action_appearance">False</property>
|
746
|
+
<property name="draw_indicator">True</property>
|
747
|
+
</object>
|
748
|
+
<packing>
|
749
|
+
<property name="left_attach">2</property>
|
750
|
+
<property name="right_attach">3</property>
|
751
|
+
<property name="top_attach">7</property>
|
752
|
+
<property name="bottom_attach">8</property>
|
753
|
+
</packing>
|
754
|
+
</child>
|
755
|
+
<child>
|
756
|
+
<object class="GtkCheckButton" id="checkbutton_d9">
|
757
|
+
<property name="label" translatable="yes">Are all variables documented?</property>
|
758
|
+
<property name="visible">True</property>
|
759
|
+
<property name="can_focus">True</property>
|
760
|
+
<property name="receives_default">False</property>
|
761
|
+
<property name="use_action_appearance">False</property>
|
762
|
+
<property name="draw_indicator">True</property>
|
763
|
+
</object>
|
764
|
+
<packing>
|
765
|
+
<property name="left_attach">2</property>
|
766
|
+
<property name="right_attach">3</property>
|
767
|
+
<property name="top_attach">8</property>
|
768
|
+
<property name="bottom_attach">9</property>
|
769
|
+
</packing>
|
770
|
+
</child>
|
771
|
+
<child>
|
772
|
+
<object class="GtkCheckButton" id="checkbutton_d10">
|
773
|
+
<property name="label" translatable="yes">Are all algorithms documented?</property>
|
774
|
+
<property name="visible">True</property>
|
775
|
+
<property name="can_focus">True</property>
|
776
|
+
<property name="receives_default">False</property>
|
777
|
+
<property name="use_action_appearance">False</property>
|
778
|
+
<property name="draw_indicator">True</property>
|
779
|
+
</object>
|
780
|
+
<packing>
|
781
|
+
<property name="left_attach">2</property>
|
782
|
+
<property name="right_attach">3</property>
|
783
|
+
<property name="top_attach">9</property>
|
784
|
+
<property name="bottom_attach">10</property>
|
785
|
+
</packing>
|
786
|
+
</child>
|
787
|
+
<child>
|
788
|
+
<object class="GtkCheckButton" id="checkbutton_d11">
|
789
|
+
<property name="label" translatable="yes">Are there explanations for all tables/figures?</property>
|
790
|
+
<property name="visible">True</property>
|
791
|
+
<property name="can_focus">True</property>
|
792
|
+
<property name="receives_default">False</property>
|
793
|
+
<property name="use_action_appearance">False</property>
|
794
|
+
<property name="draw_indicator">True</property>
|
795
|
+
</object>
|
796
|
+
<packing>
|
797
|
+
<property name="left_attach">2</property>
|
798
|
+
<property name="right_attach">3</property>
|
799
|
+
<property name="top_attach">10</property>
|
800
|
+
<property name="bottom_attach">11</property>
|
801
|
+
</packing>
|
802
|
+
</child>
|
803
|
+
<child>
|
804
|
+
<object class="GtkCheckButton" id="checkbutton_d2_2">
|
805
|
+
<property name="visible">True</property>
|
806
|
+
<property name="can_focus">True</property>
|
807
|
+
<property name="receives_default">False</property>
|
808
|
+
<property name="use_action_appearance">False</property>
|
809
|
+
<property name="draw_indicator">True</property>
|
810
|
+
</object>
|
811
|
+
<packing>
|
812
|
+
<property name="left_attach">1</property>
|
813
|
+
<property name="right_attach">2</property>
|
814
|
+
<property name="top_attach">1</property>
|
815
|
+
<property name="bottom_attach">2</property>
|
816
|
+
</packing>
|
817
|
+
</child>
|
818
|
+
<child>
|
819
|
+
<object class="GtkCheckButton" id="checkbutton_d3_2">
|
820
|
+
<property name="visible">True</property>
|
821
|
+
<property name="can_focus">True</property>
|
822
|
+
<property name="receives_default">False</property>
|
823
|
+
<property name="use_action_appearance">False</property>
|
824
|
+
<property name="draw_indicator">True</property>
|
825
|
+
</object>
|
826
|
+
<packing>
|
827
|
+
<property name="left_attach">1</property>
|
828
|
+
<property name="right_attach">2</property>
|
829
|
+
<property name="top_attach">2</property>
|
830
|
+
<property name="bottom_attach">3</property>
|
831
|
+
</packing>
|
832
|
+
</child>
|
833
|
+
<child>
|
834
|
+
<object class="GtkCheckButton" id="checkbutton_d4_2">
|
835
|
+
<property name="visible">True</property>
|
836
|
+
<property name="can_focus">True</property>
|
837
|
+
<property name="receives_default">False</property>
|
838
|
+
<property name="use_action_appearance">False</property>
|
839
|
+
<property name="draw_indicator">True</property>
|
840
|
+
</object>
|
841
|
+
<packing>
|
842
|
+
<property name="left_attach">1</property>
|
843
|
+
<property name="right_attach">2</property>
|
844
|
+
<property name="top_attach">3</property>
|
845
|
+
<property name="bottom_attach">4</property>
|
846
|
+
</packing>
|
847
|
+
</child>
|
848
|
+
<child>
|
849
|
+
<object class="GtkCheckButton" id="checkbutton_d5_2">
|
850
|
+
<property name="visible">True</property>
|
851
|
+
<property name="can_focus">True</property>
|
852
|
+
<property name="receives_default">False</property>
|
853
|
+
<property name="use_action_appearance">False</property>
|
854
|
+
<property name="draw_indicator">True</property>
|
855
|
+
</object>
|
856
|
+
<packing>
|
857
|
+
<property name="left_attach">1</property>
|
858
|
+
<property name="right_attach">2</property>
|
859
|
+
<property name="top_attach">4</property>
|
860
|
+
<property name="bottom_attach">5</property>
|
861
|
+
</packing>
|
862
|
+
</child>
|
863
|
+
<child>
|
864
|
+
<object class="GtkCheckButton" id="checkbutton_d5_3">
|
865
|
+
<property name="visible">True</property>
|
866
|
+
<property name="can_focus">True</property>
|
867
|
+
<property name="receives_default">False</property>
|
868
|
+
<property name="use_action_appearance">False</property>
|
869
|
+
<property name="draw_indicator">True</property>
|
870
|
+
</object>
|
871
|
+
<packing>
|
872
|
+
<property name="top_attach">4</property>
|
873
|
+
<property name="bottom_attach">5</property>
|
874
|
+
</packing>
|
875
|
+
</child>
|
876
|
+
<child>
|
877
|
+
<object class="GtkCheckButton" id="checkbutton_d6_2">
|
878
|
+
<property name="visible">True</property>
|
879
|
+
<property name="can_focus">True</property>
|
880
|
+
<property name="receives_default">False</property>
|
881
|
+
<property name="use_action_appearance">False</property>
|
882
|
+
<property name="draw_indicator">True</property>
|
883
|
+
</object>
|
884
|
+
<packing>
|
885
|
+
<property name="left_attach">1</property>
|
886
|
+
<property name="right_attach">2</property>
|
887
|
+
<property name="top_attach">5</property>
|
888
|
+
<property name="bottom_attach">6</property>
|
889
|
+
</packing>
|
890
|
+
</child>
|
891
|
+
<child>
|
892
|
+
<object class="GtkCheckButton" id="checkbutton_d7_2">
|
893
|
+
<property name="visible">True</property>
|
894
|
+
<property name="can_focus">True</property>
|
895
|
+
<property name="receives_default">False</property>
|
896
|
+
<property name="use_action_appearance">False</property>
|
897
|
+
<property name="draw_indicator">True</property>
|
898
|
+
</object>
|
899
|
+
<packing>
|
900
|
+
<property name="left_attach">1</property>
|
901
|
+
<property name="right_attach">2</property>
|
902
|
+
<property name="top_attach">6</property>
|
903
|
+
<property name="bottom_attach">7</property>
|
904
|
+
</packing>
|
905
|
+
</child>
|
906
|
+
<child>
|
907
|
+
<object class="GtkCheckButton" id="checkbutton_d8_2">
|
908
|
+
<property name="visible">True</property>
|
909
|
+
<property name="can_focus">True</property>
|
910
|
+
<property name="receives_default">False</property>
|
911
|
+
<property name="use_action_appearance">False</property>
|
912
|
+
<property name="draw_indicator">True</property>
|
913
|
+
</object>
|
914
|
+
<packing>
|
915
|
+
<property name="left_attach">1</property>
|
916
|
+
<property name="right_attach">2</property>
|
917
|
+
<property name="top_attach">7</property>
|
918
|
+
<property name="bottom_attach">8</property>
|
919
|
+
</packing>
|
920
|
+
</child>
|
921
|
+
<child>
|
922
|
+
<object class="GtkCheckButton" id="checkbutton_d8_3">
|
923
|
+
<property name="visible">True</property>
|
924
|
+
<property name="can_focus">True</property>
|
925
|
+
<property name="receives_default">False</property>
|
926
|
+
<property name="use_action_appearance">False</property>
|
927
|
+
<property name="draw_indicator">True</property>
|
928
|
+
</object>
|
929
|
+
<packing>
|
930
|
+
<property name="top_attach">7</property>
|
931
|
+
<property name="bottom_attach">8</property>
|
932
|
+
</packing>
|
933
|
+
</child>
|
934
|
+
<child>
|
935
|
+
<object class="GtkCheckButton" id="checkbutton_d9_2">
|
936
|
+
<property name="visible">True</property>
|
937
|
+
<property name="can_focus">True</property>
|
938
|
+
<property name="receives_default">False</property>
|
939
|
+
<property name="use_action_appearance">False</property>
|
940
|
+
<property name="draw_indicator">True</property>
|
941
|
+
</object>
|
942
|
+
<packing>
|
943
|
+
<property name="left_attach">1</property>
|
944
|
+
<property name="right_attach">2</property>
|
945
|
+
<property name="top_attach">8</property>
|
946
|
+
<property name="bottom_attach">9</property>
|
947
|
+
</packing>
|
948
|
+
</child>
|
949
|
+
<child>
|
950
|
+
<object class="GtkCheckButton" id="checkbutton_d9_3">
|
951
|
+
<property name="visible">True</property>
|
952
|
+
<property name="can_focus">True</property>
|
953
|
+
<property name="receives_default">False</property>
|
954
|
+
<property name="use_action_appearance">False</property>
|
955
|
+
<property name="draw_indicator">True</property>
|
956
|
+
</object>
|
957
|
+
<packing>
|
958
|
+
<property name="top_attach">8</property>
|
959
|
+
<property name="bottom_attach">9</property>
|
960
|
+
</packing>
|
961
|
+
</child>
|
962
|
+
<child>
|
963
|
+
<object class="GtkCheckButton" id="checkbutton_d10_2">
|
964
|
+
<property name="visible">True</property>
|
965
|
+
<property name="can_focus">True</property>
|
966
|
+
<property name="receives_default">False</property>
|
967
|
+
<property name="use_action_appearance">False</property>
|
968
|
+
<property name="draw_indicator">True</property>
|
969
|
+
</object>
|
970
|
+
<packing>
|
971
|
+
<property name="left_attach">1</property>
|
972
|
+
<property name="right_attach">2</property>
|
973
|
+
<property name="top_attach">9</property>
|
974
|
+
<property name="bottom_attach">10</property>
|
975
|
+
</packing>
|
976
|
+
</child>
|
977
|
+
<child>
|
978
|
+
<object class="GtkCheckButton" id="checkbutton_d10_3">
|
979
|
+
<property name="visible">True</property>
|
980
|
+
<property name="can_focus">True</property>
|
981
|
+
<property name="receives_default">False</property>
|
982
|
+
<property name="use_action_appearance">False</property>
|
983
|
+
<property name="draw_indicator">True</property>
|
984
|
+
</object>
|
985
|
+
<packing>
|
986
|
+
<property name="top_attach">9</property>
|
987
|
+
<property name="bottom_attach">10</property>
|
988
|
+
</packing>
|
989
|
+
</child>
|
990
|
+
<child>
|
991
|
+
<object class="GtkCheckButton" id="checkbutton_d11_2">
|
992
|
+
<property name="visible">True</property>
|
993
|
+
<property name="can_focus">True</property>
|
994
|
+
<property name="receives_default">False</property>
|
995
|
+
<property name="use_action_appearance">False</property>
|
996
|
+
<property name="draw_indicator">True</property>
|
997
|
+
</object>
|
998
|
+
<packing>
|
999
|
+
<property name="left_attach">1</property>
|
1000
|
+
<property name="right_attach">2</property>
|
1001
|
+
<property name="top_attach">10</property>
|
1002
|
+
<property name="bottom_attach">11</property>
|
1003
|
+
</packing>
|
1004
|
+
</child>
|
1005
|
+
<child>
|
1006
|
+
<object class="GtkLabel" id="label8">
|
1007
|
+
<property name="visible">True</property>
|
1008
|
+
<property name="can_focus">False</property>
|
1009
|
+
<property name="label" translatable="yes"><i>Input/output parameters with types</i></property>
|
1010
|
+
<property name="use_markup">True</property>
|
1011
|
+
</object>
|
1012
|
+
<packing>
|
1013
|
+
<property name="left_attach">4</property>
|
1014
|
+
<property name="right_attach">5</property>
|
1015
|
+
<property name="top_attach">7</property>
|
1016
|
+
<property name="bottom_attach">8</property>
|
1017
|
+
</packing>
|
1018
|
+
</child>
|
1019
|
+
<child>
|
1020
|
+
<object class="GtkLabel" id="label11">
|
1021
|
+
<property name="visible">True</property>
|
1022
|
+
<property name="can_focus">False</property>
|
1023
|
+
<property name="label" translatable="yes"><i>Expected value ranges and types</i></property>
|
1024
|
+
<property name="use_markup">True</property>
|
1025
|
+
</object>
|
1026
|
+
<packing>
|
1027
|
+
<property name="left_attach">4</property>
|
1028
|
+
<property name="right_attach">5</property>
|
1029
|
+
<property name="top_attach">8</property>
|
1030
|
+
<property name="bottom_attach">9</property>
|
1031
|
+
</packing>
|
1032
|
+
</child>
|
1033
|
+
<child>
|
1034
|
+
<object class="GtkLabel" id="label12">
|
1035
|
+
<property name="visible">True</property>
|
1036
|
+
<property name="can_focus">False</property>
|
1037
|
+
<property name="label" translatable="yes"><i>Pseudo-code, flowchart or similar</i></property>
|
1038
|
+
<property name="use_markup">True</property>
|
1039
|
+
</object>
|
1040
|
+
<packing>
|
1041
|
+
<property name="left_attach">4</property>
|
1042
|
+
<property name="right_attach">5</property>
|
1043
|
+
<property name="top_attach">9</property>
|
1044
|
+
<property name="bottom_attach">10</property>
|
1045
|
+
</packing>
|
1046
|
+
</child>
|
1047
|
+
<child>
|
1048
|
+
<object class="GtkVSeparator" id="vseparator1">
|
1049
|
+
<property name="visible">True</property>
|
1050
|
+
<property name="can_focus">False</property>
|
1051
|
+
</object>
|
1052
|
+
<packing>
|
1053
|
+
<property name="left_attach">3</property>
|
1054
|
+
<property name="right_attach">4</property>
|
1055
|
+
<property name="top_attach">7</property>
|
1056
|
+
<property name="bottom_attach">8</property>
|
1057
|
+
</packing>
|
1058
|
+
</child>
|
1059
|
+
<child>
|
1060
|
+
<object class="GtkVSeparator" id="vseparator2">
|
1061
|
+
<property name="visible">True</property>
|
1062
|
+
<property name="can_focus">False</property>
|
1063
|
+
</object>
|
1064
|
+
<packing>
|
1065
|
+
<property name="left_attach">3</property>
|
1066
|
+
<property name="right_attach">4</property>
|
1067
|
+
<property name="top_attach">8</property>
|
1068
|
+
<property name="bottom_attach">9</property>
|
1069
|
+
</packing>
|
1070
|
+
</child>
|
1071
|
+
<child>
|
1072
|
+
<object class="GtkVSeparator" id="vseparator3">
|
1073
|
+
<property name="visible">True</property>
|
1074
|
+
<property name="can_focus">False</property>
|
1075
|
+
</object>
|
1076
|
+
<packing>
|
1077
|
+
<property name="left_attach">3</property>
|
1078
|
+
<property name="right_attach">4</property>
|
1079
|
+
<property name="top_attach">9</property>
|
1080
|
+
<property name="bottom_attach">10</property>
|
1081
|
+
</packing>
|
1082
|
+
</child>
|
1083
|
+
<child>
|
1084
|
+
<placeholder/>
|
1085
|
+
</child>
|
1086
|
+
<child>
|
1087
|
+
<placeholder/>
|
1088
|
+
</child>
|
1089
|
+
<child>
|
1090
|
+
<placeholder/>
|
1091
|
+
</child>
|
1092
|
+
<child>
|
1093
|
+
<placeholder/>
|
1094
|
+
</child>
|
1095
|
+
<child>
|
1096
|
+
<placeholder/>
|
1097
|
+
</child>
|
1098
|
+
<child>
|
1099
|
+
<placeholder/>
|
1100
|
+
</child>
|
1101
|
+
<child>
|
1102
|
+
<placeholder/>
|
1103
|
+
</child>
|
1104
|
+
<child>
|
1105
|
+
<placeholder/>
|
1106
|
+
</child>
|
1107
|
+
<child>
|
1108
|
+
<placeholder/>
|
1109
|
+
</child>
|
1110
|
+
<child>
|
1111
|
+
<placeholder/>
|
1112
|
+
</child>
|
1113
|
+
<child>
|
1114
|
+
<placeholder/>
|
1115
|
+
</child>
|
1116
|
+
<child>
|
1117
|
+
<placeholder/>
|
1118
|
+
</child>
|
1119
|
+
<child>
|
1120
|
+
<placeholder/>
|
1121
|
+
</child>
|
1122
|
+
<child>
|
1123
|
+
<placeholder/>
|
1124
|
+
</child>
|
1125
|
+
<child>
|
1126
|
+
<placeholder/>
|
1127
|
+
</child>
|
1128
|
+
<child>
|
1129
|
+
<placeholder/>
|
1130
|
+
</child>
|
1131
|
+
<child>
|
1132
|
+
<placeholder/>
|
1133
|
+
</child>
|
1134
|
+
<child>
|
1135
|
+
<placeholder/>
|
1136
|
+
</child>
|
1137
|
+
<child>
|
1138
|
+
<placeholder/>
|
1139
|
+
</child>
|
1140
|
+
<child>
|
1141
|
+
<placeholder/>
|
1142
|
+
</child>
|
1143
|
+
<child>
|
1144
|
+
<placeholder/>
|
1145
|
+
</child>
|
1146
|
+
<child>
|
1147
|
+
<placeholder/>
|
1148
|
+
</child>
|
1149
|
+
<child>
|
1150
|
+
<placeholder/>
|
1151
|
+
</child>
|
1152
|
+
<child>
|
1153
|
+
<placeholder/>
|
1154
|
+
</child>
|
1155
|
+
</object>
|
1156
|
+
<packing>
|
1157
|
+
<property name="position">3</property>
|
1158
|
+
</packing>
|
1159
|
+
</child>
|
1160
|
+
<child type="tab">
|
1161
|
+
<object class="GtkLabel" id="label13">
|
1162
|
+
<property name="visible">True</property>
|
1163
|
+
<property name="can_focus">False</property>
|
1164
|
+
<property name="label" translatable="yes"><b>Design</b></property>
|
1165
|
+
<property name="use_markup">True</property>
|
1166
|
+
</object>
|
1167
|
+
<packing>
|
1168
|
+
<property name="position">3</property>
|
1169
|
+
<property name="tab_fill">False</property>
|
1170
|
+
</packing>
|
1171
|
+
</child>
|
1172
|
+
</object>
|
1173
|
+
</child>
|
1174
|
+
<child type="tab">
|
1175
|
+
<object class="GtkLabel" id="label1">
|
1176
|
+
<property name="visible">True</property>
|
1177
|
+
<property name="can_focus">False</property>
|
1178
|
+
<property name="label" translatable="yes"><b>Part One</b></property>
|
1179
|
+
<property name="use_markup">True</property>
|
1180
|
+
</object>
|
1181
|
+
<packing>
|
1182
|
+
<property name="tab_fill">False</property>
|
1183
|
+
</packing>
|
1184
|
+
</child>
|
1185
|
+
<child>
|
1186
|
+
<object class="GtkNotebook" id="notebook_part_two">
|
1187
|
+
<property name="visible">True</property>
|
1188
|
+
<property name="can_focus">True</property>
|
1189
|
+
<property name="tab_pos">left</property>
|
1190
|
+
<child>
|
1191
|
+
<object class="GtkVBox" id="vbox3">
|
1192
|
+
<property name="visible">True</property>
|
1193
|
+
<property name="can_focus">False</property>
|
1194
|
+
<child>
|
1195
|
+
<object class="GtkCheckButton" id="checkbutton_i1">
|
1196
|
+
<property name="label" translatable="yes">Is there one?</property>
|
1197
|
+
<property name="visible">True</property>
|
1198
|
+
<property name="can_focus">True</property>
|
1199
|
+
<property name="receives_default">False</property>
|
1200
|
+
<property name="use_action_appearance">False</property>
|
1201
|
+
<property name="xalign">0.50999999046325684</property>
|
1202
|
+
<property name="draw_indicator">True</property>
|
1203
|
+
</object>
|
1204
|
+
<packing>
|
1205
|
+
<property name="expand">True</property>
|
1206
|
+
<property name="fill">True</property>
|
1207
|
+
<property name="position">0</property>
|
1208
|
+
</packing>
|
1209
|
+
</child>
|
1210
|
+
<child>
|
1211
|
+
<object class="GtkCheckButton" id="checkbutton_i2">
|
1212
|
+
<property name="label" translatable="yes">Does it document the program (file) structure?</property>
|
1213
|
+
<property name="visible">True</property>
|
1214
|
+
<property name="can_focus">True</property>
|
1215
|
+
<property name="receives_default">False</property>
|
1216
|
+
<property name="use_action_appearance">False</property>
|
1217
|
+
<property name="draw_indicator">True</property>
|
1218
|
+
</object>
|
1219
|
+
<packing>
|
1220
|
+
<property name="expand">True</property>
|
1221
|
+
<property name="fill">True</property>
|
1222
|
+
<property name="position">1</property>
|
1223
|
+
</packing>
|
1224
|
+
</child>
|
1225
|
+
<child>
|
1226
|
+
<object class="GtkCheckButton" id="checkbutton_i3">
|
1227
|
+
<property name="label" translatable="yes">Does it document (and justify) design changes?</property>
|
1228
|
+
<property name="visible">True</property>
|
1229
|
+
<property name="can_focus">True</property>
|
1230
|
+
<property name="receives_default">False</property>
|
1231
|
+
<property name="use_action_appearance">False</property>
|
1232
|
+
<property name="draw_indicator">True</property>
|
1233
|
+
</object>
|
1234
|
+
<packing>
|
1235
|
+
<property name="expand">True</property>
|
1236
|
+
<property name="fill">True</property>
|
1237
|
+
<property name="position">2</property>
|
1238
|
+
</packing>
|
1239
|
+
</child>
|
1240
|
+
<child>
|
1241
|
+
<object class="GtkFixed" id="fixed9">
|
1242
|
+
<property name="visible">True</property>
|
1243
|
+
<property name="can_focus">False</property>
|
1244
|
+
</object>
|
1245
|
+
<packing>
|
1246
|
+
<property name="expand">True</property>
|
1247
|
+
<property name="fill">True</property>
|
1248
|
+
<property name="position">3</property>
|
1249
|
+
</packing>
|
1250
|
+
</child>
|
1251
|
+
<child>
|
1252
|
+
<object class="GtkFixed" id="fixed10">
|
1253
|
+
<property name="visible">True</property>
|
1254
|
+
<property name="can_focus">False</property>
|
1255
|
+
</object>
|
1256
|
+
<packing>
|
1257
|
+
<property name="expand">True</property>
|
1258
|
+
<property name="fill">True</property>
|
1259
|
+
<property name="position">4</property>
|
1260
|
+
</packing>
|
1261
|
+
</child>
|
1262
|
+
<child>
|
1263
|
+
<object class="GtkFixed" id="fixed11">
|
1264
|
+
<property name="visible">True</property>
|
1265
|
+
<property name="can_focus">False</property>
|
1266
|
+
</object>
|
1267
|
+
<packing>
|
1268
|
+
<property name="expand">True</property>
|
1269
|
+
<property name="fill">True</property>
|
1270
|
+
<property name="position">5</property>
|
1271
|
+
</packing>
|
1272
|
+
</child>
|
1273
|
+
<child>
|
1274
|
+
<object class="GtkFixed" id="fixed12">
|
1275
|
+
<property name="visible">True</property>
|
1276
|
+
<property name="can_focus">False</property>
|
1277
|
+
</object>
|
1278
|
+
<packing>
|
1279
|
+
<property name="expand">True</property>
|
1280
|
+
<property name="fill">True</property>
|
1281
|
+
<property name="position">6</property>
|
1282
|
+
</packing>
|
1283
|
+
</child>
|
1284
|
+
<child>
|
1285
|
+
<object class="GtkFixed" id="fixed13">
|
1286
|
+
<property name="visible">True</property>
|
1287
|
+
<property name="can_focus">False</property>
|
1288
|
+
</object>
|
1289
|
+
<packing>
|
1290
|
+
<property name="expand">True</property>
|
1291
|
+
<property name="fill">True</property>
|
1292
|
+
<property name="position">7</property>
|
1293
|
+
</packing>
|
1294
|
+
</child>
|
1295
|
+
<child>
|
1296
|
+
<object class="GtkFixed" id="fixed14">
|
1297
|
+
<property name="visible">True</property>
|
1298
|
+
<property name="can_focus">False</property>
|
1299
|
+
</object>
|
1300
|
+
<packing>
|
1301
|
+
<property name="expand">True</property>
|
1302
|
+
<property name="fill">True</property>
|
1303
|
+
<property name="position">8</property>
|
1304
|
+
</packing>
|
1305
|
+
</child>
|
1306
|
+
</object>
|
1307
|
+
</child>
|
1308
|
+
<child type="tab">
|
1309
|
+
<object class="GtkLabel" id="label3">
|
1310
|
+
<property name="visible">True</property>
|
1311
|
+
<property name="can_focus">False</property>
|
1312
|
+
<property name="label" translatable="yes"><b>Implementation Report</b></property>
|
1313
|
+
<property name="use_markup">True</property>
|
1314
|
+
</object>
|
1315
|
+
<packing>
|
1316
|
+
<property name="tab_fill">False</property>
|
1317
|
+
</packing>
|
1318
|
+
</child>
|
1319
|
+
<child>
|
1320
|
+
<object class="GtkTable" id="table5">
|
1321
|
+
<property name="visible">True</property>
|
1322
|
+
<property name="can_focus">False</property>
|
1323
|
+
<property name="n_rows">11</property>
|
1324
|
+
<property name="n_columns">4</property>
|
1325
|
+
<child>
|
1326
|
+
<object class="GtkCheckButton" id="checkbutton_cl1">
|
1327
|
+
<property name="label" translatable="yes">Is there one?</property>
|
1328
|
+
<property name="visible">True</property>
|
1329
|
+
<property name="can_focus">True</property>
|
1330
|
+
<property name="receives_default">False</property>
|
1331
|
+
<property name="use_action_appearance">False</property>
|
1332
|
+
<property name="draw_indicator">True</property>
|
1333
|
+
</object>
|
1334
|
+
<packing>
|
1335
|
+
<property name="left_attach">2</property>
|
1336
|
+
<property name="right_attach">3</property>
|
1337
|
+
</packing>
|
1338
|
+
</child>
|
1339
|
+
<child>
|
1340
|
+
<object class="GtkCheckButton" id="checkbutton_cl2">
|
1341
|
+
<property name="label" translatable="yes">Is there appropriate use of structures?</property>
|
1342
|
+
<property name="visible">True</property>
|
1343
|
+
<property name="can_focus">True</property>
|
1344
|
+
<property name="receives_default">False</property>
|
1345
|
+
<property name="use_action_appearance">False</property>
|
1346
|
+
<property name="draw_indicator">True</property>
|
1347
|
+
</object>
|
1348
|
+
<packing>
|
1349
|
+
<property name="left_attach">2</property>
|
1350
|
+
<property name="right_attach">3</property>
|
1351
|
+
<property name="top_attach">1</property>
|
1352
|
+
<property name="bottom_attach">2</property>
|
1353
|
+
</packing>
|
1354
|
+
</child>
|
1355
|
+
<child>
|
1356
|
+
<object class="GtkCheckButton" id="checkbutton_cl3">
|
1357
|
+
<property name="label" translatable="yes">Is it well commented?</property>
|
1358
|
+
<property name="visible">True</property>
|
1359
|
+
<property name="can_focus">True</property>
|
1360
|
+
<property name="receives_default">False</property>
|
1361
|
+
<property name="use_action_appearance">False</property>
|
1362
|
+
<property name="draw_indicator">True</property>
|
1363
|
+
</object>
|
1364
|
+
<packing>
|
1365
|
+
<property name="left_attach">2</property>
|
1366
|
+
<property name="right_attach">3</property>
|
1367
|
+
<property name="top_attach">2</property>
|
1368
|
+
<property name="bottom_attach">3</property>
|
1369
|
+
</packing>
|
1370
|
+
</child>
|
1371
|
+
<child>
|
1372
|
+
<object class="GtkCheckButton" id="checkbutton_cl4">
|
1373
|
+
<property name="label" translatable="yes">Is it well laid out?</property>
|
1374
|
+
<property name="visible">True</property>
|
1375
|
+
<property name="can_focus">True</property>
|
1376
|
+
<property name="receives_default">False</property>
|
1377
|
+
<property name="use_action_appearance">False</property>
|
1378
|
+
<property name="draw_indicator">True</property>
|
1379
|
+
</object>
|
1380
|
+
<packing>
|
1381
|
+
<property name="left_attach">2</property>
|
1382
|
+
<property name="right_attach">3</property>
|
1383
|
+
<property name="top_attach">3</property>
|
1384
|
+
<property name="bottom_attach">4</property>
|
1385
|
+
</packing>
|
1386
|
+
</child>
|
1387
|
+
<child>
|
1388
|
+
<object class="GtkCheckButton" id="checkbutton_cl5">
|
1389
|
+
<property name="label" translatable="yes">Does it use #defines?</property>
|
1390
|
+
<property name="visible">True</property>
|
1391
|
+
<property name="can_focus">True</property>
|
1392
|
+
<property name="receives_default">False</property>
|
1393
|
+
<property name="use_action_appearance">False</property>
|
1394
|
+
<property name="draw_indicator">True</property>
|
1395
|
+
</object>
|
1396
|
+
<packing>
|
1397
|
+
<property name="left_attach">2</property>
|
1398
|
+
<property name="right_attach">3</property>
|
1399
|
+
<property name="top_attach">4</property>
|
1400
|
+
<property name="bottom_attach">5</property>
|
1401
|
+
</packing>
|
1402
|
+
</child>
|
1403
|
+
<child>
|
1404
|
+
<object class="GtkCheckButton" id="checkbutton_cl6">
|
1405
|
+
<property name="label" translatable="yes">Does it use header files?</property>
|
1406
|
+
<property name="visible">True</property>
|
1407
|
+
<property name="can_focus">True</property>
|
1408
|
+
<property name="receives_default">False</property>
|
1409
|
+
<property name="use_action_appearance">False</property>
|
1410
|
+
<property name="draw_indicator">True</property>
|
1411
|
+
</object>
|
1412
|
+
<packing>
|
1413
|
+
<property name="left_attach">2</property>
|
1414
|
+
<property name="right_attach">3</property>
|
1415
|
+
<property name="top_attach">5</property>
|
1416
|
+
<property name="bottom_attach">6</property>
|
1417
|
+
</packing>
|
1418
|
+
</child>
|
1419
|
+
<child>
|
1420
|
+
<object class="GtkCheckButton" id="checkbutton_cl7">
|
1421
|
+
<property name="label" translatable="yes">Does it match the design?</property>
|
1422
|
+
<property name="visible">True</property>
|
1423
|
+
<property name="can_focus">True</property>
|
1424
|
+
<property name="receives_default">False</property>
|
1425
|
+
<property name="use_action_appearance">False</property>
|
1426
|
+
<property name="draw_indicator">True</property>
|
1427
|
+
</object>
|
1428
|
+
<packing>
|
1429
|
+
<property name="left_attach">2</property>
|
1430
|
+
<property name="right_attach">3</property>
|
1431
|
+
<property name="top_attach">6</property>
|
1432
|
+
<property name="bottom_attach">7</property>
|
1433
|
+
</packing>
|
1434
|
+
</child>
|
1435
|
+
<child>
|
1436
|
+
<object class="GtkCheckButton" id="checkbutton_cl8">
|
1437
|
+
<property name="label" translatable="yes">Does it use functions well?</property>
|
1438
|
+
<property name="visible">True</property>
|
1439
|
+
<property name="can_focus">True</property>
|
1440
|
+
<property name="receives_default">False</property>
|
1441
|
+
<property name="use_action_appearance">False</property>
|
1442
|
+
<property name="draw_indicator">True</property>
|
1443
|
+
</object>
|
1444
|
+
<packing>
|
1445
|
+
<property name="left_attach">2</property>
|
1446
|
+
<property name="right_attach">3</property>
|
1447
|
+
<property name="top_attach">7</property>
|
1448
|
+
<property name="bottom_attach">8</property>
|
1449
|
+
</packing>
|
1450
|
+
</child>
|
1451
|
+
<child>
|
1452
|
+
<object class="GtkCheckButton" id="checkbutton_cl9">
|
1453
|
+
<property name="label" translatable="yes">Are function/variable names well chosen?</property>
|
1454
|
+
<property name="visible">True</property>
|
1455
|
+
<property name="can_focus">True</property>
|
1456
|
+
<property name="receives_default">False</property>
|
1457
|
+
<property name="use_action_appearance">False</property>
|
1458
|
+
<property name="draw_indicator">True</property>
|
1459
|
+
</object>
|
1460
|
+
<packing>
|
1461
|
+
<property name="left_attach">2</property>
|
1462
|
+
<property name="right_attach">3</property>
|
1463
|
+
<property name="top_attach">8</property>
|
1464
|
+
<property name="bottom_attach">9</property>
|
1465
|
+
</packing>
|
1466
|
+
</child>
|
1467
|
+
<child>
|
1468
|
+
<object class="GtkCheckButton" id="checkbutton_cl10">
|
1469
|
+
<property name="label" translatable="yes">* Use of global variables</property>
|
1470
|
+
<property name="visible">True</property>
|
1471
|
+
<property name="can_focus">True</property>
|
1472
|
+
<property name="receives_default">False</property>
|
1473
|
+
<property name="use_action_appearance">False</property>
|
1474
|
+
<property name="relief">none</property>
|
1475
|
+
<property name="xalign">0.49000000953674316</property>
|
1476
|
+
<property name="draw_indicator">True</property>
|
1477
|
+
</object>
|
1478
|
+
<packing>
|
1479
|
+
<property name="left_attach">2</property>
|
1480
|
+
<property name="right_attach">3</property>
|
1481
|
+
<property name="top_attach">9</property>
|
1482
|
+
<property name="bottom_attach">10</property>
|
1483
|
+
</packing>
|
1484
|
+
</child>
|
1485
|
+
<child>
|
1486
|
+
<object class="GtkCheckButton" id="checkbutton_cl11">
|
1487
|
+
<property name="label" translatable="yes">* Hard coded numeric values (e.g. Coordinates)</property>
|
1488
|
+
<property name="visible">True</property>
|
1489
|
+
<property name="can_focus">True</property>
|
1490
|
+
<property name="receives_default">False</property>
|
1491
|
+
<property name="use_action_appearance">False</property>
|
1492
|
+
<property name="draw_indicator">True</property>
|
1493
|
+
</object>
|
1494
|
+
<packing>
|
1495
|
+
<property name="left_attach">2</property>
|
1496
|
+
<property name="right_attach">3</property>
|
1497
|
+
<property name="top_attach">10</property>
|
1498
|
+
<property name="bottom_attach">11</property>
|
1499
|
+
</packing>
|
1500
|
+
</child>
|
1501
|
+
<child>
|
1502
|
+
<object class="GtkAlignment" id="alignment6">
|
1503
|
+
<property name="visible">True</property>
|
1504
|
+
<property name="can_focus">False</property>
|
1505
|
+
<property name="xalign">1</property>
|
1506
|
+
<property name="xscale">0</property>
|
1507
|
+
<child>
|
1508
|
+
<object class="GtkCheckButton" id="checkbutton_cl2_3">
|
1509
|
+
<property name="visible">True</property>
|
1510
|
+
<property name="can_focus">True</property>
|
1511
|
+
<property name="receives_default">False</property>
|
1512
|
+
<property name="use_action_appearance">False</property>
|
1513
|
+
<property name="draw_indicator">True</property>
|
1514
|
+
</object>
|
1515
|
+
</child>
|
1516
|
+
</object>
|
1517
|
+
<packing>
|
1518
|
+
<property name="top_attach">1</property>
|
1519
|
+
<property name="bottom_attach">2</property>
|
1520
|
+
</packing>
|
1521
|
+
</child>
|
1522
|
+
<child>
|
1523
|
+
<object class="GtkAlignment" id="alignment7">
|
1524
|
+
<property name="visible">True</property>
|
1525
|
+
<property name="can_focus">False</property>
|
1526
|
+
<property name="xalign">1</property>
|
1527
|
+
<property name="xscale">0</property>
|
1528
|
+
<child>
|
1529
|
+
<object class="GtkCheckButton" id="checkbutton_cl8_3">
|
1530
|
+
<property name="visible">True</property>
|
1531
|
+
<property name="can_focus">True</property>
|
1532
|
+
<property name="receives_default">False</property>
|
1533
|
+
<property name="use_action_appearance">False</property>
|
1534
|
+
<property name="draw_indicator">True</property>
|
1535
|
+
</object>
|
1536
|
+
</child>
|
1537
|
+
</object>
|
1538
|
+
<packing>
|
1539
|
+
<property name="top_attach">7</property>
|
1540
|
+
<property name="bottom_attach">8</property>
|
1541
|
+
</packing>
|
1542
|
+
</child>
|
1543
|
+
<child>
|
1544
|
+
<object class="GtkAlignment" id="alignment8">
|
1545
|
+
<property name="visible">True</property>
|
1546
|
+
<property name="can_focus">False</property>
|
1547
|
+
<property name="xalign">1</property>
|
1548
|
+
<property name="xscale">0</property>
|
1549
|
+
<child>
|
1550
|
+
<object class="GtkCheckButton" id="checkbutton_cl9_3">
|
1551
|
+
<property name="visible">True</property>
|
1552
|
+
<property name="can_focus">True</property>
|
1553
|
+
<property name="receives_default">False</property>
|
1554
|
+
<property name="use_action_appearance">False</property>
|
1555
|
+
<property name="draw_indicator">True</property>
|
1556
|
+
</object>
|
1557
|
+
</child>
|
1558
|
+
</object>
|
1559
|
+
<packing>
|
1560
|
+
<property name="top_attach">8</property>
|
1561
|
+
<property name="bottom_attach">9</property>
|
1562
|
+
</packing>
|
1563
|
+
</child>
|
1564
|
+
<child>
|
1565
|
+
<object class="GtkAlignment" id="alignment9">
|
1566
|
+
<property name="visible">True</property>
|
1567
|
+
<property name="can_focus">False</property>
|
1568
|
+
<property name="xalign">1</property>
|
1569
|
+
<property name="xscale">0</property>
|
1570
|
+
<child>
|
1571
|
+
<object class="GtkCheckButton" id="checkbutton_cl2_2">
|
1572
|
+
<property name="visible">True</property>
|
1573
|
+
<property name="can_focus">True</property>
|
1574
|
+
<property name="receives_default">False</property>
|
1575
|
+
<property name="use_action_appearance">False</property>
|
1576
|
+
<property name="draw_indicator">True</property>
|
1577
|
+
</object>
|
1578
|
+
</child>
|
1579
|
+
</object>
|
1580
|
+
<packing>
|
1581
|
+
<property name="left_attach">1</property>
|
1582
|
+
<property name="right_attach">2</property>
|
1583
|
+
<property name="top_attach">1</property>
|
1584
|
+
<property name="bottom_attach">2</property>
|
1585
|
+
</packing>
|
1586
|
+
</child>
|
1587
|
+
<child>
|
1588
|
+
<object class="GtkAlignment" id="alignment10">
|
1589
|
+
<property name="visible">True</property>
|
1590
|
+
<property name="can_focus">False</property>
|
1591
|
+
<property name="xalign">1</property>
|
1592
|
+
<property name="xscale">0</property>
|
1593
|
+
<child>
|
1594
|
+
<object class="GtkCheckButton" id="checkbutton_cl3_2">
|
1595
|
+
<property name="visible">True</property>
|
1596
|
+
<property name="can_focus">True</property>
|
1597
|
+
<property name="receives_default">False</property>
|
1598
|
+
<property name="use_action_appearance">False</property>
|
1599
|
+
<property name="draw_indicator">True</property>
|
1600
|
+
</object>
|
1601
|
+
</child>
|
1602
|
+
</object>
|
1603
|
+
<packing>
|
1604
|
+
<property name="left_attach">1</property>
|
1605
|
+
<property name="right_attach">2</property>
|
1606
|
+
<property name="top_attach">2</property>
|
1607
|
+
<property name="bottom_attach">3</property>
|
1608
|
+
</packing>
|
1609
|
+
</child>
|
1610
|
+
<child>
|
1611
|
+
<object class="GtkAlignment" id="alignment11">
|
1612
|
+
<property name="visible">True</property>
|
1613
|
+
<property name="can_focus">False</property>
|
1614
|
+
<property name="xalign">1</property>
|
1615
|
+
<property name="xscale">0</property>
|
1616
|
+
<child>
|
1617
|
+
<object class="GtkCheckButton" id="checkbutton_cl4_2">
|
1618
|
+
<property name="visible">True</property>
|
1619
|
+
<property name="can_focus">True</property>
|
1620
|
+
<property name="receives_default">False</property>
|
1621
|
+
<property name="use_action_appearance">False</property>
|
1622
|
+
<property name="draw_indicator">True</property>
|
1623
|
+
</object>
|
1624
|
+
</child>
|
1625
|
+
</object>
|
1626
|
+
<packing>
|
1627
|
+
<property name="left_attach">1</property>
|
1628
|
+
<property name="right_attach">2</property>
|
1629
|
+
<property name="top_attach">3</property>
|
1630
|
+
<property name="bottom_attach">4</property>
|
1631
|
+
</packing>
|
1632
|
+
</child>
|
1633
|
+
<child>
|
1634
|
+
<object class="GtkAlignment" id="alignment12">
|
1635
|
+
<property name="visible">True</property>
|
1636
|
+
<property name="can_focus">False</property>
|
1637
|
+
<property name="xalign">1</property>
|
1638
|
+
<property name="xscale">0</property>
|
1639
|
+
<child>
|
1640
|
+
<object class="GtkCheckButton" id="checkbutton_cl8_2">
|
1641
|
+
<property name="visible">True</property>
|
1642
|
+
<property name="can_focus">True</property>
|
1643
|
+
<property name="receives_default">False</property>
|
1644
|
+
<property name="use_action_appearance">False</property>
|
1645
|
+
<property name="draw_indicator">True</property>
|
1646
|
+
</object>
|
1647
|
+
</child>
|
1648
|
+
</object>
|
1649
|
+
<packing>
|
1650
|
+
<property name="left_attach">1</property>
|
1651
|
+
<property name="right_attach">2</property>
|
1652
|
+
<property name="top_attach">7</property>
|
1653
|
+
<property name="bottom_attach">8</property>
|
1654
|
+
</packing>
|
1655
|
+
</child>
|
1656
|
+
<child>
|
1657
|
+
<object class="GtkAlignment" id="alignment13">
|
1658
|
+
<property name="visible">True</property>
|
1659
|
+
<property name="can_focus">False</property>
|
1660
|
+
<property name="xalign">1</property>
|
1661
|
+
<property name="xscale">0</property>
|
1662
|
+
<child>
|
1663
|
+
<object class="GtkCheckButton" id="checkbutton_cl9_2">
|
1664
|
+
<property name="visible">True</property>
|
1665
|
+
<property name="can_focus">True</property>
|
1666
|
+
<property name="receives_default">False</property>
|
1667
|
+
<property name="use_action_appearance">False</property>
|
1668
|
+
<property name="draw_indicator">True</property>
|
1669
|
+
</object>
|
1670
|
+
</child>
|
1671
|
+
</object>
|
1672
|
+
<packing>
|
1673
|
+
<property name="left_attach">1</property>
|
1674
|
+
<property name="right_attach">2</property>
|
1675
|
+
<property name="top_attach">8</property>
|
1676
|
+
<property name="bottom_attach">9</property>
|
1677
|
+
</packing>
|
1678
|
+
</child>
|
1679
|
+
<child>
|
1680
|
+
<object class="GtkAlignment" id="alignment14">
|
1681
|
+
<property name="visible">True</property>
|
1682
|
+
<property name="can_focus">False</property>
|
1683
|
+
<property name="xalign">1</property>
|
1684
|
+
<property name="xscale">0</property>
|
1685
|
+
<child>
|
1686
|
+
<object class="GtkCheckButton" id="checkbutton_cl10_2">
|
1687
|
+
<property name="visible">True</property>
|
1688
|
+
<property name="can_focus">True</property>
|
1689
|
+
<property name="receives_default">False</property>
|
1690
|
+
<property name="use_action_appearance">False</property>
|
1691
|
+
<property name="draw_indicator">True</property>
|
1692
|
+
</object>
|
1693
|
+
</child>
|
1694
|
+
</object>
|
1695
|
+
<packing>
|
1696
|
+
<property name="left_attach">1</property>
|
1697
|
+
<property name="right_attach">2</property>
|
1698
|
+
<property name="top_attach">9</property>
|
1699
|
+
<property name="bottom_attach">10</property>
|
1700
|
+
</packing>
|
1701
|
+
</child>
|
1702
|
+
<child>
|
1703
|
+
<object class="GtkAlignment" id="alignment15">
|
1704
|
+
<property name="visible">True</property>
|
1705
|
+
<property name="can_focus">False</property>
|
1706
|
+
<property name="xalign">1</property>
|
1707
|
+
<property name="xscale">0</property>
|
1708
|
+
<child>
|
1709
|
+
<object class="GtkCheckButton" id="checkbutton_cl11_2">
|
1710
|
+
<property name="visible">True</property>
|
1711
|
+
<property name="can_focus">True</property>
|
1712
|
+
<property name="receives_default">False</property>
|
1713
|
+
<property name="use_action_appearance">False</property>
|
1714
|
+
<property name="draw_indicator">True</property>
|
1715
|
+
</object>
|
1716
|
+
</child>
|
1717
|
+
</object>
|
1718
|
+
<packing>
|
1719
|
+
<property name="left_attach">1</property>
|
1720
|
+
<property name="right_attach">2</property>
|
1721
|
+
<property name="top_attach">10</property>
|
1722
|
+
<property name="bottom_attach">11</property>
|
1723
|
+
</packing>
|
1724
|
+
</child>
|
1725
|
+
<child>
|
1726
|
+
<object class="GtkLabel" id="label18">
|
1727
|
+
<property name="visible">True</property>
|
1728
|
+
<property name="can_focus">False</property>
|
1729
|
+
<property name="label" translatable="yes"> </property>
|
1730
|
+
</object>
|
1731
|
+
<packing>
|
1732
|
+
<property name="left_attach">3</property>
|
1733
|
+
<property name="right_attach">4</property>
|
1734
|
+
</packing>
|
1735
|
+
</child>
|
1736
|
+
<child>
|
1737
|
+
<placeholder/>
|
1738
|
+
</child>
|
1739
|
+
<child>
|
1740
|
+
<placeholder/>
|
1741
|
+
</child>
|
1742
|
+
<child>
|
1743
|
+
<placeholder/>
|
1744
|
+
</child>
|
1745
|
+
<child>
|
1746
|
+
<placeholder/>
|
1747
|
+
</child>
|
1748
|
+
<child>
|
1749
|
+
<placeholder/>
|
1750
|
+
</child>
|
1751
|
+
<child>
|
1752
|
+
<placeholder/>
|
1753
|
+
</child>
|
1754
|
+
<child>
|
1755
|
+
<placeholder/>
|
1756
|
+
</child>
|
1757
|
+
<child>
|
1758
|
+
<placeholder/>
|
1759
|
+
</child>
|
1760
|
+
<child>
|
1761
|
+
<placeholder/>
|
1762
|
+
</child>
|
1763
|
+
<child>
|
1764
|
+
<placeholder/>
|
1765
|
+
</child>
|
1766
|
+
<child>
|
1767
|
+
<placeholder/>
|
1768
|
+
</child>
|
1769
|
+
<child>
|
1770
|
+
<placeholder/>
|
1771
|
+
</child>
|
1772
|
+
<child>
|
1773
|
+
<placeholder/>
|
1774
|
+
</child>
|
1775
|
+
<child>
|
1776
|
+
<placeholder/>
|
1777
|
+
</child>
|
1778
|
+
<child>
|
1779
|
+
<placeholder/>
|
1780
|
+
</child>
|
1781
|
+
<child>
|
1782
|
+
<placeholder/>
|
1783
|
+
</child>
|
1784
|
+
<child>
|
1785
|
+
<placeholder/>
|
1786
|
+
</child>
|
1787
|
+
<child>
|
1788
|
+
<placeholder/>
|
1789
|
+
</child>
|
1790
|
+
<child>
|
1791
|
+
<placeholder/>
|
1792
|
+
</child>
|
1793
|
+
<child>
|
1794
|
+
<placeholder/>
|
1795
|
+
</child>
|
1796
|
+
<child>
|
1797
|
+
<placeholder/>
|
1798
|
+
</child>
|
1799
|
+
<child>
|
1800
|
+
<placeholder/>
|
1801
|
+
</child>
|
1802
|
+
</object>
|
1803
|
+
<packing>
|
1804
|
+
<property name="position">1</property>
|
1805
|
+
</packing>
|
1806
|
+
</child>
|
1807
|
+
<child type="tab">
|
1808
|
+
<object class="GtkLabel" id="label14">
|
1809
|
+
<property name="visible">True</property>
|
1810
|
+
<property name="can_focus">False</property>
|
1811
|
+
<property name="label" translatable="yes"><b>Code Listing</b></property>
|
1812
|
+
<property name="use_markup">True</property>
|
1813
|
+
</object>
|
1814
|
+
<packing>
|
1815
|
+
<property name="position">1</property>
|
1816
|
+
<property name="tab_fill">False</property>
|
1817
|
+
</packing>
|
1818
|
+
</child>
|
1819
|
+
<child>
|
1820
|
+
<object class="GtkVBox" id="vbox4">
|
1821
|
+
<property name="visible">True</property>
|
1822
|
+
<property name="can_focus">False</property>
|
1823
|
+
<child>
|
1824
|
+
<object class="GtkCheckButton" id="checkbutton_tv1">
|
1825
|
+
<property name="label" translatable="yes">Is there one?</property>
|
1826
|
+
<property name="visible">True</property>
|
1827
|
+
<property name="can_focus">True</property>
|
1828
|
+
<property name="receives_default">False</property>
|
1829
|
+
<property name="use_action_appearance">False</property>
|
1830
|
+
<property name="draw_indicator">True</property>
|
1831
|
+
</object>
|
1832
|
+
<packing>
|
1833
|
+
<property name="expand">True</property>
|
1834
|
+
<property name="fill">True</property>
|
1835
|
+
<property name="position">0</property>
|
1836
|
+
</packing>
|
1837
|
+
</child>
|
1838
|
+
<child>
|
1839
|
+
<object class="GtkCheckButton" id="checkbutton_tv2">
|
1840
|
+
<property name="label" translatable="yes">Is the testing strategy documented and justified?</property>
|
1841
|
+
<property name="visible">True</property>
|
1842
|
+
<property name="can_focus">True</property>
|
1843
|
+
<property name="receives_default">False</property>
|
1844
|
+
<property name="use_action_appearance">False</property>
|
1845
|
+
<property name="draw_indicator">True</property>
|
1846
|
+
</object>
|
1847
|
+
<packing>
|
1848
|
+
<property name="expand">True</property>
|
1849
|
+
<property name="fill">True</property>
|
1850
|
+
<property name="position">1</property>
|
1851
|
+
</packing>
|
1852
|
+
</child>
|
1853
|
+
<child>
|
1854
|
+
<object class="GtkCheckButton" id="checkbutton_tv3">
|
1855
|
+
<property name="label" translatable="yes">Are all test input data presented?</property>
|
1856
|
+
<property name="visible">True</property>
|
1857
|
+
<property name="can_focus">True</property>
|
1858
|
+
<property name="receives_default">False</property>
|
1859
|
+
<property name="use_action_appearance">False</property>
|
1860
|
+
<property name="draw_indicator">True</property>
|
1861
|
+
</object>
|
1862
|
+
<packing>
|
1863
|
+
<property name="expand">True</property>
|
1864
|
+
<property name="fill">True</property>
|
1865
|
+
<property name="position">2</property>
|
1866
|
+
</packing>
|
1867
|
+
</child>
|
1868
|
+
<child>
|
1869
|
+
<object class="GtkCheckButton" id="checkbutton_tv4">
|
1870
|
+
<property name="label" translatable="yes">Are all test results presented?</property>
|
1871
|
+
<property name="visible">True</property>
|
1872
|
+
<property name="can_focus">True</property>
|
1873
|
+
<property name="receives_default">False</property>
|
1874
|
+
<property name="use_action_appearance">False</property>
|
1875
|
+
<property name="draw_indicator">True</property>
|
1876
|
+
</object>
|
1877
|
+
<packing>
|
1878
|
+
<property name="expand">True</property>
|
1879
|
+
<property name="fill">True</property>
|
1880
|
+
<property name="position">3</property>
|
1881
|
+
</packing>
|
1882
|
+
</child>
|
1883
|
+
<child>
|
1884
|
+
<object class="GtkCheckButton" id="checkbutton_tv5">
|
1885
|
+
<property name="label" translatable="yes">Is the coverage of the testing strategy discussed?</property>
|
1886
|
+
<property name="visible">True</property>
|
1887
|
+
<property name="can_focus">True</property>
|
1888
|
+
<property name="receives_default">False</property>
|
1889
|
+
<property name="use_action_appearance">False</property>
|
1890
|
+
<property name="draw_indicator">True</property>
|
1891
|
+
</object>
|
1892
|
+
<packing>
|
1893
|
+
<property name="expand">True</property>
|
1894
|
+
<property name="fill">True</property>
|
1895
|
+
<property name="position">4</property>
|
1896
|
+
</packing>
|
1897
|
+
</child>
|
1898
|
+
<child>
|
1899
|
+
<object class="GtkFixed" id="fixed15">
|
1900
|
+
<property name="visible">True</property>
|
1901
|
+
<property name="can_focus">False</property>
|
1902
|
+
</object>
|
1903
|
+
<packing>
|
1904
|
+
<property name="expand">True</property>
|
1905
|
+
<property name="fill">True</property>
|
1906
|
+
<property name="position">5</property>
|
1907
|
+
</packing>
|
1908
|
+
</child>
|
1909
|
+
<child>
|
1910
|
+
<object class="GtkFixed" id="fixed16">
|
1911
|
+
<property name="visible">True</property>
|
1912
|
+
<property name="can_focus">False</property>
|
1913
|
+
</object>
|
1914
|
+
<packing>
|
1915
|
+
<property name="expand">True</property>
|
1916
|
+
<property name="fill">True</property>
|
1917
|
+
<property name="position">6</property>
|
1918
|
+
</packing>
|
1919
|
+
</child>
|
1920
|
+
<child>
|
1921
|
+
<object class="GtkFixed" id="fixed17">
|
1922
|
+
<property name="visible">True</property>
|
1923
|
+
<property name="can_focus">False</property>
|
1924
|
+
</object>
|
1925
|
+
<packing>
|
1926
|
+
<property name="expand">True</property>
|
1927
|
+
<property name="fill">True</property>
|
1928
|
+
<property name="position">7</property>
|
1929
|
+
</packing>
|
1930
|
+
</child>
|
1931
|
+
<child>
|
1932
|
+
<object class="GtkFixed" id="fixed18">
|
1933
|
+
<property name="visible">True</property>
|
1934
|
+
<property name="can_focus">False</property>
|
1935
|
+
</object>
|
1936
|
+
<packing>
|
1937
|
+
<property name="expand">True</property>
|
1938
|
+
<property name="fill">True</property>
|
1939
|
+
<property name="position">8</property>
|
1940
|
+
</packing>
|
1941
|
+
</child>
|
1942
|
+
<child>
|
1943
|
+
<object class="GtkFixed" id="fixed19">
|
1944
|
+
<property name="visible">True</property>
|
1945
|
+
<property name="can_focus">False</property>
|
1946
|
+
</object>
|
1947
|
+
<packing>
|
1948
|
+
<property name="expand">True</property>
|
1949
|
+
<property name="fill">True</property>
|
1950
|
+
<property name="position">9</property>
|
1951
|
+
</packing>
|
1952
|
+
</child>
|
1953
|
+
<child>
|
1954
|
+
<object class="GtkFixed" id="fixed20">
|
1955
|
+
<property name="visible">True</property>
|
1956
|
+
<property name="can_focus">False</property>
|
1957
|
+
</object>
|
1958
|
+
<packing>
|
1959
|
+
<property name="expand">True</property>
|
1960
|
+
<property name="fill">True</property>
|
1961
|
+
<property name="position">10</property>
|
1962
|
+
</packing>
|
1963
|
+
</child>
|
1964
|
+
</object>
|
1965
|
+
<packing>
|
1966
|
+
<property name="position">2</property>
|
1967
|
+
</packing>
|
1968
|
+
</child>
|
1969
|
+
<child type="tab">
|
1970
|
+
<object class="GtkLabel" id="label15">
|
1971
|
+
<property name="visible">True</property>
|
1972
|
+
<property name="can_focus">False</property>
|
1973
|
+
<property name="label" translatable="yes"><b>Testing and Verification</b></property>
|
1974
|
+
<property name="use_markup">True</property>
|
1975
|
+
</object>
|
1976
|
+
<packing>
|
1977
|
+
<property name="position">2</property>
|
1978
|
+
<property name="tab_fill">False</property>
|
1979
|
+
</packing>
|
1980
|
+
</child>
|
1981
|
+
<child>
|
1982
|
+
<object class="GtkVBox" id="vbox5">
|
1983
|
+
<property name="visible">True</property>
|
1984
|
+
<property name="can_focus">False</property>
|
1985
|
+
<child>
|
1986
|
+
<object class="GtkCheckButton" id="checkbutton_ui1">
|
1987
|
+
<property name="label" translatable="yes">Is there one?</property>
|
1988
|
+
<property name="visible">True</property>
|
1989
|
+
<property name="can_focus">True</property>
|
1990
|
+
<property name="receives_default">False</property>
|
1991
|
+
<property name="use_action_appearance">False</property>
|
1992
|
+
<property name="draw_indicator">True</property>
|
1993
|
+
</object>
|
1994
|
+
<packing>
|
1995
|
+
<property name="expand">True</property>
|
1996
|
+
<property name="fill">True</property>
|
1997
|
+
<property name="position">0</property>
|
1998
|
+
</packing>
|
1999
|
+
</child>
|
2000
|
+
<child>
|
2001
|
+
<object class="GtkCheckButton" id="checkbutton_ui2">
|
2002
|
+
<property name="label" translatable="yes">Is there a preparatory introduction?</property>
|
2003
|
+
<property name="visible">True</property>
|
2004
|
+
<property name="can_focus">True</property>
|
2005
|
+
<property name="receives_default">False</property>
|
2006
|
+
<property name="use_action_appearance">False</property>
|
2007
|
+
<property name="draw_indicator">True</property>
|
2008
|
+
</object>
|
2009
|
+
<packing>
|
2010
|
+
<property name="expand">True</property>
|
2011
|
+
<property name="fill">True</property>
|
2012
|
+
<property name="position">1</property>
|
2013
|
+
</packing>
|
2014
|
+
</child>
|
2015
|
+
<child>
|
2016
|
+
<object class="GtkCheckButton" id="checkbutton_ui3">
|
2017
|
+
<property name="label" translatable="yes">Are there instructions on installation?</property>
|
2018
|
+
<property name="visible">True</property>
|
2019
|
+
<property name="can_focus">True</property>
|
2020
|
+
<property name="receives_default">False</property>
|
2021
|
+
<property name="use_action_appearance">False</property>
|
2022
|
+
<property name="draw_indicator">True</property>
|
2023
|
+
</object>
|
2024
|
+
<packing>
|
2025
|
+
<property name="expand">True</property>
|
2026
|
+
<property name="fill">True</property>
|
2027
|
+
<property name="position">2</property>
|
2028
|
+
</packing>
|
2029
|
+
</child>
|
2030
|
+
<child>
|
2031
|
+
<object class="GtkCheckButton" id="checkbutton_ui4">
|
2032
|
+
<property name="label" translatable="yes">Is there a discussion of system/user requirements?</property>
|
2033
|
+
<property name="visible">True</property>
|
2034
|
+
<property name="can_focus">True</property>
|
2035
|
+
<property name="receives_default">False</property>
|
2036
|
+
<property name="use_action_appearance">False</property>
|
2037
|
+
<property name="draw_indicator">True</property>
|
2038
|
+
</object>
|
2039
|
+
<packing>
|
2040
|
+
<property name="expand">True</property>
|
2041
|
+
<property name="fill">True</property>
|
2042
|
+
<property name="position">3</property>
|
2043
|
+
</packing>
|
2044
|
+
</child>
|
2045
|
+
<child>
|
2046
|
+
<object class="GtkCheckButton" id="checkbutton_ui5">
|
2047
|
+
<property name="label" translatable="yes">Is the language/style appropriate?</property>
|
2048
|
+
<property name="visible">True</property>
|
2049
|
+
<property name="can_focus">True</property>
|
2050
|
+
<property name="receives_default">False</property>
|
2051
|
+
<property name="use_action_appearance">False</property>
|
2052
|
+
<property name="draw_indicator">True</property>
|
2053
|
+
</object>
|
2054
|
+
<packing>
|
2055
|
+
<property name="expand">True</property>
|
2056
|
+
<property name="fill">True</property>
|
2057
|
+
<property name="position">4</property>
|
2058
|
+
</packing>
|
2059
|
+
</child>
|
2060
|
+
<child>
|
2061
|
+
<object class="GtkCheckButton" id="checkbutton_ui6">
|
2062
|
+
<property name="label" translatable="yes">Is there example input?</property>
|
2063
|
+
<property name="visible">True</property>
|
2064
|
+
<property name="can_focus">True</property>
|
2065
|
+
<property name="receives_default">False</property>
|
2066
|
+
<property name="use_action_appearance">False</property>
|
2067
|
+
<property name="draw_indicator">True</property>
|
2068
|
+
</object>
|
2069
|
+
<packing>
|
2070
|
+
<property name="expand">True</property>
|
2071
|
+
<property name="fill">True</property>
|
2072
|
+
<property name="position">5</property>
|
2073
|
+
</packing>
|
2074
|
+
</child>
|
2075
|
+
<child>
|
2076
|
+
<object class="GtkCheckButton" id="checkbutton_ui7">
|
2077
|
+
<property name="label" translatable="yes">Is there (a discussion of) example output?</property>
|
2078
|
+
<property name="visible">True</property>
|
2079
|
+
<property name="can_focus">True</property>
|
2080
|
+
<property name="receives_default">False</property>
|
2081
|
+
<property name="use_action_appearance">False</property>
|
2082
|
+
<property name="draw_indicator">True</property>
|
2083
|
+
</object>
|
2084
|
+
<packing>
|
2085
|
+
<property name="expand">True</property>
|
2086
|
+
<property name="fill">True</property>
|
2087
|
+
<property name="position">6</property>
|
2088
|
+
</packing>
|
2089
|
+
</child>
|
2090
|
+
</object>
|
2091
|
+
<packing>
|
2092
|
+
<property name="position">3</property>
|
2093
|
+
</packing>
|
2094
|
+
</child>
|
2095
|
+
<child type="tab">
|
2096
|
+
<object class="GtkLabel" id="label16">
|
2097
|
+
<property name="visible">True</property>
|
2098
|
+
<property name="can_focus">False</property>
|
2099
|
+
<property name="label" translatable="yes"><b>User Manual</b></property>
|
2100
|
+
<property name="use_markup">True</property>
|
2101
|
+
</object>
|
2102
|
+
<packing>
|
2103
|
+
<property name="position">3</property>
|
2104
|
+
<property name="tab_fill">False</property>
|
2105
|
+
</packing>
|
2106
|
+
</child>
|
2107
|
+
<child>
|
2108
|
+
<object class="GtkTable" id="table6">
|
2109
|
+
<property name="visible">True</property>
|
2110
|
+
<property name="can_focus">False</property>
|
2111
|
+
<property name="n_rows">5</property>
|
2112
|
+
<property name="n_columns">5</property>
|
2113
|
+
<child>
|
2114
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi1">
|
2115
|
+
<property name="label" translatable="yes">Is it reasonably concise (e.g. not having unnecesary C code)?</property>
|
2116
|
+
<property name="visible">True</property>
|
2117
|
+
<property name="can_focus">True</property>
|
2118
|
+
<property name="receives_default">False</property>
|
2119
|
+
<property name="use_action_appearance">False</property>
|
2120
|
+
<property name="draw_indicator">True</property>
|
2121
|
+
</object>
|
2122
|
+
<packing>
|
2123
|
+
<property name="left_attach">4</property>
|
2124
|
+
<property name="right_attach">5</property>
|
2125
|
+
</packing>
|
2126
|
+
</child>
|
2127
|
+
<child>
|
2128
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi2">
|
2129
|
+
<property name="label" translatable="yes">Is it mature in style?</property>
|
2130
|
+
<property name="visible">True</property>
|
2131
|
+
<property name="can_focus">True</property>
|
2132
|
+
<property name="receives_default">False</property>
|
2133
|
+
<property name="use_action_appearance">False</property>
|
2134
|
+
<property name="draw_indicator">True</property>
|
2135
|
+
</object>
|
2136
|
+
<packing>
|
2137
|
+
<property name="left_attach">4</property>
|
2138
|
+
<property name="right_attach">5</property>
|
2139
|
+
<property name="top_attach">1</property>
|
2140
|
+
<property name="bottom_attach">2</property>
|
2141
|
+
</packing>
|
2142
|
+
</child>
|
2143
|
+
<child>
|
2144
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi3">
|
2145
|
+
<property name="label" translatable="yes">Are the reports well presented (contents page, sections, etc.)?</property>
|
2146
|
+
<property name="visible">True</property>
|
2147
|
+
<property name="can_focus">True</property>
|
2148
|
+
<property name="receives_default">False</property>
|
2149
|
+
<property name="use_action_appearance">False</property>
|
2150
|
+
<property name="draw_indicator">True</property>
|
2151
|
+
</object>
|
2152
|
+
<packing>
|
2153
|
+
<property name="left_attach">4</property>
|
2154
|
+
<property name="right_attach">5</property>
|
2155
|
+
<property name="top_attach">2</property>
|
2156
|
+
<property name="bottom_attach">3</property>
|
2157
|
+
</packing>
|
2158
|
+
</child>
|
2159
|
+
<child>
|
2160
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi4">
|
2161
|
+
<property name="label" translatable="yes">Is there innovation and sophistication?</property>
|
2162
|
+
<property name="visible">True</property>
|
2163
|
+
<property name="can_focus">True</property>
|
2164
|
+
<property name="receives_default">False</property>
|
2165
|
+
<property name="use_action_appearance">False</property>
|
2166
|
+
<property name="draw_indicator">True</property>
|
2167
|
+
</object>
|
2168
|
+
<packing>
|
2169
|
+
<property name="left_attach">4</property>
|
2170
|
+
<property name="right_attach">5</property>
|
2171
|
+
<property name="top_attach">3</property>
|
2172
|
+
<property name="bottom_attach">4</property>
|
2173
|
+
</packing>
|
2174
|
+
</child>
|
2175
|
+
<child>
|
2176
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi5">
|
2177
|
+
<property name="label" translatable="yes">* Fails to meet assignment requirements</property>
|
2178
|
+
<property name="visible">True</property>
|
2179
|
+
<property name="can_focus">True</property>
|
2180
|
+
<property name="receives_default">False</property>
|
2181
|
+
<property name="use_action_appearance">False</property>
|
2182
|
+
<property name="draw_indicator">True</property>
|
2183
|
+
</object>
|
2184
|
+
<packing>
|
2185
|
+
<property name="left_attach">4</property>
|
2186
|
+
<property name="right_attach">5</property>
|
2187
|
+
<property name="top_attach">4</property>
|
2188
|
+
<property name="bottom_attach">5</property>
|
2189
|
+
</packing>
|
2190
|
+
</child>
|
2191
|
+
<child>
|
2192
|
+
<object class="GtkAlignment" id="alignment16">
|
2193
|
+
<property name="visible">True</property>
|
2194
|
+
<property name="can_focus">False</property>
|
2195
|
+
<property name="xalign">1</property>
|
2196
|
+
<property name="xscale">0</property>
|
2197
|
+
<child>
|
2198
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi1_2">
|
2199
|
+
<property name="visible">True</property>
|
2200
|
+
<property name="can_focus">True</property>
|
2201
|
+
<property name="receives_default">False</property>
|
2202
|
+
<property name="use_action_appearance">False</property>
|
2203
|
+
<property name="draw_indicator">True</property>
|
2204
|
+
</object>
|
2205
|
+
</child>
|
2206
|
+
</object>
|
2207
|
+
<packing>
|
2208
|
+
<property name="left_attach">3</property>
|
2209
|
+
<property name="right_attach">4</property>
|
2210
|
+
</packing>
|
2211
|
+
</child>
|
2212
|
+
<child>
|
2213
|
+
<object class="GtkAlignment" id="alignment17">
|
2214
|
+
<property name="visible">True</property>
|
2215
|
+
<property name="can_focus">False</property>
|
2216
|
+
<property name="xalign">1</property>
|
2217
|
+
<property name="xscale">0</property>
|
2218
|
+
<child>
|
2219
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi1_3">
|
2220
|
+
<property name="visible">True</property>
|
2221
|
+
<property name="can_focus">True</property>
|
2222
|
+
<property name="receives_default">False</property>
|
2223
|
+
<property name="use_action_appearance">False</property>
|
2224
|
+
<property name="draw_indicator">True</property>
|
2225
|
+
</object>
|
2226
|
+
</child>
|
2227
|
+
</object>
|
2228
|
+
<packing>
|
2229
|
+
<property name="left_attach">2</property>
|
2230
|
+
<property name="right_attach">3</property>
|
2231
|
+
</packing>
|
2232
|
+
</child>
|
2233
|
+
<child>
|
2234
|
+
<object class="GtkAlignment" id="alignment18">
|
2235
|
+
<property name="visible">True</property>
|
2236
|
+
<property name="can_focus">False</property>
|
2237
|
+
<property name="xalign">1</property>
|
2238
|
+
<property name="xscale">0</property>
|
2239
|
+
<child>
|
2240
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi2_2">
|
2241
|
+
<property name="visible">True</property>
|
2242
|
+
<property name="can_focus">True</property>
|
2243
|
+
<property name="receives_default">False</property>
|
2244
|
+
<property name="use_action_appearance">False</property>
|
2245
|
+
<property name="draw_indicator">True</property>
|
2246
|
+
</object>
|
2247
|
+
</child>
|
2248
|
+
</object>
|
2249
|
+
<packing>
|
2250
|
+
<property name="left_attach">3</property>
|
2251
|
+
<property name="right_attach">4</property>
|
2252
|
+
<property name="top_attach">1</property>
|
2253
|
+
<property name="bottom_attach">2</property>
|
2254
|
+
</packing>
|
2255
|
+
</child>
|
2256
|
+
<child>
|
2257
|
+
<object class="GtkAlignment" id="alignment19">
|
2258
|
+
<property name="visible">True</property>
|
2259
|
+
<property name="can_focus">False</property>
|
2260
|
+
<property name="xalign">1</property>
|
2261
|
+
<property name="xscale">0</property>
|
2262
|
+
<child>
|
2263
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi2_3">
|
2264
|
+
<property name="visible">True</property>
|
2265
|
+
<property name="can_focus">True</property>
|
2266
|
+
<property name="receives_default">False</property>
|
2267
|
+
<property name="use_action_appearance">False</property>
|
2268
|
+
<property name="draw_indicator">True</property>
|
2269
|
+
</object>
|
2270
|
+
</child>
|
2271
|
+
</object>
|
2272
|
+
<packing>
|
2273
|
+
<property name="left_attach">2</property>
|
2274
|
+
<property name="right_attach">3</property>
|
2275
|
+
<property name="top_attach">1</property>
|
2276
|
+
<property name="bottom_attach">2</property>
|
2277
|
+
</packing>
|
2278
|
+
</child>
|
2279
|
+
<child>
|
2280
|
+
<object class="GtkAlignment" id="alignment20">
|
2281
|
+
<property name="visible">True</property>
|
2282
|
+
<property name="can_focus">False</property>
|
2283
|
+
<property name="xalign">1</property>
|
2284
|
+
<property name="xscale">0</property>
|
2285
|
+
<child>
|
2286
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi3_2">
|
2287
|
+
<property name="visible">True</property>
|
2288
|
+
<property name="can_focus">True</property>
|
2289
|
+
<property name="receives_default">False</property>
|
2290
|
+
<property name="use_action_appearance">False</property>
|
2291
|
+
<property name="draw_indicator">True</property>
|
2292
|
+
</object>
|
2293
|
+
</child>
|
2294
|
+
</object>
|
2295
|
+
<packing>
|
2296
|
+
<property name="left_attach">3</property>
|
2297
|
+
<property name="right_attach">4</property>
|
2298
|
+
<property name="top_attach">2</property>
|
2299
|
+
<property name="bottom_attach">3</property>
|
2300
|
+
</packing>
|
2301
|
+
</child>
|
2302
|
+
<child>
|
2303
|
+
<object class="GtkAlignment" id="alignment21">
|
2304
|
+
<property name="visible">True</property>
|
2305
|
+
<property name="can_focus">False</property>
|
2306
|
+
<property name="xalign">1</property>
|
2307
|
+
<property name="xscale">0</property>
|
2308
|
+
<child>
|
2309
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi4_2">
|
2310
|
+
<property name="visible">True</property>
|
2311
|
+
<property name="can_focus">True</property>
|
2312
|
+
<property name="receives_default">False</property>
|
2313
|
+
<property name="use_action_appearance">False</property>
|
2314
|
+
<property name="draw_indicator">True</property>
|
2315
|
+
</object>
|
2316
|
+
</child>
|
2317
|
+
</object>
|
2318
|
+
<packing>
|
2319
|
+
<property name="left_attach">3</property>
|
2320
|
+
<property name="right_attach">4</property>
|
2321
|
+
<property name="top_attach">3</property>
|
2322
|
+
<property name="bottom_attach">4</property>
|
2323
|
+
</packing>
|
2324
|
+
</child>
|
2325
|
+
<child>
|
2326
|
+
<object class="GtkAlignment" id="alignment22">
|
2327
|
+
<property name="visible">True</property>
|
2328
|
+
<property name="can_focus">False</property>
|
2329
|
+
<property name="xalign">1</property>
|
2330
|
+
<property name="xscale">0</property>
|
2331
|
+
<child>
|
2332
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi4_3">
|
2333
|
+
<property name="visible">True</property>
|
2334
|
+
<property name="can_focus">True</property>
|
2335
|
+
<property name="receives_default">False</property>
|
2336
|
+
<property name="use_action_appearance">False</property>
|
2337
|
+
<property name="draw_indicator">True</property>
|
2338
|
+
</object>
|
2339
|
+
</child>
|
2340
|
+
</object>
|
2341
|
+
<packing>
|
2342
|
+
<property name="left_attach">2</property>
|
2343
|
+
<property name="right_attach">3</property>
|
2344
|
+
<property name="top_attach">3</property>
|
2345
|
+
<property name="bottom_attach">4</property>
|
2346
|
+
</packing>
|
2347
|
+
</child>
|
2348
|
+
<child>
|
2349
|
+
<object class="GtkAlignment" id="alignment23">
|
2350
|
+
<property name="visible">True</property>
|
2351
|
+
<property name="can_focus">False</property>
|
2352
|
+
<property name="xalign">1</property>
|
2353
|
+
<property name="xscale">0</property>
|
2354
|
+
<child>
|
2355
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi4_4">
|
2356
|
+
<property name="visible">True</property>
|
2357
|
+
<property name="can_focus">True</property>
|
2358
|
+
<property name="receives_default">False</property>
|
2359
|
+
<property name="use_action_appearance">False</property>
|
2360
|
+
<property name="draw_indicator">True</property>
|
2361
|
+
</object>
|
2362
|
+
</child>
|
2363
|
+
</object>
|
2364
|
+
<packing>
|
2365
|
+
<property name="left_attach">1</property>
|
2366
|
+
<property name="right_attach">2</property>
|
2367
|
+
<property name="top_attach">3</property>
|
2368
|
+
<property name="bottom_attach">4</property>
|
2369
|
+
</packing>
|
2370
|
+
</child>
|
2371
|
+
<child>
|
2372
|
+
<object class="GtkAlignment" id="alignment24">
|
2373
|
+
<property name="visible">True</property>
|
2374
|
+
<property name="can_focus">False</property>
|
2375
|
+
<property name="xalign">1</property>
|
2376
|
+
<property name="xscale">0</property>
|
2377
|
+
<child>
|
2378
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi4_5">
|
2379
|
+
<property name="visible">True</property>
|
2380
|
+
<property name="can_focus">True</property>
|
2381
|
+
<property name="receives_default">False</property>
|
2382
|
+
<property name="use_action_appearance">False</property>
|
2383
|
+
<property name="draw_indicator">True</property>
|
2384
|
+
</object>
|
2385
|
+
</child>
|
2386
|
+
</object>
|
2387
|
+
<packing>
|
2388
|
+
<property name="top_attach">3</property>
|
2389
|
+
<property name="bottom_attach">4</property>
|
2390
|
+
</packing>
|
2391
|
+
</child>
|
2392
|
+
<child>
|
2393
|
+
<object class="GtkAlignment" id="alignment25">
|
2394
|
+
<property name="visible">True</property>
|
2395
|
+
<property name="can_focus">False</property>
|
2396
|
+
<property name="xalign">1</property>
|
2397
|
+
<property name="xscale">0</property>
|
2398
|
+
<child>
|
2399
|
+
<object class="GtkCheckButton" id="checkbutton_mcpi5_2">
|
2400
|
+
<property name="visible">True</property>
|
2401
|
+
<property name="can_focus">True</property>
|
2402
|
+
<property name="receives_default">False</property>
|
2403
|
+
<property name="use_action_appearance">False</property>
|
2404
|
+
<property name="draw_indicator">True</property>
|
2405
|
+
</object>
|
2406
|
+
</child>
|
2407
|
+
</object>
|
2408
|
+
<packing>
|
2409
|
+
<property name="left_attach">3</property>
|
2410
|
+
<property name="right_attach">4</property>
|
2411
|
+
<property name="top_attach">4</property>
|
2412
|
+
<property name="bottom_attach">5</property>
|
2413
|
+
</packing>
|
2414
|
+
</child>
|
2415
|
+
<child>
|
2416
|
+
<placeholder/>
|
2417
|
+
</child>
|
2418
|
+
<child>
|
2419
|
+
<placeholder/>
|
2420
|
+
</child>
|
2421
|
+
<child>
|
2422
|
+
<placeholder/>
|
2423
|
+
</child>
|
2424
|
+
<child>
|
2425
|
+
<placeholder/>
|
2426
|
+
</child>
|
2427
|
+
<child>
|
2428
|
+
<placeholder/>
|
2429
|
+
</child>
|
2430
|
+
<child>
|
2431
|
+
<placeholder/>
|
2432
|
+
</child>
|
2433
|
+
<child>
|
2434
|
+
<placeholder/>
|
2435
|
+
</child>
|
2436
|
+
<child>
|
2437
|
+
<placeholder/>
|
2438
|
+
</child>
|
2439
|
+
<child>
|
2440
|
+
<placeholder/>
|
2441
|
+
</child>
|
2442
|
+
<child>
|
2443
|
+
<placeholder/>
|
2444
|
+
</child>
|
2445
|
+
</object>
|
2446
|
+
<packing>
|
2447
|
+
<property name="position">4</property>
|
2448
|
+
</packing>
|
2449
|
+
</child>
|
2450
|
+
<child type="tab">
|
2451
|
+
<object class="GtkLabel" id="label17">
|
2452
|
+
<property name="visible">True</property>
|
2453
|
+
<property name="can_focus">False</property>
|
2454
|
+
<property name="label" translatable="yes"><b>Maturity, Consistency,
|
2455
|
+
Presentation and Innovation</b></property>
|
2456
|
+
<property name="use_markup">True</property>
|
2457
|
+
<property name="justify">center</property>
|
2458
|
+
</object>
|
2459
|
+
<packing>
|
2460
|
+
<property name="position">4</property>
|
2461
|
+
<property name="tab_fill">False</property>
|
2462
|
+
</packing>
|
2463
|
+
</child>
|
2464
|
+
</object>
|
2465
|
+
<packing>
|
2466
|
+
<property name="position">1</property>
|
2467
|
+
</packing>
|
2468
|
+
</child>
|
2469
|
+
<child type="tab">
|
2470
|
+
<object class="GtkLabel" id="label2">
|
2471
|
+
<property name="visible">True</property>
|
2472
|
+
<property name="can_focus">False</property>
|
2473
|
+
<property name="label" translatable="yes"><b>Part Two</b></property>
|
2474
|
+
<property name="use_markup">True</property>
|
2475
|
+
</object>
|
2476
|
+
<packing>
|
2477
|
+
<property name="position">1</property>
|
2478
|
+
<property name="tab_fill">False</property>
|
2479
|
+
</packing>
|
2480
|
+
</child>
|
2481
|
+
<child>
|
2482
|
+
<object class="GtkHBox" id="hbox1">
|
2483
|
+
<property name="visible">True</property>
|
2484
|
+
<property name="can_focus">False</property>
|
2485
|
+
<child>
|
2486
|
+
<object class="GtkLabel" id="label20">
|
2487
|
+
<property name="visible">True</property>
|
2488
|
+
<property name="can_focus">False</property>
|
2489
|
+
<property name="label" translatable="yes">Transcribed Demonstration Mark: </property>
|
2490
|
+
</object>
|
2491
|
+
<packing>
|
2492
|
+
<property name="expand">False</property>
|
2493
|
+
<property name="fill">False</property>
|
2494
|
+
<property name="position">0</property>
|
2495
|
+
</packing>
|
2496
|
+
</child>
|
2497
|
+
<child>
|
2498
|
+
<object class="GtkSpinButton" id="spinbutton_tdm">
|
2499
|
+
<property name="visible">True</property>
|
2500
|
+
<property name="can_focus">True</property>
|
2501
|
+
<property name="invisible_char">●</property>
|
2502
|
+
<property name="primary_icon_activatable">False</property>
|
2503
|
+
<property name="secondary_icon_activatable">False</property>
|
2504
|
+
<property name="primary_icon_sensitive">True</property>
|
2505
|
+
<property name="secondary_icon_sensitive">True</property>
|
2506
|
+
<property name="adjustment">adjustment1</property>
|
2507
|
+
<property name="snap_to_ticks">True</property>
|
2508
|
+
</object>
|
2509
|
+
<packing>
|
2510
|
+
<property name="expand">False</property>
|
2511
|
+
<property name="fill">True</property>
|
2512
|
+
<property name="position">1</property>
|
2513
|
+
</packing>
|
2514
|
+
</child>
|
2515
|
+
</object>
|
2516
|
+
<packing>
|
2517
|
+
<property name="position">2</property>
|
2518
|
+
</packing>
|
2519
|
+
</child>
|
2520
|
+
<child type="tab">
|
2521
|
+
<object class="GtkLabel" id="label19">
|
2522
|
+
<property name="visible">True</property>
|
2523
|
+
<property name="can_focus">False</property>
|
2524
|
+
<property name="label" translatable="yes"><b>Demonstration</b></property>
|
2525
|
+
<property name="use_markup">True</property>
|
2526
|
+
</object>
|
2527
|
+
<packing>
|
2528
|
+
<property name="position">2</property>
|
2529
|
+
<property name="tab_fill">False</property>
|
2530
|
+
</packing>
|
2531
|
+
</child>
|
2532
|
+
</object>
|
2533
|
+
<packing>
|
2534
|
+
<property name="expand">True</property>
|
2535
|
+
<property name="fill">True</property>
|
2536
|
+
<property name="position">2</property>
|
2537
|
+
</packing>
|
2538
|
+
</child>
|
2539
|
+
<child>
|
2540
|
+
<object class="GtkHButtonBox" id="hbuttonbox1">
|
2541
|
+
<property name="visible">True</property>
|
2542
|
+
<property name="can_focus">False</property>
|
2543
|
+
<property name="layout_style">spread</property>
|
2544
|
+
<child>
|
2545
|
+
<object class="GtkButton" id="buttonClear">
|
2546
|
+
<property name="label" translatable="yes">Clear All</property>
|
2547
|
+
<property name="visible">True</property>
|
2548
|
+
<property name="can_focus">True</property>
|
2549
|
+
<property name="receives_default">True</property>
|
2550
|
+
<property name="use_action_appearance">False</property>
|
2551
|
+
</object>
|
2552
|
+
<packing>
|
2553
|
+
<property name="expand">False</property>
|
2554
|
+
<property name="fill">False</property>
|
2555
|
+
<property name="position">0</property>
|
2556
|
+
</packing>
|
2557
|
+
</child>
|
2558
|
+
<child>
|
2559
|
+
<object class="GtkButton" id="buttonSave">
|
2560
|
+
<property name="label" translatable="yes">Save Part</property>
|
2561
|
+
<property name="visible">True</property>
|
2562
|
+
<property name="can_focus">True</property>
|
2563
|
+
<property name="receives_default">True</property>
|
2564
|
+
<property name="use_action_appearance">False</property>
|
2565
|
+
</object>
|
2566
|
+
<packing>
|
2567
|
+
<property name="expand">False</property>
|
2568
|
+
<property name="fill">False</property>
|
2569
|
+
<property name="position">1</property>
|
2570
|
+
</packing>
|
2571
|
+
</child>
|
2572
|
+
</object>
|
2573
|
+
<packing>
|
2574
|
+
<property name="expand">True</property>
|
2575
|
+
<property name="fill">True</property>
|
2576
|
+
<property name="padding">10</property>
|
2577
|
+
<property name="position">3</property>
|
2578
|
+
</packing>
|
2579
|
+
</child>
|
2580
|
+
<child>
|
2581
|
+
<object class="GtkHButtonBox" id="hbuttonbox2">
|
2582
|
+
<property name="visible">True</property>
|
2583
|
+
<property name="can_focus">False</property>
|
2584
|
+
<child>
|
2585
|
+
<object class="GtkButton" id="buttonGenerate">
|
2586
|
+
<property name="label" translatable="yes">Generate Output!</property>
|
2587
|
+
<property name="visible">True</property>
|
2588
|
+
<property name="can_focus">True</property>
|
2589
|
+
<property name="receives_default">True</property>
|
2590
|
+
<property name="use_action_appearance">False</property>
|
2591
|
+
<property name="yalign">0.51999998092651367</property>
|
2592
|
+
</object>
|
2593
|
+
<packing>
|
2594
|
+
<property name="expand">False</property>
|
2595
|
+
<property name="fill">False</property>
|
2596
|
+
<property name="position">0</property>
|
2597
|
+
</packing>
|
2598
|
+
</child>
|
2599
|
+
</object>
|
2600
|
+
<packing>
|
2601
|
+
<property name="expand">True</property>
|
2602
|
+
<property name="fill">True</property>
|
2603
|
+
<property name="position">4</property>
|
2604
|
+
</packing>
|
2605
|
+
</child>
|
2606
|
+
</object>
|
2607
|
+
</child>
|
2608
|
+
</object>
|
2609
|
+
</interface>
|