3 <requires lib=
"gtk+" version=
"2.16"/>
4 <!-- interface-naming-policy toplevel-contextual -->
5 <object class=
"GtkWindow" id=
"calc_window">
6 <property name=
"events">GDK_BUTTON_PRESS_MASK
</property>
8 <group name=
"accelgroup1"/>
10 <signal name=
"key_press_event" handler=
"main_window_key_press_cb"/>
11 <signal name=
"delete_event" handler=
"quit_cb"/>
12 <signal name=
"key_release_event" handler=
"main_window_key_release_cb"/>
14 <object class=
"GtkVBox" id=
"window_vbox">
15 <property name=
"visible">True
</property>
16 <property name=
"orientation">vertical
</property>
17 <property name=
"spacing">6</property>
19 <object class=
"GtkMenuBar" id=
"menubar">
20 <property name=
"visible">True
</property>
21 <property name=
"events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK
</property>
23 <object class=
"GtkMenuItem" id=
"menuitem1">
24 <property name=
"visible">True
</property>
25 <property name=
"label" translatable=
"yes" comments=
"Calculator menu">_Calculator
</property>
26 <property name=
"use_underline">True
</property>
27 <child type=
"submenu">
28 <object class=
"GtkMenu" id=
"menuitem1_menu">
30 <object class=
"GtkImageMenuItem" id=
"quit_menu">
31 <property name=
"label">gtk-quit
</property>
32 <property name=
"visible">True
</property>
33 <property name=
"tooltip_text" translatable=
"yes">Quit the calculator
</property>
34 <property name=
"use_underline">True
</property>
35 <property name=
"use_stock">True
</property>
36 <property name=
"accel_group">accelgroup1
</property>
37 <signal name=
"select" handler=
"menu_item_select_cb"/>
38 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
39 <signal name=
"activate" handler=
"quit_cb"/>
47 <object class=
"GtkMenuItem" id=
"edit_menu">
48 <property name=
"visible">True
</property>
49 <property name=
"label" translatable=
"yes" comments=
"Edit menu">_Edit
</property>
50 <property name=
"use_underline">True
</property>
51 <child type=
"submenu">
52 <object class=
"GtkMenu" id=
"edit_menu_menu">
54 <object class=
"GtkImageMenuItem" id=
"copy_menu">
55 <property name=
"label">gtk-copy
</property>
56 <property name=
"visible">True
</property>
57 <property name=
"tooltip_text" translatable=
"yes">Copy selection
</property>
58 <property name=
"use_underline">True
</property>
59 <property name=
"use_stock">True
</property>
60 <property name=
"accel_group">accelgroup1
</property>
61 <signal name=
"select" handler=
"menu_item_select_cb"/>
62 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
63 <signal name=
"activate" handler=
"copy_cb"/>
67 <object class=
"GtkImageMenuItem" id=
"paste_menu">
68 <property name=
"label">gtk-paste
</property>
69 <property name=
"visible">True
</property>
70 <property name=
"tooltip_text" translatable=
"yes">Paste selection
</property>
71 <property name=
"use_underline">True
</property>
72 <property name=
"use_stock">True
</property>
73 <property name=
"accel_group">accelgroup1
</property>
74 <signal name=
"select" handler=
"menu_item_select_cb"/>
75 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
76 <signal name=
"activate" handler=
"paste_cb"/>
80 <object class=
"GtkImageMenuItem" id=
"undo_menu">
81 <property name=
"label" comments=
"Edit|Undo menu item">_Undo
</property>
82 <property name=
"visible">True
</property>
83 <property name=
"tooltip_text" translatable=
"yes">Undo
</property>
84 <property name=
"use_underline">True
</property>
85 <property name=
"use_stock">True
</property>
86 <property name=
"accel_group">accelgroup1
</property>
87 <accelerator key=
"Z" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
88 <signal name=
"select" handler=
"menu_item_select_cb"/>
89 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
90 <signal name=
"activate" handler=
"undo_cb"/>
94 <object class=
"GtkImageMenuItem" id=
"redo_menu">
95 <property name=
"label" comments=
"Edit|Redo menu item">_Redo
</property>
96 <property name=
"visible">True
</property>
97 <property name=
"tooltip_text" translatable=
"yes">Redo
</property>
98 <property name=
"use_underline">True
</property>
99 <property name=
"use_stock">True
</property>
100 <property name=
"accel_group">accelgroup1
</property>
101 <accelerator key=
"Z" signal=
"activate" modifiers=
"GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
102 <signal name=
"select" handler=
"menu_item_select_cb"/>
103 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
104 <signal name=
"activate" handler=
"redo_cb"/>
108 <object class=
"GtkSeparatorMenuItem" id=
"menuitem5">
109 <property name=
"visible">True
</property>
113 <object class=
"GtkMenuItem" id=
"insert_ascii_menu">
114 <property name=
"visible">True
</property>
115 <property name=
"tooltip_text" translatable=
"yes">Insert ASCII value
</property>
116 <property name=
"label" translatable=
"yes" comments=
"Edit|Insert ASCII value menu item">_Insert ASCII value...
</property>
117 <property name=
"use_underline">True
</property>
118 <accelerator key=
"I" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
119 <signal name=
"select" handler=
"menu_item_select_cb"/>
120 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
121 <signal name=
"activate" handler=
"insert_ascii_cb"/>
129 <object class=
"GtkMenuItem" id=
"menuitem3">
130 <property name=
"visible">True
</property>
131 <property name=
"label" translatable=
"yes" comments=
"View menu">_View
</property>
132 <property name=
"use_underline">True
</property>
133 <child type=
"submenu">
134 <object class=
"GtkMenu" id=
"menuitem3_menu">
136 <object class=
"GtkRadioMenuItem" id=
"view_basic_menu">
137 <property name=
"visible">True
</property>
138 <property name=
"tooltip_text" translatable=
"yes">Basic
</property>
139 <property name=
"label" translatable=
"yes" comments=
"View|Basic menu item">_Basic
</property>
140 <property name=
"use_underline">True
</property>
141 <property name=
"active">True
</property>
142 <accelerator key=
"B" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
143 <signal name=
"select" handler=
"menu_item_select_cb"/>
144 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
145 <signal name=
"activate" handler=
"mode_radio_cb"/>
149 <object class=
"GtkRadioMenuItem" id=
"view_advanced_menu">
150 <property name=
"visible">True
</property>
151 <property name=
"tooltip_text" translatable=
"yes">Advanced
</property>
152 <property name=
"label" translatable=
"yes" comments=
"View|Advanced menu item">_Advanced
</property>
153 <property name=
"use_underline">True
</property>
154 <property name=
"group">view_basic_menu
</property>
155 <accelerator key=
"A" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
156 <signal name=
"select" handler=
"menu_item_select_cb"/>
157 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
158 <signal name=
"activate" handler=
"mode_radio_cb"/>
162 <object class=
"GtkRadioMenuItem" id=
"view_financial_menu">
163 <property name=
"visible">True
</property>
164 <property name=
"tooltip_text" translatable=
"yes">Financial
</property>
165 <property name=
"label" translatable=
"yes" comments=
"View|Financial menu item">_Financial
</property>
166 <property name=
"use_underline">True
</property>
167 <property name=
"group">view_basic_menu
</property>
168 <accelerator key=
"F" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
169 <signal name=
"select" handler=
"menu_item_select_cb"/>
170 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
171 <signal name=
"activate" handler=
"mode_radio_cb"/>
175 <object class=
"GtkRadioMenuItem" id=
"view_scientific_menu">
176 <property name=
"visible">True
</property>
177 <property name=
"tooltip_text" translatable=
"yes">Scientific
</property>
178 <property name=
"label" translatable=
"yes" comments=
"View|Scientific menu item">_Scientific
</property>
179 <property name=
"use_underline">True
</property>
180 <property name=
"group">view_basic_menu
</property>
181 <accelerator key=
"S" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
182 <signal name=
"select" handler=
"menu_item_select_cb"/>
183 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
184 <signal name=
"activate" handler=
"mode_radio_cb"/>
188 <object class=
"GtkRadioMenuItem" id=
"view_programming_menu">
189 <property name=
"visible">True
</property>
190 <property name=
"tooltip_text" translatable=
"yes">Programming
</property>
191 <property name=
"label" translatable=
"yes" comments=
"View|Programming menu item">_Programming
</property>
192 <property name=
"use_underline">True
</property>
193 <property name=
"group">view_basic_menu
</property>
194 <accelerator key=
"P" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
195 <signal name=
"select" handler=
"menu_item_select_cb"/>
196 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
197 <signal name=
"activate" handler=
"mode_radio_cb"/>
201 <object class=
"GtkSeparatorMenuItem" id=
"separator1">
202 <property name=
"visible">True
</property>
206 <object class=
"GtkCheckMenuItem" id=
"show_trailing_zeroes_menu">
207 <property name=
"visible">True
</property>
208 <property name=
"tooltip_text" translatable=
"yes">Show trailing zeroes
</property>
209 <property name=
"label" translatable=
"yes" comments=
"View|Show Trailing Zeroes menu item">Show _Trailing Zeroes
</property>
210 <property name=
"use_underline">True
</property>
211 <accelerator key=
"T" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
212 <signal name=
"select" handler=
"menu_item_select_cb"/>
213 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
214 <signal name=
"activate" handler=
"show_trailing_zeroes_cb"/>
218 <object class=
"GtkCheckMenuItem" id=
"show_thousands_separator_menu">
219 <property name=
"visible">True
</property>
220 <property name=
"tooltip_text" translatable=
"yes">Show thousands separator
</property>
221 <property name=
"label" translatable=
"yes" comments=
"View|Show Thousands Separator menu item">Show T_housands Separator
</property>
222 <property name=
"use_underline">True
</property>
223 <accelerator key=
"K" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
224 <signal name=
"select" handler=
"menu_item_select_cb"/>
225 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
226 <signal name=
"activate" handler=
"show_thousands_separator_cb"/>
230 <object class=
"GtkSeparatorMenuItem" id=
"separator2">
231 <property name=
"visible">True
</property>
235 <object class=
"GtkCheckMenuItem" id=
"show_registers_menu">
236 <property name=
"visible">True
</property>
237 <property name=
"tooltip_text" translatable=
"yes">Show memory registers
</property>
238 <property name=
"label" translatable=
"yes" comments=
"View|Memory Registers menu item">_Memory Registers
</property>
239 <property name=
"use_underline">True
</property>
240 <accelerator key=
"M" signal=
"activate" modifiers=
"GDK_CONTROL_MASK"/>
241 <signal name=
"select" handler=
"menu_item_select_cb"/>
242 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
243 <signal name=
"activate" handler=
"show_registers_cb"/>
251 <object class=
"GtkMenuItem" id=
"menuitem4">
252 <property name=
"visible">True
</property>
253 <property name=
"label" translatable=
"yes" comments=
"Help menu">_Help
</property>
254 <property name=
"use_underline">True
</property>
255 <child type=
"submenu">
256 <object class=
"GtkMenu" id=
"menuitem4_menu">
258 <object class=
"GtkImageMenuItem" id=
"help_menu">
259 <property name=
"label" comments=
"Help|Contents menu">_Contents
</property>
260 <property name=
"visible">True
</property>
261 <property name=
"tooltip_text" translatable=
"yes">Show help contents
</property>
262 <property name=
"use_underline">True
</property>
263 <property name=
"image">image1
</property>
264 <property name=
"use_stock">False
</property>
265 <property name=
"accel_group">accelgroup1
</property>
266 <accelerator key=
"F1" signal=
"activate"/>
267 <signal name=
"select" handler=
"menu_item_select_cb"/>
268 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
269 <signal name=
"activate" handler=
"help_cb"/>
273 <object class=
"GtkImageMenuItem" id=
"about_menu">
274 <property name=
"label">gtk-about
</property>
275 <property name=
"visible">True
</property>
276 <property name=
"tooltip_text" translatable=
"yes">Show the About Gcalctool dialog
</property>
277 <property name=
"use_underline">True
</property>
278 <property name=
"use_stock">True
</property>
279 <property name=
"accel_group">accelgroup1
</property>
280 <signal name=
"select" handler=
"menu_item_select_cb"/>
281 <signal name=
"deselect" handler=
"menu_item_deselect_cb"/>
282 <signal name=
"activate" handler=
"about_cb"/>
291 <property name=
"expand">False
</property>
292 <property name=
"position">0</property>
296 <object class=
"GtkEventBox" id=
"display_eventbox">
297 <property name=
"visible">True
</property>
299 <object class=
"GtkScrolledWindow" id=
"display_scroll">
300 <property name=
"visible">True
</property>
301 <property name=
"can_focus">True
</property>
302 <property name=
"border_width">7</property>
303 <property name=
"hscrollbar_policy">automatic
</property>
304 <property name=
"vscrollbar_policy">never
</property>
305 <property name=
"shadow_type">in
</property>
307 <object class=
"GtkTextView" id=
"displayitem">
308 <property name=
"visible">True
</property>
309 <property name=
"border_width">1</property>
310 <property name=
"pixels_above_lines">8</property>
311 <property name=
"pixels_below_lines">8</property>
312 <property name=
"editable">False
</property>
313 <property name=
"justification">right
</property>
314 <property name=
"right_margin">6</property>
315 <property name=
"buffer">display_buffer
</property>
316 <child internal-child=
"accessible">
317 <object class=
"AtkObject" id=
"displayitem-atkobject">
318 <property name=
"AtkObject::accessible-description" translatable=
"yes">Result Region
</property>
321 <signal name=
"populate_popup" handler=
"buffer_populate_popup_cb"/>
322 <signal name=
"button_release_event" handler=
"mouse_button_cb"/>
329 <property name=
"expand">False
</property>
330 <property name=
"position">1</property>
334 <object class=
"GtkHBox" id=
"programming_mode_panel">
335 <property name=
"visible">True
</property>
336 <property name=
"border_width">8</property>
338 <object class=
"GtkHBox" id=
"hbox7">
339 <property name=
"visible">True
</property>
341 <object class=
"GtkRadioButton" id=
"64bit_radio">
342 <property name=
"label" translatable=
"yes" comments=
"64 bit radio button">_64 bit
</property>
343 <property name=
"visible">True
</property>
344 <property name=
"can_focus">True
</property>
345 <property name=
"receives_default">False
</property>
346 <property name=
"tooltip_text" translatable=
"yes">Makes the bitwise functions use
64 bit mode
</property>
347 <property name=
"use_underline">True
</property>
348 <property name=
"draw_indicator">True
</property>
349 <signal name=
"toggled" handler=
"word_cb"/>
352 <property name=
"position">0</property>
356 <object class=
"GtkRadioButton" id=
"32bit_radio">
357 <property name=
"label" translatable=
"yes" comments=
"32 bit radio button">_32 bit
</property>
358 <property name=
"visible">True
</property>
359 <property name=
"can_focus">True
</property>
360 <property name=
"receives_default">False
</property>
361 <property name=
"tooltip_text" translatable=
"yes">Makes the bitwise functions use
32 bit mode
</property>
362 <property name=
"use_underline">True
</property>
363 <property name=
"draw_indicator">True
</property>
364 <property name=
"group">64bit_radio
</property>
365 <signal name=
"toggled" handler=
"word_cb"/>
368 <property name=
"position">1</property>
372 <object class=
"GtkRadioButton" id=
"16bit_radio">
373 <property name=
"label" translatable=
"yes" comments=
"16 bit radio button">_16 bit
</property>
374 <property name=
"visible">True
</property>
375 <property name=
"can_focus">True
</property>
376 <property name=
"receives_default">False
</property>
377 <property name=
"tooltip_text" translatable=
"yes">Makes the bitwise functions use
16 bit mode
</property>
378 <property name=
"use_underline">True
</property>
379 <property name=
"draw_indicator">True
</property>
380 <property name=
"group">64bit_radio
</property>
381 <signal name=
"toggled" handler=
"word_cb"/>
384 <property name=
"position">2</property>
389 <property name=
"expand">False
</property>
390 <property name=
"position">0</property>
394 <object class=
"GtkHBox" id=
"hbox6">
395 <property name=
"visible">True
</property>
397 <object class=
"GtkRadioButton" id=
"binary_radio">
398 <property name=
"label" translatable=
"yes" comments=
"Base 2 radio button">_Bin
</property>
399 <property name=
"visible">True
</property>
400 <property name=
"can_focus">True
</property>
401 <property name=
"receives_default">False
</property>
402 <property name=
"tooltip_text" translatable=
"yes">Set numeric base to binary (base
2)
</property>
403 <property name=
"use_underline">True
</property>
404 <property name=
"draw_indicator">True
</property>
405 <signal name=
"toggled" handler=
"base_cb"/>
408 <property name=
"position">0</property>
412 <object class=
"GtkRadioButton" id=
"octal_radio">
413 <property name=
"label" translatable=
"yes" comments=
"Base 8 radio button">_Oct
</property>
414 <property name=
"visible">True
</property>
415 <property name=
"can_focus">True
</property>
416 <property name=
"receives_default">False
</property>
417 <property name=
"tooltip_text" translatable=
"yes">Set numeric base to octal (base
8)
</property>
418 <property name=
"use_underline">True
</property>
419 <property name=
"draw_indicator">True
</property>
420 <property name=
"group">binary_radio
</property>
421 <signal name=
"toggled" handler=
"base_cb"/>
424 <property name=
"position">1</property>
428 <object class=
"GtkRadioButton" id=
"decimal_radio">
429 <property name=
"label" translatable=
"yes" comments=
"Base 10 radio button">_Dec
</property>
430 <property name=
"visible">True
</property>
431 <property name=
"can_focus">True
</property>
432 <property name=
"receives_default">False
</property>
433 <property name=
"tooltip_text" translatable=
"yes">Set numeric base to decimal (base
10)
</property>
434 <property name=
"use_underline">True
</property>
435 <property name=
"draw_indicator">True
</property>
436 <property name=
"group">binary_radio
</property>
437 <signal name=
"toggled" handler=
"base_cb"/>
440 <property name=
"position">2</property>
444 <object class=
"GtkRadioButton" id=
"hexadecimal_radio">
445 <property name=
"label" translatable=
"yes" comments=
"Base 16 radio button">He_x
</property>
446 <property name=
"visible">True
</property>
447 <property name=
"can_focus">True
</property>
448 <property name=
"receives_default">False
</property>
449 <property name=
"tooltip_text" translatable=
"yes">Set numeric base to hexadecimal (base
16)
</property>
450 <property name=
"use_underline">True
</property>
451 <property name=
"draw_indicator">True
</property>
452 <property name=
"group">binary_radio
</property>
453 <signal name=
"toggled" handler=
"base_cb"/>
456 <property name=
"position">3</property>
461 <property name=
"expand">False
</property>
462 <property name=
"pack_type">end
</property>
463 <property name=
"position">0</property>
468 <property name=
"expand">False
</property>
469 <property name=
"position">2</property>
473 <object class=
"GtkVBox" id=
"scientific_mode_panel">
474 <property name=
"visible">True
</property>
475 <property name=
"border_width">6</property>
476 <property name=
"orientation">vertical
</property>
478 <object class=
"GtkHBox" id=
"hbox4">
479 <property name=
"visible">True
</property>
480 <property name=
"border_width">2</property>
482 <object class=
"GtkHBox" id=
"hbox5">
483 <property name=
"visible">True
</property>
485 <object class=
"GtkRadioButton" id=
"degrees_radio">
486 <property name=
"label" translatable=
"yes" comments=
"Degrees radio button">De_grees
</property>
487 <property name=
"visible">True
</property>
488 <property name=
"can_focus">True
</property>
489 <property name=
"receives_default">False
</property>
490 <property name=
"tooltip_text" translatable=
"yes">Set trigonometric type to degrees
</property>
491 <property name=
"use_underline">True
</property>
492 <property name=
"draw_indicator">True
</property>
493 <signal name=
"toggled" handler=
"trig_cb"/>
496 <property name=
"position">0</property>
500 <object class=
"GtkRadioButton" id=
"gradians_radio">
501 <property name=
"label" translatable=
"yes" comments=
"Gradians radio button">Gr_adians
</property>
502 <property name=
"visible">True
</property>
503 <property name=
"can_focus">True
</property>
504 <property name=
"receives_default">False
</property>
505 <property name=
"tooltip_text" translatable=
"yes">Set trigonometric type to gradians
</property>
506 <property name=
"use_underline">True
</property>
507 <property name=
"draw_indicator">True
</property>
508 <property name=
"group">degrees_radio
</property>
509 <signal name=
"toggled" handler=
"trig_cb"/>
512 <property name=
"position">1</property>
516 <object class=
"GtkRadioButton" id=
"radians_radio">
517 <property name=
"label" translatable=
"yes" comments=
"Radian radio button">_Radians
</property>
518 <property name=
"visible">True
</property>
519 <property name=
"can_focus">True
</property>
520 <property name=
"receives_default">False
</property>
521 <property name=
"tooltip_text" translatable=
"yes">Set trigonometric type to radians
</property>
522 <property name=
"use_underline">True
</property>
523 <property name=
"draw_indicator">True
</property>
524 <property name=
"group">degrees_radio
</property>
525 <signal name=
"toggled" handler=
"trig_cb"/>
528 <property name=
"position">2</property>
533 <property name=
"expand">False
</property>
534 <property name=
"position">0</property>
538 <object class=
"GtkHBox" id=
"hbox9">
539 <property name=
"visible">True
</property>
541 <object class=
"GtkRadioButton" id=
"engineering_radio">
542 <property name=
"label" translatable=
"yes" comments=
"Engineering display radio button">E_ng
</property>
543 <property name=
"visible">True
</property>
544 <property name=
"can_focus">True
</property>
545 <property name=
"receives_default">False
</property>
546 <property name=
"tooltip_text" translatable=
"yes">Set display type to engineering format
</property>
547 <property name=
"use_underline">True
</property>
548 <property name=
"draw_indicator">True
</property>
549 <signal name=
"toggled" handler=
"disp_cb"/>
552 <property name=
"position">0</property>
556 <object class=
"GtkRadioButton" id=
"fixed_point_radio">
557 <property name=
"label" translatable=
"yes" comments=
"Fixed-point display radio button">_Fix
</property>
558 <property name=
"visible">True
</property>
559 <property name=
"can_focus">True
</property>
560 <property name=
"receives_default">False
</property>
561 <property name=
"tooltip_text" translatable=
"yes">Set display type to fixed-point format
</property>
562 <property name=
"use_underline">True
</property>
563 <property name=
"draw_indicator">True
</property>
564 <property name=
"group">engineering_radio
</property>
565 <signal name=
"toggled" handler=
"disp_cb"/>
568 <property name=
"position">1</property>
572 <object class=
"GtkRadioButton" id=
"scientific_radio">
573 <property name=
"label" translatable=
"yes" comments=
"Scientific display radio button">_Sci
</property>
574 <property name=
"visible">True
</property>
575 <property name=
"can_focus">True
</property>
576 <property name=
"receives_default">False
</property>
577 <property name=
"tooltip_text" translatable=
"yes">Set display type to scientific format
</property>
578 <property name=
"use_underline">True
</property>
579 <property name=
"draw_indicator">True
</property>
580 <property name=
"group">engineering_radio
</property>
581 <signal name=
"toggled" handler=
"disp_cb"/>
584 <property name=
"position">2</property>
589 <property name=
"expand">False
</property>
590 <property name=
"pack_type">end
</property>
591 <property name=
"position">1</property>
596 <property name=
"expand">False
</property>
597 <property name=
"position">0</property>
601 <object class=
"GtkHBox" id=
"hbox1">
602 <property name=
"visible">True
</property>
603 <property name=
"border_width">2</property>
605 <object class=
"GtkHBox" id=
"hbox8">
606 <property name=
"visible">True
</property>
608 <object class=
"GtkCheckButton" id=
"inverse_check">
609 <property name=
"label" translatable=
"yes" comments=
"Inverse check box">_Inv
</property>
610 <property name=
"visible">True
</property>
611 <property name=
"can_focus">True
</property>
612 <property name=
"receives_default">False
</property>
613 <property name=
"tooltip_text" translatable=
"yes">Set inverse option for trigonometric functions
</property>
614 <property name=
"use_underline">True
</property>
615 <property name=
"draw_indicator">True
</property>
616 <signal name=
"toggled" handler=
"inv_cb"/>
619 <property name=
"position">0</property>
623 <object class=
"GtkCheckButton" id=
"hyperbolic_check">
624 <property name=
"label" translatable=
"yes" comments=
"Hyperbolic check box">H_yp
</property>
625 <property name=
"visible">True
</property>
626 <property name=
"can_focus">True
</property>
627 <property name=
"receives_default">False
</property>
628 <property name=
"tooltip_text" translatable=
"yes">Set hyperbolic option for trigonometric functions
</property>
629 <property name=
"use_underline">True
</property>
630 <property name=
"draw_indicator">True
</property>
631 <signal name=
"toggled" handler=
"hyp_cb"/>
634 <property name=
"position">1</property>
639 <property name=
"expand">False
</property>
640 <property name=
"position">0</property>
648 <property name=
"expand">False
</property>
649 <property name=
"position">1</property>
654 <property name=
"expand">False
</property>
655 <property name=
"position">3</property>
659 <object class=
"GtkTable" id=
"financial_panel">
660 <property name=
"visible">True
</property>
661 <property name=
"border_width">8</property>
662 <property name=
"n_rows">2</property>
663 <property name=
"n_columns">8</property>
664 <property name=
"column_spacing">6</property>
665 <property name=
"row_spacing">6</property>
666 <property name=
"homogeneous">True
</property>
668 <object class=
"GtkButton" id=
"calc_finc_sum_of_the_years_digits_depreciation_button">
669 <property name=
"label" translatable=
"yes" comments=
"Calculates the depreciation allowance on an asset for a specified period of time, using the Sum-Of-The-Years'-Digits method. This method of depreciation accelerates the rate of depreciation, so that more depreciation expense occurs in earlier periods than in later ones. The depreciable cost is cost - salvage. The useful life is the number of periods, typically years, over which an asset is depreciated. See also: http://en.wikipedia.org/wiki/Depreciation">Syd
</property>
670 <property name=
"visible">True
</property>
671 <property name=
"can_focus">True
</property>
672 <property name=
"receives_default">False
</property>
673 <property name=
"tooltip_text" translatable=
"yes">Sum-of-the years'-digits depreciation [Y]
</property>
674 <property name=
"use_underline">True
</property>
675 <property name=
"focus_on_click">False
</property>
676 <child internal-child=
"accessible">
677 <object class=
"AtkObject" id=
"calc_finc_sum_of_the_years_digits_depreciation_button-atkobject">
678 <property name=
"AtkObject::accessible-name" translatable=
"yes">Sum-of-the years'-digits depreciation
</property>
679 <property name=
"AtkObject::accessible-description" translatable=
"yes">Sum-of-the years'-digits depreciation [y]
</property>
682 <signal name=
"clicked" handler=
"button_cb"/>
685 <property name=
"top_attach">1</property>
686 <property name=
"bottom_attach">2</property>
687 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
688 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
692 <object class=
"GtkButton" id=
"calc_finc_straight_line_depreciation_button">
693 <property name=
"label" translatable=
"yes" comments=
"Calculates the straight-line depreciation of an asset for one period. The depreciable cost is cost - salvage. The straight-line method of depreciation divides the depreciable cost evenly over the useful life of an asset. The useful life is the number of periods, typically years, over which an asset is depreciated. See also: http://en.wikipedia.org/wiki/Depreciation">Sln
</property>
694 <property name=
"visible">True
</property>
695 <property name=
"can_focus">True
</property>
696 <property name=
"receives_default">False
</property>
697 <property name=
"tooltip_text" translatable=
"yes">Straight-line depreciation [l]
</property>
698 <property name=
"use_underline">True
</property>
699 <property name=
"focus_on_click">False
</property>
700 <child internal-child=
"accessible">
701 <object class=
"AtkObject" id=
"calc_finc_straight_line_depreciation_button-atkobject">
702 <property name=
"AtkObject::accessible-name" translatable=
"yes">Straight-line depreciation
</property>
703 <property name=
"AtkObject::accessible-description" translatable=
"yes">Straight-line depreciation [l]
</property>
706 <signal name=
"clicked" handler=
"button_cb"/>
709 <property name=
"left_attach">7</property>
710 <property name=
"right_attach">8</property>
711 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
712 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
716 <object class=
"GtkButton" id=
"calc_finc_periodic_interest_rate_button">
717 <property name=
"label" translatable=
"yes" comments=
"Calculates the periodic interest necessary to increase an investment of present value pv to a future value of fv, over the number of compounding periods in term. See also: http://en.wikipedia.org/wiki/Interest ">Rate
</property>
718 <property name=
"visible">True
</property>
719 <property name=
"can_focus">True
</property>
720 <property name=
"receives_default">False
</property>
721 <property name=
"tooltip_text" translatable=
"yes">Periodic interest rate [T]
</property>
722 <property name=
"use_underline">True
</property>
723 <property name=
"focus_on_click">False
</property>
724 <child internal-child=
"accessible">
725 <object class=
"AtkObject" id=
"calc_finc_periodic_interest_rate_button-atkobject">
726 <property name=
"AtkObject::accessible-name" translatable=
"yes">Periodic interest rate
</property>
727 <property name=
"AtkObject::accessible-description" translatable=
"yes">Periodic interest rate [T]
</property>
730 <signal name=
"clicked" handler=
"button_cb"/>
733 <property name=
"left_attach">6</property>
734 <property name=
"right_attach">7</property>
735 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
736 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
740 <object class=
"GtkButton" id=
"calc_finc_present_value_button">
741 <property name=
"label" translatable=
"yes" comments=
"Calculates the present value of an investment based on a series of equal payments, each of amount pmt, discounted at a periodic interest rate of int, over the number of payment periods in the term. See also: http://en.wikipedia.org/wiki/Present_value">Pv
</property>
742 <property name=
"visible">True
</property>
743 <property name=
"can_focus">True
</property>
744 <property name=
"receives_default">False
</property>
745 <property name=
"tooltip_text" translatable=
"yes">Present value [p]
</property>
746 <property name=
"use_underline">True
</property>
747 <property name=
"focus_on_click">False
</property>
748 <child internal-child=
"accessible">
749 <object class=
"AtkObject" id=
"calc_finc_present_value_button-atkobject">
750 <property name=
"AtkObject::accessible-name" translatable=
"yes">Present value
</property>
751 <property name=
"AtkObject::accessible-description" translatable=
"yes">Present value [p]
</property>
754 <signal name=
"clicked" handler=
"button_cb"/>
757 <property name=
"left_attach">5</property>
758 <property name=
"right_attach">6</property>
759 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
760 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
764 <object class=
"GtkButton" id=
"calc_finc_periodic_payment_button">
765 <property name=
"label" translatable=
"yes" comments=
"Calculates the amount of the periodic payment of a loan, where payments are made at the end of each payment period. See also: http://en.wikipedia.org/wiki/Amortization_schedule">Pmt
</property>
766 <property name=
"visible">True
</property>
767 <property name=
"can_focus">True
</property>
768 <property name=
"receives_default">False
</property>
769 <property name=
"tooltip_text" translatable=
"yes">Periodic payment [P]
</property>
770 <property name=
"use_underline">True
</property>
771 <property name=
"focus_on_click">False
</property>
772 <child internal-child=
"accessible">
773 <object class=
"AtkObject" id=
"calc_finc_periodic_payment_button-atkobject">
774 <property name=
"AtkObject::accessible-name" translatable=
"yes">Periodic payment
</property>
775 <property name=
"AtkObject::accessible-description" translatable=
"yes">Periodic payment [P]
</property>
778 <signal name=
"clicked" handler=
"button_cb"/>
781 <property name=
"left_attach">4</property>
782 <property name=
"right_attach">5</property>
783 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
784 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
788 <object class=
"GtkButton" id=
"calc_finc_future_value_button">
789 <property name=
"label" translatable=
"yes" comments=
"Calculates the future value of an investment based on a series of equal payments, each of amount pmt, at a periodic interest rate of int, over the number of payment periods in the term. See also: http://en.wikipedia.org/wiki/Future_value">Fv
</property>
790 <property name=
"visible">True
</property>
791 <property name=
"can_focus">True
</property>
792 <property name=
"receives_default">False
</property>
793 <property name=
"tooltip_text" translatable=
"yes">Future value [v]
</property>
794 <property name=
"use_underline">True
</property>
795 <property name=
"focus_on_click">False
</property>
796 <child internal-child=
"accessible">
797 <object class=
"AtkObject" id=
"calc_finc_future_value_button-atkobject">
798 <property name=
"AtkObject::accessible-name" translatable=
"yes">Future value
</property>
799 <property name=
"AtkObject::accessible-description" translatable=
"yes">Future value [v]
</property>
802 <signal name=
"clicked" handler=
"button_cb"/>
805 <property name=
"left_attach">2</property>
806 <property name=
"right_attach">3</property>
807 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
808 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
812 <object class=
"GtkButton" id=
"calc_finc_gross_profit_margin_button">
813 <property name=
"label" translatable=
"yes" comments=
"Calculates the resale price of a product, based on the product cost and the wanted gross profit margin. See also: http://en.wikipedia.org/wiki/Gross_profit_margin">Gpm
</property>
814 <property name=
"visible">True
</property>
815 <property name=
"can_focus">True
</property>
816 <property name=
"receives_default">False
</property>
817 <property name=
"tooltip_text" translatable=
"yes">Gross Profit Margin [I]
</property>
818 <property name=
"use_underline">True
</property>
819 <property name=
"focus_on_click">False
</property>
820 <child internal-child=
"accessible">
821 <object class=
"AtkObject" id=
"calc_finc_gross_profit_margin_button-atkobject">
822 <property name=
"AtkObject::accessible-name" translatable=
"yes">Gross Profit Margin
</property>
823 <property name=
"AtkObject::accessible-description" translatable=
"yes">Gross Profit Margin [g]
</property>
826 <signal name=
"clicked" handler=
"button_cb"/>
829 <property name=
"left_attach">3</property>
830 <property name=
"right_attach">4</property>
831 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
832 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
836 <object class=
"GtkButton" id=
"calc_finc_double_declining_depreciation_button">
837 <property name=
"label" translatable=
"yes" comments=
"Calculates the depreciation allowance on an asset for a specified period of time, using the double-declining balance method. See also: http://en.wikipedia.org/wiki/Depreciation">Ddb
</property>
838 <property name=
"visible">True
</property>
839 <property name=
"can_focus">True
</property>
840 <property name=
"receives_default">False
</property>
841 <property name=
"tooltip_text" translatable=
"yes">Double-declining depreciation [D]
</property>
842 <property name=
"use_underline">True
</property>
843 <property name=
"focus_on_click">False
</property>
844 <child internal-child=
"accessible">
845 <object class=
"AtkObject" id=
"calc_finc_double_declining_depreciation_button-atkobject">
846 <property name=
"AtkObject::accessible-name" translatable=
"yes">Double-declining depreciation
</property>
847 <property name=
"AtkObject::accessible-description" translatable=
"yes">Double-declining depreciation [D]
</property>
850 <signal name=
"clicked" handler=
"button_cb"/>
853 <property name=
"left_attach">1</property>
854 <property name=
"right_attach">2</property>
855 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
856 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
860 <object class=
"GtkButton" id=
"calc_finc_compounding_term_button">
861 <property name=
"label" translatable=
"yes" comments=
"Calculates the number of compounding periods necessary to increase an investment of present value pv to a future value of fv, at a fixed interest rate of int per compounding period. See also: http://en.wikipedia.org/wiki/Compound_interest">Ctrm
</property>
862 <property name=
"visible">True
</property>
863 <property name=
"can_focus">True
</property>
864 <property name=
"receives_default">False
</property>
865 <property name=
"tooltip_text" translatable=
"yes">Compounding term [m]
</property>
866 <property name=
"use_underline">True
</property>
867 <property name=
"focus_on_click">False
</property>
868 <child internal-child=
"accessible">
869 <object class=
"AtkObject" id=
"calc_finc_compounding_term_button-atkobject">
870 <property name=
"AtkObject::accessible-name" translatable=
"yes">Compounding term
</property>
871 <property name=
"AtkObject::accessible-description" translatable=
"yes">Compounding term [m]
</property>
874 <signal name=
"clicked" handler=
"button_cb"/>
877 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
878 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
882 <object class=
"GtkButton" id=
"calc_finc_term_button">
883 <property name=
"label" translatable=
"yes" comments=
"Calculates the number of payment periods that are necessary during the term of an ordinary annuity, to accumulate a future value of fv, at a periodic interest rate of int. Each payment is equal to amount pmt. See also: http://en.wikipedia.org/wiki/Annuity_(finance_theory)">Term
</property>
884 <property name=
"visible">True
</property>
885 <property name=
"can_focus">True
</property>
886 <property name=
"receives_default">False
</property>
887 <property name=
"tooltip_text" translatable=
"yes">Payment period [t]
</property>
888 <property name=
"use_underline">True
</property>
889 <property name=
"focus_on_click">False
</property>
890 <child internal-child=
"accessible">
891 <object class=
"AtkObject" id=
"calc_finc_term_button-atkobject">
892 <property name=
"AtkObject::accessible-name" translatable=
"yes">Payment period
</property>
893 <property name=
"AtkObject::accessible-description" translatable=
"yes">Payment period [t]
</property>
896 <signal name=
"clicked" handler=
"button_cb"/>
899 <property name=
"left_attach">1</property>
900 <property name=
"right_attach">2</property>
901 <property name=
"top_attach">1</property>
902 <property name=
"bottom_attach">2</property>
903 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
904 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
927 <property name=
"position">4</property>
931 <object class=
"GtkAlignment" id=
"bit_panel">
932 <property name=
"visible">True
</property>
933 <property name=
"xscale">0</property>
934 <property name=
"yscale">0</property>
936 <object class=
"GtkTable" id=
"table8">
937 <property name=
"visible">True
</property>
938 <property name=
"border_width">6</property>
939 <property name=
"n_rows">4</property>
940 <property name=
"n_columns">39</property>
942 <object class=
"GtkEventBox" id=
"bit_eventbox_1">
943 <property name=
"visible">True
</property>
944 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
946 <object class=
"GtkLabel" id=
"bit_label_1">
947 <property name=
"visible">True
</property>
948 <property name=
"xalign">0</property>
949 <property name=
"label"> 0</property>
954 <property name=
"left_attach">1</property>
955 <property name=
"right_attach">2</property>
956 <property name=
"x_options">GTK_SHRINK
</property>
957 <property name=
"y_options"></property>
961 <object class=
"GtkEventBox" id=
"bit_eventbox_2">
962 <property name=
"visible">True
</property>
963 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
965 <object class=
"GtkLabel" id=
"bit_label_2">
966 <property name=
"visible">True
</property>
967 <property name=
"xalign">0</property>
968 <property name=
"label"> 0</property>
973 <property name=
"left_attach">2</property>
974 <property name=
"right_attach">3</property>
975 <property name=
"x_options">GTK_SHRINK
</property>
976 <property name=
"y_options"></property>
980 <object class=
"GtkEventBox" id=
"bit_eventbox_3">
981 <property name=
"visible">True
</property>
982 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
984 <object class=
"GtkLabel" id=
"bit_label_3">
985 <property name=
"visible">True
</property>
986 <property name=
"xalign">0</property>
987 <property name=
"label"> 0</property>
992 <property name=
"left_attach">3</property>
993 <property name=
"right_attach">4</property>
994 <property name=
"x_options">GTK_SHRINK
</property>
995 <property name=
"y_options"></property>
999 <object class=
"GtkEventBox" id=
"bit_eventbox_4">
1000 <property name=
"visible">True
</property>
1001 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1003 <object class=
"GtkLabel" id=
"bit_label_4">
1004 <property name=
"visible">True
</property>
1005 <property name=
"xalign">0</property>
1006 <property name=
"label"> 0</property>
1011 <property name=
"left_attach">5</property>
1012 <property name=
"right_attach">6</property>
1013 <property name=
"x_options">GTK_SHRINK
</property>
1014 <property name=
"y_options"></property>
1018 <object class=
"GtkEventBox" id=
"bit_eventbox_5">
1019 <property name=
"visible">True
</property>
1020 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1022 <object class=
"GtkLabel" id=
"bit_label_5">
1023 <property name=
"visible">True
</property>
1024 <property name=
"xalign">0</property>
1025 <property name=
"label"> 0</property>
1030 <property name=
"left_attach">6</property>
1031 <property name=
"right_attach">7</property>
1032 <property name=
"x_options">GTK_SHRINK
</property>
1033 <property name=
"y_options"></property>
1037 <object class=
"GtkEventBox" id=
"bit_eventbox_6">
1038 <property name=
"visible">True
</property>
1039 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1041 <object class=
"GtkLabel" id=
"bit_label_6">
1042 <property name=
"visible">True
</property>
1043 <property name=
"xalign">0</property>
1044 <property name=
"label"> 0</property>
1049 <property name=
"left_attach">7</property>
1050 <property name=
"right_attach">8</property>
1051 <property name=
"x_options">GTK_SHRINK
</property>
1052 <property name=
"y_options"></property>
1056 <object class=
"GtkEventBox" id=
"bit_eventbox_7">
1057 <property name=
"visible">True
</property>
1058 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1060 <object class=
"GtkLabel" id=
"bit_label_7">
1061 <property name=
"visible">True
</property>
1062 <property name=
"xalign">0</property>
1063 <property name=
"label"> 0</property>
1068 <property name=
"left_attach">8</property>
1069 <property name=
"right_attach">9</property>
1070 <property name=
"x_options">GTK_SHRINK
</property>
1071 <property name=
"y_options"></property>
1075 <object class=
"GtkEventBox" id=
"bit_eventbox_8">
1076 <property name=
"visible">True
</property>
1077 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1079 <object class=
"GtkLabel" id=
"bit_label_8">
1080 <property name=
"visible">True
</property>
1081 <property name=
"xalign">0</property>
1082 <property name=
"label"> 0</property>
1087 <property name=
"left_attach">10</property>
1088 <property name=
"right_attach">11</property>
1089 <property name=
"x_options">GTK_SHRINK
</property>
1090 <property name=
"y_options"></property>
1094 <object class=
"GtkEventBox" id=
"bit_eventbox_9">
1095 <property name=
"visible">True
</property>
1096 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1098 <object class=
"GtkLabel" id=
"bit_label_9">
1099 <property name=
"visible">True
</property>
1100 <property name=
"xalign">0</property>
1101 <property name=
"label"> 0</property>
1106 <property name=
"left_attach">11</property>
1107 <property name=
"right_attach">12</property>
1108 <property name=
"x_options">GTK_SHRINK
</property>
1109 <property name=
"y_options"></property>
1113 <object class=
"GtkEventBox" id=
"bit_eventbox_10">
1114 <property name=
"visible">True
</property>
1115 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1117 <object class=
"GtkLabel" id=
"bit_label_10">
1118 <property name=
"visible">True
</property>
1119 <property name=
"xalign">0</property>
1120 <property name=
"label"> 0</property>
1125 <property name=
"left_attach">12</property>
1126 <property name=
"right_attach">13</property>
1127 <property name=
"x_options">GTK_SHRINK
</property>
1128 <property name=
"y_options"></property>
1132 <object class=
"GtkEventBox" id=
"bit_eventbox_11">
1133 <property name=
"visible">True
</property>
1134 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1136 <object class=
"GtkLabel" id=
"bit_label_11">
1137 <property name=
"visible">True
</property>
1138 <property name=
"xalign">0</property>
1139 <property name=
"label"> 0</property>
1144 <property name=
"left_attach">13</property>
1145 <property name=
"right_attach">14</property>
1146 <property name=
"x_options">GTK_SHRINK
</property>
1147 <property name=
"y_options"></property>
1151 <object class=
"GtkEventBox" id=
"bit_eventbox_12">
1152 <property name=
"visible">True
</property>
1153 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1155 <object class=
"GtkLabel" id=
"bit_label_12">
1156 <property name=
"visible">True
</property>
1157 <property name=
"xalign">0</property>
1158 <property name=
"label"> 0</property>
1163 <property name=
"left_attach">15</property>
1164 <property name=
"right_attach">16</property>
1165 <property name=
"x_options">GTK_SHRINK
</property>
1166 <property name=
"y_options"></property>
1170 <object class=
"GtkEventBox" id=
"bit_eventbox_13">
1171 <property name=
"visible">True
</property>
1172 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1174 <object class=
"GtkLabel" id=
"bit_label_13">
1175 <property name=
"visible">True
</property>
1176 <property name=
"xalign">0</property>
1177 <property name=
"label"> 0</property>
1182 <property name=
"left_attach">16</property>
1183 <property name=
"right_attach">17</property>
1184 <property name=
"x_options">GTK_SHRINK
</property>
1185 <property name=
"y_options"></property>
1189 <object class=
"GtkEventBox" id=
"bit_eventbox_14">
1190 <property name=
"visible">True
</property>
1191 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1193 <object class=
"GtkLabel" id=
"bit_label_14">
1194 <property name=
"visible">True
</property>
1195 <property name=
"xalign">0</property>
1196 <property name=
"label"> 0</property>
1201 <property name=
"left_attach">17</property>
1202 <property name=
"right_attach">18</property>
1203 <property name=
"x_options">GTK_SHRINK
</property>
1204 <property name=
"y_options"></property>
1208 <object class=
"GtkEventBox" id=
"bit_eventbox_15">
1209 <property name=
"visible">True
</property>
1210 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1212 <object class=
"GtkLabel" id=
"bit_label_15">
1213 <property name=
"visible">True
</property>
1214 <property name=
"xalign">0</property>
1215 <property name=
"label"> 0</property>
1220 <property name=
"left_attach">18</property>
1221 <property name=
"right_attach">19</property>
1222 <property name=
"x_options">GTK_SHRINK
</property>
1223 <property name=
"y_options"></property>
1227 <object class=
"GtkEventBox" id=
"bit_eventbox_31">
1228 <property name=
"visible">True
</property>
1229 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1231 <object class=
"GtkLabel" id=
"bit_label_31">
1232 <property name=
"visible">True
</property>
1233 <property name=
"xalign">0</property>
1234 <property name=
"label"> 0</property>
1239 <property name=
"left_attach">38</property>
1240 <property name=
"right_attach">39</property>
1241 <property name=
"x_options">GTK_SHRINK
</property>
1242 <property name=
"y_options"></property>
1246 <object class=
"GtkEventBox" id=
"bit_eventbox_30">
1247 <property name=
"visible">True
</property>
1248 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1250 <object class=
"GtkLabel" id=
"bit_label_30">
1251 <property name=
"visible">True
</property>
1252 <property name=
"xalign">0</property>
1253 <property name=
"label"> 0</property>
1258 <property name=
"left_attach">37</property>
1259 <property name=
"right_attach">38</property>
1260 <property name=
"x_options">GTK_SHRINK
</property>
1261 <property name=
"y_options"></property>
1265 <object class=
"GtkEventBox" id=
"bit_eventbox_29">
1266 <property name=
"visible">True
</property>
1267 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1269 <object class=
"GtkLabel" id=
"bit_label_29">
1270 <property name=
"visible">True
</property>
1271 <property name=
"xalign">0</property>
1272 <property name=
"label"> 0</property>
1277 <property name=
"left_attach">36</property>
1278 <property name=
"right_attach">37</property>
1279 <property name=
"x_options">GTK_SHRINK
</property>
1280 <property name=
"y_options"></property>
1284 <object class=
"GtkEventBox" id=
"bit_eventbox_28">
1285 <property name=
"visible">True
</property>
1286 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1288 <object class=
"GtkLabel" id=
"bit_label_28">
1289 <property name=
"visible">True
</property>
1290 <property name=
"xalign">0</property>
1291 <property name=
"label"> 0</property>
1296 <property name=
"left_attach">35</property>
1297 <property name=
"right_attach">36</property>
1298 <property name=
"x_options">GTK_SHRINK
</property>
1299 <property name=
"y_options"></property>
1303 <object class=
"GtkEventBox" id=
"bit_eventbox_27">
1304 <property name=
"visible">True
</property>
1305 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1307 <object class=
"GtkLabel" id=
"bit_label_27">
1308 <property name=
"visible">True
</property>
1309 <property name=
"xalign">0</property>
1310 <property name=
"label"> 0</property>
1315 <property name=
"left_attach">33</property>
1316 <property name=
"right_attach">34</property>
1317 <property name=
"x_options">GTK_SHRINK
</property>
1318 <property name=
"y_options"></property>
1322 <object class=
"GtkEventBox" id=
"bit_eventbox_26">
1323 <property name=
"visible">True
</property>
1324 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1326 <object class=
"GtkLabel" id=
"bit_label_26">
1327 <property name=
"visible">True
</property>
1328 <property name=
"xalign">0</property>
1329 <property name=
"label"> 0</property>
1334 <property name=
"left_attach">32</property>
1335 <property name=
"right_attach">33</property>
1336 <property name=
"x_options">GTK_SHRINK
</property>
1337 <property name=
"y_options"></property>
1341 <object class=
"GtkEventBox" id=
"bit_eventbox_25">
1342 <property name=
"visible">True
</property>
1343 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1345 <object class=
"GtkLabel" id=
"bit_label_25">
1346 <property name=
"visible">True
</property>
1347 <property name=
"xalign">0</property>
1348 <property name=
"label"> 0</property>
1353 <property name=
"left_attach">31</property>
1354 <property name=
"right_attach">32</property>
1355 <property name=
"x_options">GTK_SHRINK
</property>
1356 <property name=
"y_options"></property>
1360 <object class=
"GtkEventBox" id=
"bit_eventbox_24">
1361 <property name=
"visible">True
</property>
1362 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1364 <object class=
"GtkLabel" id=
"bit_label_24">
1365 <property name=
"visible">True
</property>
1366 <property name=
"xalign">0</property>
1367 <property name=
"label"> 0</property>
1372 <property name=
"left_attach">30</property>
1373 <property name=
"right_attach">31</property>
1374 <property name=
"x_options">GTK_SHRINK
</property>
1375 <property name=
"y_options"></property>
1379 <object class=
"GtkEventBox" id=
"bit_eventbox_23">
1380 <property name=
"visible">True
</property>
1381 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1383 <object class=
"GtkLabel" id=
"bit_label_23">
1384 <property name=
"visible">True
</property>
1385 <property name=
"xalign">0</property>
1386 <property name=
"label"> 0</property>
1391 <property name=
"left_attach">28</property>
1392 <property name=
"right_attach">29</property>
1393 <property name=
"x_options">GTK_SHRINK
</property>
1394 <property name=
"y_options"></property>
1398 <object class=
"GtkEventBox" id=
"bit_eventbox_22">
1399 <property name=
"visible">True
</property>
1400 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1402 <object class=
"GtkLabel" id=
"bit_label_22">
1403 <property name=
"visible">True
</property>
1404 <property name=
"xalign">0</property>
1405 <property name=
"label"> 0</property>
1410 <property name=
"left_attach">27</property>
1411 <property name=
"right_attach">28</property>
1412 <property name=
"x_options">GTK_SHRINK
</property>
1413 <property name=
"y_options"></property>
1417 <object class=
"GtkEventBox" id=
"bit_eventbox_21">
1418 <property name=
"visible">True
</property>
1419 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1421 <object class=
"GtkLabel" id=
"bit_label_21">
1422 <property name=
"visible">True
</property>
1423 <property name=
"xalign">0</property>
1424 <property name=
"label"> 0</property>
1429 <property name=
"left_attach">26</property>
1430 <property name=
"right_attach">27</property>
1431 <property name=
"x_options">GTK_SHRINK
</property>
1432 <property name=
"y_options"></property>
1436 <object class=
"GtkEventBox" id=
"bit_eventbox_20">
1437 <property name=
"visible">True
</property>
1438 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1440 <object class=
"GtkLabel" id=
"bit_label_20">
1441 <property name=
"visible">True
</property>
1442 <property name=
"xalign">0</property>
1443 <property name=
"label"> 0</property>
1448 <property name=
"left_attach">25</property>
1449 <property name=
"right_attach">26</property>
1450 <property name=
"x_options">GTK_SHRINK
</property>
1451 <property name=
"y_options"></property>
1455 <object class=
"GtkEventBox" id=
"bit_eventbox_19">
1456 <property name=
"visible">True
</property>
1457 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1459 <object class=
"GtkLabel" id=
"bit_label_19">
1460 <property name=
"visible">True
</property>
1461 <property name=
"xalign">0</property>
1462 <property name=
"label"> 0</property>
1467 <property name=
"left_attach">23</property>
1468 <property name=
"right_attach">24</property>
1469 <property name=
"x_options">GTK_SHRINK
</property>
1470 <property name=
"y_options"></property>
1474 <object class=
"GtkEventBox" id=
"bit_eventbox_18">
1475 <property name=
"visible">True
</property>
1476 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1478 <object class=
"GtkLabel" id=
"bit_label_18">
1479 <property name=
"visible">True
</property>
1480 <property name=
"xalign">0</property>
1481 <property name=
"label"> 0</property>
1486 <property name=
"left_attach">22</property>
1487 <property name=
"right_attach">23</property>
1488 <property name=
"x_options">GTK_SHRINK
</property>
1489 <property name=
"y_options"></property>
1493 <object class=
"GtkEventBox" id=
"bit_eventbox_17">
1494 <property name=
"visible">True
</property>
1495 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1497 <object class=
"GtkLabel" id=
"bit_label_17">
1498 <property name=
"visible">True
</property>
1499 <property name=
"xalign">0</property>
1500 <property name=
"label"> 0</property>
1505 <property name=
"left_attach">21</property>
1506 <property name=
"right_attach">22</property>
1507 <property name=
"x_options">GTK_SHRINK
</property>
1508 <property name=
"y_options"></property>
1512 <object class=
"GtkEventBox" id=
"bit_eventbox_16">
1513 <property name=
"visible">True
</property>
1514 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1516 <object class=
"GtkLabel" id=
"bit_label_16">
1517 <property name=
"visible">True
</property>
1518 <property name=
"xalign">0</property>
1519 <property name=
"label"> 0</property>
1524 <property name=
"left_attach">20</property>
1525 <property name=
"right_attach">21</property>
1526 <property name=
"x_options">GTK_SHRINK
</property>
1527 <property name=
"y_options"></property>
1531 <object class=
"GtkLabel" id=
"bit_marker_label0">
1532 <property name=
"visible">True
</property>
1533 <property name=
"xalign">0</property>
1534 <property name=
"label" translatable=
"yes" comments=
"Label for the most significant bit (bit 63) on the bit editor">63</property>
1535 <property name=
"justify">center
</property>
1538 <property name=
"top_attach">1</property>
1539 <property name=
"bottom_attach">2</property>
1540 <property name=
"x_options">GTK_SHRINK
</property>
1541 <property name=
"y_options"></property>
1545 <object class=
"GtkLabel" id=
"bit_maker_label3">
1546 <property name=
"visible">True
</property>
1547 <property name=
"xalign">0</property>
1548 <property name=
"label" translatable=
"yes" comments=
"Label for bit 31 on the bit editor">31</property>
1549 <property name=
"justify">center
</property>
1552 <property name=
"top_attach">3</property>
1553 <property name=
"bottom_attach">4</property>
1554 <property name=
"x_options">GTK_SHRINK
</property>
1555 <property name=
"y_options"></property>
1559 <object class=
"GtkLabel" id=
"bit_marker_label2">
1560 <property name=
"visible">True
</property>
1561 <property name=
"xalign">0</property>
1562 <property name=
"label" translatable=
"yes" comments=
"Label for bit 32 on the bit editor">32</property>
1563 <property name=
"justify">center
</property>
1566 <property name=
"left_attach">38</property>
1567 <property name=
"right_attach">39</property>
1568 <property name=
"top_attach">1</property>
1569 <property name=
"bottom_attach">2</property>
1570 <property name=
"x_options">GTK_SHRINK
</property>
1571 <property name=
"y_options"></property>
1575 <object class=
"GtkLabel" id=
"bit_marker_label5">
1576 <property name=
"visible">True
</property>
1577 <property name=
"xalign">0</property>
1578 <property name=
"label" translatable=
"yes" comments=
"Label for the least significant bit (bit 0) on the bit editor">0</property>
1579 <property name=
"justify">center
</property>
1582 <property name=
"left_attach">38</property>
1583 <property name=
"right_attach">39</property>
1584 <property name=
"top_attach">3</property>
1585 <property name=
"bottom_attach">4</property>
1586 <property name=
"x_options">GTK_SHRINK
</property>
1587 <property name=
"y_options"></property>
1591 <object class=
"GtkEventBox" id=
"bit_eventbox_32">
1592 <property name=
"visible">True
</property>
1593 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1595 <object class=
"GtkLabel" id=
"bit_label_32">
1596 <property name=
"visible">True
</property>
1597 <property name=
"xalign">0</property>
1598 <property name=
"label"> 0</property>
1603 <property name=
"top_attach">2</property>
1604 <property name=
"bottom_attach">3</property>
1605 <property name=
"x_options">GTK_SHRINK
</property>
1606 <property name=
"y_options"></property>
1610 <object class=
"GtkEventBox" id=
"bit_eventbox_33">
1611 <property name=
"visible">True
</property>
1612 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1614 <object class=
"GtkLabel" id=
"bit_label_33">
1615 <property name=
"visible">True
</property>
1616 <property name=
"xalign">0</property>
1617 <property name=
"label"> 0</property>
1622 <property name=
"left_attach">1</property>
1623 <property name=
"right_attach">2</property>
1624 <property name=
"top_attach">2</property>
1625 <property name=
"bottom_attach">3</property>
1626 <property name=
"x_options">GTK_SHRINK
</property>
1627 <property name=
"y_options"></property>
1631 <object class=
"GtkEventBox" id=
"bit_eventbox_34">
1632 <property name=
"visible">True
</property>
1633 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1635 <object class=
"GtkLabel" id=
"bit_label_34">
1636 <property name=
"visible">True
</property>
1637 <property name=
"xalign">0</property>
1638 <property name=
"label"> 0</property>
1643 <property name=
"left_attach">2</property>
1644 <property name=
"right_attach">3</property>
1645 <property name=
"top_attach">2</property>
1646 <property name=
"bottom_attach">3</property>
1647 <property name=
"x_options">GTK_SHRINK
</property>
1648 <property name=
"y_options"></property>
1652 <object class=
"GtkEventBox" id=
"bit_eventbox_35">
1653 <property name=
"visible">True
</property>
1654 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1656 <object class=
"GtkLabel" id=
"bit_label_35">
1657 <property name=
"visible">True
</property>
1658 <property name=
"xalign">0</property>
1659 <property name=
"label"> 0</property>
1664 <property name=
"left_attach">3</property>
1665 <property name=
"right_attach">4</property>
1666 <property name=
"top_attach">2</property>
1667 <property name=
"bottom_attach">3</property>
1668 <property name=
"x_options">GTK_SHRINK
</property>
1669 <property name=
"y_options"></property>
1673 <object class=
"GtkEventBox" id=
"bit_eventbox_36">
1674 <property name=
"visible">True
</property>
1675 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1677 <object class=
"GtkLabel" id=
"bit_label_36">
1678 <property name=
"visible">True
</property>
1679 <property name=
"xalign">0</property>
1680 <property name=
"label"> 0</property>
1685 <property name=
"left_attach">5</property>
1686 <property name=
"right_attach">6</property>
1687 <property name=
"top_attach">2</property>
1688 <property name=
"bottom_attach">3</property>
1689 <property name=
"x_options">GTK_SHRINK
</property>
1690 <property name=
"y_options"></property>
1694 <object class=
"GtkEventBox" id=
"bit_eventbox_37">
1695 <property name=
"visible">True
</property>
1696 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1698 <object class=
"GtkLabel" id=
"bit_label_37">
1699 <property name=
"visible">True
</property>
1700 <property name=
"xalign">0</property>
1701 <property name=
"label"> 0</property>
1706 <property name=
"left_attach">6</property>
1707 <property name=
"right_attach">7</property>
1708 <property name=
"top_attach">2</property>
1709 <property name=
"bottom_attach">3</property>
1710 <property name=
"x_options">GTK_SHRINK
</property>
1711 <property name=
"y_options"></property>
1715 <object class=
"GtkEventBox" id=
"bit_eventbox_38">
1716 <property name=
"visible">True
</property>
1717 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1719 <object class=
"GtkLabel" id=
"bit_label_38">
1720 <property name=
"visible">True
</property>
1721 <property name=
"xalign">0</property>
1722 <property name=
"label"> 0</property>
1727 <property name=
"left_attach">7</property>
1728 <property name=
"right_attach">8</property>
1729 <property name=
"top_attach">2</property>
1730 <property name=
"bottom_attach">3</property>
1731 <property name=
"x_options">GTK_SHRINK
</property>
1732 <property name=
"y_options"></property>
1736 <object class=
"GtkEventBox" id=
"bit_eventbox_39">
1737 <property name=
"visible">True
</property>
1738 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1740 <object class=
"GtkLabel" id=
"bit_label_39">
1741 <property name=
"visible">True
</property>
1742 <property name=
"xalign">0</property>
1743 <property name=
"label"> 0</property>
1748 <property name=
"left_attach">8</property>
1749 <property name=
"right_attach">9</property>
1750 <property name=
"top_attach">2</property>
1751 <property name=
"bottom_attach">3</property>
1752 <property name=
"x_options">GTK_SHRINK
</property>
1753 <property name=
"y_options"></property>
1757 <object class=
"GtkEventBox" id=
"bit_eventbox_40">
1758 <property name=
"visible">True
</property>
1759 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1761 <object class=
"GtkLabel" id=
"bit_label_40">
1762 <property name=
"visible">True
</property>
1763 <property name=
"xalign">0</property>
1764 <property name=
"label"> 0</property>
1769 <property name=
"left_attach">10</property>
1770 <property name=
"right_attach">11</property>
1771 <property name=
"top_attach">2</property>
1772 <property name=
"bottom_attach">3</property>
1773 <property name=
"x_options">GTK_SHRINK
</property>
1774 <property name=
"y_options"></property>
1778 <object class=
"GtkEventBox" id=
"bit_eventbox_41">
1779 <property name=
"visible">True
</property>
1780 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1782 <object class=
"GtkLabel" id=
"bit_label_41">
1783 <property name=
"visible">True
</property>
1784 <property name=
"xalign">0</property>
1785 <property name=
"label"> 0</property>
1790 <property name=
"left_attach">11</property>
1791 <property name=
"right_attach">12</property>
1792 <property name=
"top_attach">2</property>
1793 <property name=
"bottom_attach">3</property>
1794 <property name=
"x_options">GTK_SHRINK
</property>
1795 <property name=
"y_options"></property>
1799 <object class=
"GtkEventBox" id=
"bit_eventbox_42">
1800 <property name=
"visible">True
</property>
1801 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1803 <object class=
"GtkLabel" id=
"bit_label_42">
1804 <property name=
"visible">True
</property>
1805 <property name=
"xalign">0</property>
1806 <property name=
"label"> 0</property>
1811 <property name=
"left_attach">12</property>
1812 <property name=
"right_attach">13</property>
1813 <property name=
"top_attach">2</property>
1814 <property name=
"bottom_attach">3</property>
1815 <property name=
"x_options">GTK_SHRINK
</property>
1816 <property name=
"y_options"></property>
1820 <object class=
"GtkEventBox" id=
"bit_eventbox_43">
1821 <property name=
"visible">True
</property>
1822 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1824 <object class=
"GtkLabel" id=
"bit_label_43">
1825 <property name=
"visible">True
</property>
1826 <property name=
"xalign">0</property>
1827 <property name=
"label"> 0</property>
1832 <property name=
"left_attach">13</property>
1833 <property name=
"right_attach">14</property>
1834 <property name=
"top_attach">2</property>
1835 <property name=
"bottom_attach">3</property>
1836 <property name=
"x_options">GTK_SHRINK
</property>
1837 <property name=
"y_options"></property>
1841 <object class=
"GtkEventBox" id=
"bit_eventbox_44">
1842 <property name=
"visible">True
</property>
1843 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1845 <object class=
"GtkLabel" id=
"bit_label_44">
1846 <property name=
"visible">True
</property>
1847 <property name=
"xalign">0</property>
1848 <property name=
"label"> 0</property>
1853 <property name=
"left_attach">15</property>
1854 <property name=
"right_attach">16</property>
1855 <property name=
"top_attach">2</property>
1856 <property name=
"bottom_attach">3</property>
1857 <property name=
"x_options">GTK_SHRINK
</property>
1858 <property name=
"y_options"></property>
1862 <object class=
"GtkEventBox" id=
"bit_eventbox_45">
1863 <property name=
"visible">True
</property>
1864 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1866 <object class=
"GtkLabel" id=
"bit_label_45">
1867 <property name=
"visible">True
</property>
1868 <property name=
"xalign">0</property>
1869 <property name=
"label"> 0</property>
1874 <property name=
"left_attach">16</property>
1875 <property name=
"right_attach">17</property>
1876 <property name=
"top_attach">2</property>
1877 <property name=
"bottom_attach">3</property>
1878 <property name=
"x_options">GTK_SHRINK
</property>
1879 <property name=
"y_options"></property>
1883 <object class=
"GtkEventBox" id=
"bit_eventbox_46">
1884 <property name=
"visible">True
</property>
1885 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1887 <object class=
"GtkLabel" id=
"bit_label_46">
1888 <property name=
"visible">True
</property>
1889 <property name=
"xalign">0</property>
1890 <property name=
"label"> 0</property>
1895 <property name=
"left_attach">17</property>
1896 <property name=
"right_attach">18</property>
1897 <property name=
"top_attach">2</property>
1898 <property name=
"bottom_attach">3</property>
1899 <property name=
"x_options">GTK_SHRINK
</property>
1900 <property name=
"y_options"></property>
1904 <object class=
"GtkEventBox" id=
"bit_eventbox_47">
1905 <property name=
"visible">True
</property>
1906 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1908 <object class=
"GtkLabel" id=
"bit_label_47">
1909 <property name=
"visible">True
</property>
1910 <property name=
"xalign">0</property>
1911 <property name=
"label"> 0</property>
1916 <property name=
"left_attach">18</property>
1917 <property name=
"right_attach">19</property>
1918 <property name=
"top_attach">2</property>
1919 <property name=
"bottom_attach">3</property>
1920 <property name=
"x_options">GTK_SHRINK
</property>
1921 <property name=
"y_options"></property>
1925 <object class=
"GtkEventBox" id=
"bit_eventbox_48">
1926 <property name=
"visible">True
</property>
1927 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1929 <object class=
"GtkLabel" id=
"bit_label_48">
1930 <property name=
"visible">True
</property>
1931 <property name=
"xalign">0</property>
1932 <property name=
"label"> 0</property>
1937 <property name=
"left_attach">20</property>
1938 <property name=
"right_attach">21</property>
1939 <property name=
"top_attach">2</property>
1940 <property name=
"bottom_attach">3</property>
1941 <property name=
"x_options">GTK_SHRINK
</property>
1942 <property name=
"y_options"></property>
1946 <object class=
"GtkEventBox" id=
"bit_eventbox_49">
1947 <property name=
"visible">True
</property>
1948 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1950 <object class=
"GtkLabel" id=
"bit_label_49">
1951 <property name=
"visible">True
</property>
1952 <property name=
"xalign">0</property>
1953 <property name=
"label"> 0</property>
1958 <property name=
"left_attach">21</property>
1959 <property name=
"right_attach">22</property>
1960 <property name=
"top_attach">2</property>
1961 <property name=
"bottom_attach">3</property>
1962 <property name=
"x_options">GTK_SHRINK
</property>
1963 <property name=
"y_options"></property>
1967 <object class=
"GtkEventBox" id=
"bit_eventbox_50">
1968 <property name=
"visible">True
</property>
1969 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1971 <object class=
"GtkLabel" id=
"bit_label_50">
1972 <property name=
"visible">True
</property>
1973 <property name=
"xalign">0</property>
1974 <property name=
"label"> 0</property>
1979 <property name=
"left_attach">22</property>
1980 <property name=
"right_attach">23</property>
1981 <property name=
"top_attach">2</property>
1982 <property name=
"bottom_attach">3</property>
1983 <property name=
"x_options">GTK_SHRINK
</property>
1984 <property name=
"y_options"></property>
1988 <object class=
"GtkEventBox" id=
"bit_eventbox_51">
1989 <property name=
"visible">True
</property>
1990 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
1992 <object class=
"GtkLabel" id=
"bit_label_51">
1993 <property name=
"visible">True
</property>
1994 <property name=
"xalign">0</property>
1995 <property name=
"label"> 0</property>
2000 <property name=
"left_attach">23</property>
2001 <property name=
"right_attach">24</property>
2002 <property name=
"top_attach">2</property>
2003 <property name=
"bottom_attach">3</property>
2004 <property name=
"x_options">GTK_SHRINK
</property>
2005 <property name=
"y_options"></property>
2009 <object class=
"GtkEventBox" id=
"bit_eventbox_52">
2010 <property name=
"visible">True
</property>
2011 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2013 <object class=
"GtkLabel" id=
"bit_label_52">
2014 <property name=
"visible">True
</property>
2015 <property name=
"xalign">0</property>
2016 <property name=
"label"> 0</property>
2021 <property name=
"left_attach">25</property>
2022 <property name=
"right_attach">26</property>
2023 <property name=
"top_attach">2</property>
2024 <property name=
"bottom_attach">3</property>
2025 <property name=
"x_options">GTK_SHRINK
</property>
2026 <property name=
"y_options"></property>
2030 <object class=
"GtkEventBox" id=
"bit_eventbox_53">
2031 <property name=
"visible">True
</property>
2032 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2034 <object class=
"GtkLabel" id=
"bit_label_53">
2035 <property name=
"visible">True
</property>
2036 <property name=
"xalign">0</property>
2037 <property name=
"label"> 0</property>
2042 <property name=
"left_attach">26</property>
2043 <property name=
"right_attach">27</property>
2044 <property name=
"top_attach">2</property>
2045 <property name=
"bottom_attach">3</property>
2046 <property name=
"x_options">GTK_SHRINK
</property>
2047 <property name=
"y_options"></property>
2051 <object class=
"GtkEventBox" id=
"bit_eventbox_54">
2052 <property name=
"visible">True
</property>
2053 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2055 <object class=
"GtkLabel" id=
"bit_label_54">
2056 <property name=
"visible">True
</property>
2057 <property name=
"xalign">0</property>
2058 <property name=
"label"> 0</property>
2063 <property name=
"left_attach">27</property>
2064 <property name=
"right_attach">28</property>
2065 <property name=
"top_attach">2</property>
2066 <property name=
"bottom_attach">3</property>
2067 <property name=
"x_options">GTK_SHRINK
</property>
2068 <property name=
"y_options"></property>
2072 <object class=
"GtkEventBox" id=
"bit_eventbox_55">
2073 <property name=
"visible">True
</property>
2074 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2076 <object class=
"GtkLabel" id=
"bit_label_55">
2077 <property name=
"visible">True
</property>
2078 <property name=
"xalign">0</property>
2079 <property name=
"label"> 0</property>
2084 <property name=
"left_attach">28</property>
2085 <property name=
"right_attach">29</property>
2086 <property name=
"top_attach">2</property>
2087 <property name=
"bottom_attach">3</property>
2088 <property name=
"x_options">GTK_SHRINK
</property>
2089 <property name=
"y_options"></property>
2093 <object class=
"GtkEventBox" id=
"bit_eventbox_56">
2094 <property name=
"visible">True
</property>
2095 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2097 <object class=
"GtkLabel" id=
"bit_label_56">
2098 <property name=
"visible">True
</property>
2099 <property name=
"xalign">0</property>
2100 <property name=
"label"> 0</property>
2105 <property name=
"left_attach">30</property>
2106 <property name=
"right_attach">31</property>
2107 <property name=
"top_attach">2</property>
2108 <property name=
"bottom_attach">3</property>
2109 <property name=
"x_options">GTK_SHRINK
</property>
2110 <property name=
"y_options"></property>
2114 <object class=
"GtkEventBox" id=
"bit_eventbox_57">
2115 <property name=
"visible">True
</property>
2116 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2118 <object class=
"GtkLabel" id=
"bit_label_57">
2119 <property name=
"visible">True
</property>
2120 <property name=
"xalign">0</property>
2121 <property name=
"label"> 0</property>
2126 <property name=
"left_attach">31</property>
2127 <property name=
"right_attach">32</property>
2128 <property name=
"top_attach">2</property>
2129 <property name=
"bottom_attach">3</property>
2130 <property name=
"x_options">GTK_SHRINK
</property>
2131 <property name=
"y_options"></property>
2135 <object class=
"GtkEventBox" id=
"bit_eventbox_58">
2136 <property name=
"visible">True
</property>
2137 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2139 <object class=
"GtkLabel" id=
"bit_label_58">
2140 <property name=
"visible">True
</property>
2141 <property name=
"xalign">0</property>
2142 <property name=
"label"> 0</property>
2147 <property name=
"left_attach">32</property>
2148 <property name=
"right_attach">33</property>
2149 <property name=
"top_attach">2</property>
2150 <property name=
"bottom_attach">3</property>
2151 <property name=
"x_options">GTK_SHRINK
</property>
2152 <property name=
"y_options"></property>
2156 <object class=
"GtkEventBox" id=
"bit_eventbox_59">
2157 <property name=
"visible">True
</property>
2158 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2160 <object class=
"GtkLabel" id=
"bit_label_59">
2161 <property name=
"visible">True
</property>
2162 <property name=
"xalign">0</property>
2163 <property name=
"label"> 0</property>
2168 <property name=
"left_attach">33</property>
2169 <property name=
"right_attach">34</property>
2170 <property name=
"top_attach">2</property>
2171 <property name=
"bottom_attach">3</property>
2172 <property name=
"x_options">GTK_SHRINK
</property>
2173 <property name=
"y_options"></property>
2177 <object class=
"GtkEventBox" id=
"bit_eventbox_60">
2178 <property name=
"visible">True
</property>
2179 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2181 <object class=
"GtkLabel" id=
"bit_label_60">
2182 <property name=
"visible">True
</property>
2183 <property name=
"xalign">0</property>
2184 <property name=
"label"> 0</property>
2189 <property name=
"left_attach">35</property>
2190 <property name=
"right_attach">36</property>
2191 <property name=
"top_attach">2</property>
2192 <property name=
"bottom_attach">3</property>
2193 <property name=
"x_options">GTK_SHRINK
</property>
2194 <property name=
"y_options"></property>
2198 <object class=
"GtkEventBox" id=
"bit_eventbox_61">
2199 <property name=
"visible">True
</property>
2200 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2202 <object class=
"GtkLabel" id=
"bit_label_61">
2203 <property name=
"visible">True
</property>
2204 <property name=
"xalign">0</property>
2205 <property name=
"label"> 0</property>
2210 <property name=
"left_attach">36</property>
2211 <property name=
"right_attach">37</property>
2212 <property name=
"top_attach">2</property>
2213 <property name=
"bottom_attach">3</property>
2214 <property name=
"x_options">GTK_SHRINK
</property>
2215 <property name=
"y_options"></property>
2219 <object class=
"GtkEventBox" id=
"bit_eventbox_62">
2220 <property name=
"visible">True
</property>
2221 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2223 <object class=
"GtkLabel" id=
"bit_label_62">
2224 <property name=
"visible">True
</property>
2225 <property name=
"xalign">0</property>
2226 <property name=
"label"> 0</property>
2231 <property name=
"left_attach">37</property>
2232 <property name=
"right_attach">38</property>
2233 <property name=
"top_attach">2</property>
2234 <property name=
"bottom_attach">3</property>
2235 <property name=
"x_options">GTK_SHRINK
</property>
2236 <property name=
"y_options"></property>
2240 <object class=
"GtkEventBox" id=
"bit_eventbox_63">
2241 <property name=
"visible">True
</property>
2242 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2244 <object class=
"GtkLabel" id=
"bit_label_63">
2245 <property name=
"visible">True
</property>
2246 <property name=
"xalign">0</property>
2247 <property name=
"label"> 0</property>
2252 <property name=
"left_attach">38</property>
2253 <property name=
"right_attach">39</property>
2254 <property name=
"top_attach">2</property>
2255 <property name=
"bottom_attach">3</property>
2256 <property name=
"x_options">GTK_SHRINK
</property>
2257 <property name=
"y_options"></property>
2261 <object class=
"GtkLabel" id=
"bit_marker_label1">
2262 <property name=
"visible">True
</property>
2263 <property name=
"xalign">0</property>
2264 <property name=
"label" translatable=
"yes" comments=
"Label for bit 47 on the bit editor">47</property>
2265 <property name=
"justify">center
</property>
2268 <property name=
"left_attach">20</property>
2269 <property name=
"right_attach">21</property>
2270 <property name=
"top_attach">1</property>
2271 <property name=
"bottom_attach">2</property>
2272 <property name=
"x_options">GTK_FILL
</property>
2273 <property name=
"y_options"></property>
2277 <object class=
"GtkLabel" id=
"bit_marker_label4">
2278 <property name=
"visible">True
</property>
2279 <property name=
"xalign">0</property>
2280 <property name=
"label" translatable=
"yes" comments=
"Label for bit 15 on the bit editor">15</property>
2281 <property name=
"justify">center
</property>
2284 <property name=
"left_attach">20</property>
2285 <property name=
"right_attach">21</property>
2286 <property name=
"top_attach">3</property>
2287 <property name=
"bottom_attach">4</property>
2288 <property name=
"x_options">GTK_FILL
</property>
2289 <property name=
"y_options"></property>
2293 <object class=
"GtkLabel" id=
"label25">
2294 <property name=
"visible">True
</property>
2295 <property name=
"xalign">0</property>
2296 <property name=
"label"> </property>
2299 <property name=
"left_attach">4</property>
2300 <property name=
"right_attach">5</property>
2301 <property name=
"x_options">GTK_FILL
</property>
2302 <property name=
"y_options"></property>
2306 <object class=
"GtkLabel" id=
"label26">
2307 <property name=
"visible">True
</property>
2308 <property name=
"xalign">0</property>
2309 <property name=
"label"> </property>
2312 <property name=
"left_attach">9</property>
2313 <property name=
"right_attach">10</property>
2314 <property name=
"x_options">GTK_FILL
</property>
2315 <property name=
"y_options"></property>
2319 <object class=
"GtkLabel" id=
"label27">
2320 <property name=
"visible">True
</property>
2321 <property name=
"xalign">0</property>
2322 <property name=
"label"> </property>
2325 <property name=
"left_attach">14</property>
2326 <property name=
"right_attach">15</property>
2327 <property name=
"x_options">GTK_FILL
</property>
2328 <property name=
"y_options"></property>
2332 <object class=
"GtkLabel" id=
"label28">
2333 <property name=
"visible">True
</property>
2334 <property name=
"xalign">0</property>
2335 <property name=
"label"> </property>
2338 <property name=
"left_attach">19</property>
2339 <property name=
"right_attach">20</property>
2340 <property name=
"x_options">GTK_FILL
</property>
2341 <property name=
"y_options"></property>
2345 <object class=
"GtkLabel" id=
"label29">
2346 <property name=
"visible">True
</property>
2347 <property name=
"xalign">0</property>
2348 <property name=
"label"> </property>
2351 <property name=
"left_attach">24</property>
2352 <property name=
"right_attach">25</property>
2353 <property name=
"x_options">GTK_FILL
</property>
2354 <property name=
"y_options"></property>
2358 <object class=
"GtkLabel" id=
"label30">
2359 <property name=
"visible">True
</property>
2360 <property name=
"xalign">0</property>
2361 <property name=
"label"> </property>
2364 <property name=
"left_attach">29</property>
2365 <property name=
"right_attach">30</property>
2366 <property name=
"x_options">GTK_FILL
</property>
2367 <property name=
"y_options"></property>
2371 <object class=
"GtkLabel" id=
"label31">
2372 <property name=
"visible">True
</property>
2373 <property name=
"xalign">0</property>
2374 <property name=
"label"> </property>
2377 <property name=
"left_attach">34</property>
2378 <property name=
"right_attach">35</property>
2379 <property name=
"x_options">GTK_FILL
</property>
2380 <property name=
"y_options"></property>
2384 <object class=
"GtkLabel" id=
"label32">
2385 <property name=
"visible">True
</property>
2386 <property name=
"xalign">0</property>
2387 <property name=
"label"> </property>
2390 <property name=
"left_attach">4</property>
2391 <property name=
"right_attach">5</property>
2392 <property name=
"top_attach">2</property>
2393 <property name=
"bottom_attach">3</property>
2394 <property name=
"x_options">GTK_FILL
</property>
2395 <property name=
"y_options"></property>
2399 <object class=
"GtkLabel" id=
"label33">
2400 <property name=
"visible">True
</property>
2401 <property name=
"xalign">0</property>
2402 <property name=
"label"> </property>
2405 <property name=
"left_attach">9</property>
2406 <property name=
"right_attach">10</property>
2407 <property name=
"top_attach">2</property>
2408 <property name=
"bottom_attach">3</property>
2409 <property name=
"x_options">GTK_FILL
</property>
2410 <property name=
"y_options"></property>
2414 <object class=
"GtkLabel" id=
"label34">
2415 <property name=
"visible">True
</property>
2416 <property name=
"xalign">0</property>
2417 <property name=
"label"> </property>
2420 <property name=
"left_attach">14</property>
2421 <property name=
"right_attach">15</property>
2422 <property name=
"top_attach">2</property>
2423 <property name=
"bottom_attach">3</property>
2424 <property name=
"x_options">GTK_FILL
</property>
2425 <property name=
"y_options"></property>
2429 <object class=
"GtkLabel" id=
"label35">
2430 <property name=
"visible">True
</property>
2431 <property name=
"xalign">0</property>
2432 <property name=
"label"> </property>
2435 <property name=
"left_attach">19</property>
2436 <property name=
"right_attach">20</property>
2437 <property name=
"top_attach">2</property>
2438 <property name=
"bottom_attach">3</property>
2439 <property name=
"x_options">GTK_FILL
</property>
2440 <property name=
"y_options"></property>
2444 <object class=
"GtkLabel" id=
"label36">
2445 <property name=
"visible">True
</property>
2446 <property name=
"xalign">0</property>
2447 <property name=
"label"> </property>
2450 <property name=
"left_attach">24</property>
2451 <property name=
"right_attach">25</property>
2452 <property name=
"top_attach">2</property>
2453 <property name=
"bottom_attach">3</property>
2454 <property name=
"x_options">GTK_FILL
</property>
2455 <property name=
"y_options"></property>
2459 <object class=
"GtkLabel" id=
"label37">
2460 <property name=
"visible">True
</property>
2461 <property name=
"xalign">0</property>
2462 <property name=
"label"> </property>
2465 <property name=
"left_attach">29</property>
2466 <property name=
"right_attach">30</property>
2467 <property name=
"top_attach">2</property>
2468 <property name=
"bottom_attach">3</property>
2469 <property name=
"x_options">GTK_FILL
</property>
2470 <property name=
"y_options"></property>
2474 <object class=
"GtkLabel" id=
"label38">
2475 <property name=
"visible">True
</property>
2476 <property name=
"xalign">0</property>
2477 <property name=
"label"> </property>
2480 <property name=
"left_attach">34</property>
2481 <property name=
"right_attach">35</property>
2482 <property name=
"top_attach">2</property>
2483 <property name=
"bottom_attach">3</property>
2484 <property name=
"x_options">GTK_FILL
</property>
2485 <property name=
"y_options"></property>
2489 <object class=
"GtkEventBox" id=
"bit_eventbox_0">
2490 <property name=
"visible">True
</property>
2491 <signal name=
"button_press_event" handler=
"bit_toggle_cb"/>
2493 <object class=
"GtkLabel" id=
"bit_label_0">
2494 <property name=
"visible">True
</property>
2495 <property name=
"xalign">0</property>
2496 <property name=
"label"> 0</property>
2501 <property name=
"x_options">GTK_SHRINK
</property>
2502 <property name=
"y_options"></property>
2725 <property name=
"expand">False
</property>
2726 <property name=
"position">5</property>
2730 <object class=
"GtkTable" id=
"scientific_panel">
2731 <property name=
"visible">True
</property>
2732 <property name=
"border_width">8</property>
2733 <property name=
"n_rows">2</property>
2734 <property name=
"n_columns">8</property>
2735 <property name=
"column_spacing">6</property>
2736 <property name=
"row_spacing">6</property>
2737 <property name=
"homogeneous">True
</property>
2739 <object class=
"GtkButton" id=
"calc_functions_button">
2740 <property name=
"visible">True
</property>
2741 <property name=
"can_focus">True
</property>
2742 <property name=
"receives_default">False
</property>
2743 <property name=
"tooltip_text" translatable=
"yes">User-defined functions [F]
</property>
2744 <property name=
"focus_on_click">False
</property>
2745 <signal name=
"clicked" handler=
"button_cb"/>
2747 <object class=
"GtkHBox" id=
"hbox13">
2748 <property name=
"visible">True
</property>
2749 <property name=
"spacing">3</property>
2751 <object class=
"GtkLabel" id=
"label9">
2752 <property name=
"visible">True
</property>
2753 <property name=
"label" translatable=
"yes" comments=
"Functions button">Fun
</property>
2756 <property name=
"position">0</property>
2760 <object class=
"GtkArrow" id=
"arrow7">
2761 <property name=
"visible">True
</property>
2762 <property name=
"arrow_type">down
</property>
2765 <property name=
"expand">False
</property>
2766 <property name=
"position">1</property>
2773 <property name=
"left_attach">1</property>
2774 <property name=
"right_attach">2</property>
2775 <property name=
"top_attach">1</property>
2776 <property name=
"bottom_attach">2</property>
2777 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2778 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2782 <object class=
"GtkButton" id=
"calc_constants_button">
2783 <property name=
"visible">True
</property>
2784 <property name=
"can_focus">True
</property>
2785 <property name=
"receives_default">False
</property>
2786 <property name=
"tooltip_text" translatable=
"yes">Constants [#]
</property>
2787 <property name=
"focus_on_click">False
</property>
2788 <signal name=
"clicked" handler=
"button_cb"/>
2790 <object class=
"GtkHBox" id=
"hbox12">
2791 <property name=
"visible">True
</property>
2792 <property name=
"spacing">3</property>
2794 <object class=
"GtkLabel" id=
"label8">
2795 <property name=
"visible">True
</property>
2796 <property name=
"label" translatable=
"yes" comments=
"Constants button">Con
</property>
2799 <property name=
"position">0</property>
2803 <object class=
"GtkArrow" id=
"arrow6">
2804 <property name=
"visible">True
</property>
2805 <property name=
"arrow_type">down
</property>
2808 <property name=
"expand">False
</property>
2809 <property name=
"position">1</property>
2816 <property name=
"top_attach">1</property>
2817 <property name=
"bottom_attach">2</property>
2818 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2819 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2823 <object class=
"GtkButton" id=
"calc_natural_logarithm_button">
2824 <property name=
"visible">True
</property>
2825 <property name=
"can_focus">True
</property>
2826 <property name=
"receives_default">False
</property>
2827 <property name=
"tooltip_text" translatable=
"yes">(Ln)
</property>
2828 <property name=
"use_underline">True
</property>
2829 <property name=
"focus_on_click">False
</property>
2830 <signal name=
"clicked" handler=
"button_cb"/>
2832 <object class=
"GtkLabel" id=
"natural_logarithm_label">
2833 <property name=
"visible">True
</property>
2834 <property name=
"label" comments=
"Variable label button - text set inside gtk.c">(Ln)
</property>
2835 <property name=
"use_markup">True
</property>
2840 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2841 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2845 <object class=
"GtkButton" id=
"calc_logarithm_button">
2846 <property name=
"visible">True
</property>
2847 <property name=
"can_focus">True
</property>
2848 <property name=
"receives_default">False
</property>
2849 <property name=
"tooltip_text" translatable=
"yes">(log)
</property>
2850 <property name=
"focus_on_click">False
</property>
2851 <signal name=
"clicked" handler=
"button_cb"/>
2853 <object class=
"GtkLabel" id=
"logarithm_label">
2854 <property name=
"visible">True
</property>
2855 <property name=
"label" comments=
"Varable label button - text set inside gtk.c">(log)
</property>
2856 <property name=
"use_markup">True
</property>
2861 <property name=
"left_attach">1</property>
2862 <property name=
"right_attach">2</property>
2863 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2864 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2868 <object class=
"GtkButton" id=
"calc_logarithm2_button">
2869 <property name=
"visible">True
</property>
2870 <property name=
"can_focus">True
</property>
2871 <property name=
"receives_default">False
</property>
2872 <property name=
"tooltip_text" translatable=
"yes">(log2)
</property>
2873 <property name=
"focus_on_click">False
</property>
2874 <signal name=
"clicked" handler=
"button_cb"/>
2876 <object class=
"GtkLabel" id=
"logarithm2_label">
2877 <property name=
"visible">True
</property>
2878 <property name=
"label" comments=
"Variable function button - text set inside gtk.c">(log2)
</property>
2879 <property name=
"use_markup">True
</property>
2884 <property name=
"left_attach">2</property>
2885 <property name=
"right_attach">3</property>
2886 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2887 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2891 <object class=
"GtkButton" id=
"calc_exponential_button">
2892 <property name=
"label" translatable=
"yes" comments=
"Exponential">Exp
</property>
2893 <property name=
"visible">True
</property>
2894 <property name=
"can_focus">True
</property>
2895 <property name=
"receives_default">False
</property>
2896 <property name=
"tooltip_text" translatable=
"yes">Enter an exponential number [E]
</property>
2897 <property name=
"use_underline">True
</property>
2898 <property name=
"focus_on_click">False
</property>
2899 <signal name=
"clicked" handler=
"button_cb"/>
2902 <property name=
"left_attach">2</property>
2903 <property name=
"right_attach">3</property>
2904 <property name=
"top_attach">1</property>
2905 <property name=
"bottom_attach">2</property>
2906 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2907 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2911 <object class=
"GtkButton" id=
"calc_accuracy_button">
2912 <property name=
"visible">True
</property>
2913 <property name=
"can_focus">True
</property>
2914 <property name=
"receives_default">False
</property>
2915 <property name=
"tooltip_text" translatable=
"yes">(Set accuracy from
0 to N numeric places [A])
</property>
2916 <property name=
"focus_on_click">False
</property>
2917 <signal name=
"clicked" handler=
"button_cb"/>
2919 <object class=
"GtkHBox" id=
"hbox14">
2920 <property name=
"visible">True
</property>
2921 <property name=
"spacing">3</property>
2923 <object class=
"GtkLabel" id=
"label10">
2924 <property name=
"visible">True
</property>
2925 <property name=
"label" translatable=
"yes" comments=
"Accuracy button">Acc
</property>
2928 <property name=
"position">0</property>
2932 <object class=
"GtkArrow" id=
"arrow8">
2933 <property name=
"visible">True
</property>
2934 <property name=
"arrow_type">down
</property>
2937 <property name=
"expand">False
</property>
2938 <property name=
"position">1</property>
2945 <property name=
"left_attach">7</property>
2946 <property name=
"right_attach">8</property>
2947 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2948 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2952 <object class=
"GtkButton" id=
"calc_random_button">
2953 <property name=
"label" translatable=
"yes" comments=
"Random number">Rand
</property>
2954 <property name=
"visible">True
</property>
2955 <property name=
"can_focus">True
</property>
2956 <property name=
"receives_default">False
</property>
2957 <property name=
"tooltip_text" translatable=
"yes">Random number in the range
0.0 to
1.0 [?]
</property>
2958 <property name=
"use_underline">True
</property>
2959 <property name=
"focus_on_click">False
</property>
2960 <signal name=
"clicked" handler=
"button_cb"/>
2963 <property name=
"left_attach">7</property>
2964 <property name=
"right_attach">8</property>
2965 <property name=
"top_attach">1</property>
2966 <property name=
"bottom_attach">2</property>
2967 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2968 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2972 <object class=
"GtkButton" id=
"calc_factorial_button">
2973 <property name=
"visible">True
</property>
2974 <property name=
"can_focus">True
</property>
2975 <property name=
"receives_default">False
</property>
2976 <property name=
"tooltip_text" translatable=
"yes">Factorial of displayed value [!]
</property>
2977 <property name=
"focus_on_click">False
</property>
2978 <signal name=
"clicked" handler=
"button_cb"/>
2980 <object class=
"GtkLabel" id=
"label14">
2981 <property name=
"visible">True
</property>
2982 <property name=
"label" translatable=
"yes" comments=
"Factorial"><i
>x
</i
>!
</property>
2983 <property name=
"use_markup">True
</property>
2988 <property name=
"left_attach">4</property>
2989 <property name=
"right_attach">5</property>
2990 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2991 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
2995 <object class=
"GtkButton" id=
"calc_x_pow_y_button">
2996 <property name=
"visible">True
</property>
2997 <property name=
"can_focus">True
</property>
2998 <property name=
"receives_default">False
</property>
2999 <property name=
"tooltip_text" translatable=
"yes">(X^Y)
</property>
3000 <property name=
"focus_on_click">False
</property>
3001 <signal name=
"clicked" handler=
"button_cb"/>
3003 <object class=
"GtkLabel" id=
"x_pow_y_label">
3004 <property name=
"visible">True
</property>
3005 <property name=
"label" comments=
"Variable function button - text set inside gtk.c">(X^Y)
</property>
3006 <property name=
"use_markup">True
</property>
3011 <property name=
"left_attach">3</property>
3012 <property name=
"right_attach">4</property>
3013 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3014 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3018 <object class=
"GtkButton" id=
"calc_tangent_button">
3019 <property name=
"visible">True
</property>
3020 <property name=
"can_focus">True
</property>
3021 <property name=
"receives_default">False
</property>
3022 <property name=
"tooltip_text" translatable=
"yes">(tan)
</property>
3023 <property name=
"focus_on_click">False
</property>
3024 <signal name=
"clicked" handler=
"button_cb"/>
3026 <object class=
"GtkLabel" id=
"tangent_label">
3027 <property name=
"visible">True
</property>
3028 <property name=
"label" comments=
"Variable function button - text set inside gtk.c">(tan)
</property>
3029 <property name=
"use_markup">True
</property>
3034 <property name=
"left_attach">5</property>
3035 <property name=
"right_attach">6</property>
3036 <property name=
"top_attach">1</property>
3037 <property name=
"bottom_attach">2</property>
3038 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3039 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3043 <object class=
"GtkButton" id=
"calc_sine_button">
3044 <property name=
"visible">True
</property>
3045 <property name=
"can_focus">True
</property>
3046 <property name=
"receives_default">False
</property>
3047 <property name=
"tooltip_text" translatable=
"yes">(sin)
</property>
3048 <property name=
"focus_on_click">False
</property>
3049 <signal name=
"clicked" handler=
"button_cb"/>
3051 <object class=
"GtkLabel" id=
"sine_label">
3052 <property name=
"visible">True
</property>
3053 <property name=
"label" comments=
"Variable function button - text set inside gtk.c">(sin)
</property>
3054 <property name=
"use_markup">True
</property>
3059 <property name=
"left_attach">4</property>
3060 <property name=
"right_attach">5</property>
3061 <property name=
"top_attach">1</property>
3062 <property name=
"bottom_attach">2</property>
3063 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3064 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3068 <object class=
"GtkButton" id=
"calc_cosine_button">
3069 <property name=
"visible">True
</property>
3070 <property name=
"can_focus">True
</property>
3071 <property name=
"receives_default">False
</property>
3072 <property name=
"tooltip_text" translatable=
"yes">(cos)
</property>
3073 <property name=
"focus_on_click">False
</property>
3074 <signal name=
"clicked" handler=
"button_cb"/>
3076 <object class=
"GtkLabel" id=
"cosine_label">
3077 <property name=
"visible">True
</property>
3078 <property name=
"label" comments=
"Variable function button - text set inside gtk.c">(cos)
</property>
3079 <property name=
"use_markup">True
</property>
3084 <property name=
"left_attach">3</property>
3085 <property name=
"right_attach">4</property>
3086 <property name=
"top_attach">1</property>
3087 <property name=
"bottom_attach">2</property>
3088 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3089 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3103 <property name=
"position">6</property>
3107 <object class=
"GtkTable" id=
"programming_panel">
3108 <property name=
"visible">True
</property>
3109 <property name=
"border_width">8</property>
3110 <property name=
"n_rows">3</property>
3111 <property name=
"n_columns">6</property>
3112 <property name=
"column_spacing">22</property>
3113 <property name=
"row_spacing">7</property>
3114 <property name=
"homogeneous">True
</property>
3116 <object class=
"GtkButton" id=
"calc_d_button">
3117 <property name=
"label" translatable=
"yes" comments=
"Hexadecimal digit D button">D
</property>
3118 <property name=
"visible">True
</property>
3119 <property name=
"can_focus">True
</property>
3120 <property name=
"receives_default">False
</property>
3121 <property name=
"tooltip_text" translatable=
"yes">Hexadecimal digit D [d]
</property>
3122 <property name=
"use_underline">True
</property>
3123 <property name=
"focus_on_click">False
</property>
3124 <signal name=
"clicked" handler=
"button_cb"/>
3127 <property name=
"top_attach">1</property>
3128 <property name=
"bottom_attach">2</property>
3129 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3130 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3134 <object class=
"GtkButton" id=
"calc_e_button">
3135 <property name=
"label" translatable=
"yes" comments=
"Hexadecimal digit E button">E
</property>
3136 <property name=
"visible">True
</property>
3137 <property name=
"can_focus">True
</property>
3138 <property name=
"receives_default">False
</property>
3139 <property name=
"tooltip_text" translatable=
"yes">Hexadecimal digit E [e]
</property>
3140 <property name=
"use_underline">True
</property>
3141 <property name=
"focus_on_click">False
</property>
3142 <signal name=
"clicked" handler=
"button_cb"/>
3145 <property name=
"left_attach">1</property>
3146 <property name=
"right_attach">2</property>
3147 <property name=
"top_attach">1</property>
3148 <property name=
"bottom_attach">2</property>
3149 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3150 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3154 <object class=
"GtkButton" id=
"calc_f_button">
3155 <property name=
"label" translatable=
"yes" comments=
"Hexadecimal digit F button">F
</property>
3156 <property name=
"visible">True
</property>
3157 <property name=
"can_focus">True
</property>
3158 <property name=
"receives_default">False
</property>
3159 <property name=
"tooltip_text" translatable=
"yes">Hexadecimal digit F [f]
</property>
3160 <property name=
"use_underline">True
</property>
3161 <property name=
"focus_on_click">False
</property>
3162 <signal name=
"clicked" handler=
"button_cb"/>
3165 <property name=
"left_attach">2</property>
3166 <property name=
"right_attach">3</property>
3167 <property name=
"top_attach">1</property>
3168 <property name=
"bottom_attach">2</property>
3169 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3170 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3174 <object class=
"GtkButton" id=
"calc_a_button">
3175 <property name=
"label" translatable=
"yes" comments=
"Hexadecimal digit A button">A
</property>
3176 <property name=
"visible">True
</property>
3177 <property name=
"can_focus">True
</property>
3178 <property name=
"receives_default">False
</property>
3179 <property name=
"tooltip_text" translatable=
"yes">Hexadecimal digit A [a]
</property>
3180 <property name=
"use_underline">True
</property>
3181 <property name=
"focus_on_click">False
</property>
3182 <signal name=
"clicked" handler=
"button_cb"/>
3185 <property name=
"top_attach">2</property>
3186 <property name=
"bottom_attach">3</property>
3187 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3188 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3192 <object class=
"GtkButton" id=
"calc_b_button">
3193 <property name=
"label" translatable=
"yes" comments=
"Hexadecimal digit B button">B
</property>
3194 <property name=
"visible">True
</property>
3195 <property name=
"can_focus">True
</property>
3196 <property name=
"receives_default">False
</property>
3197 <property name=
"tooltip_text" translatable=
"yes">Hexadecimal digit B [b]
</property>
3198 <property name=
"use_underline">True
</property>
3199 <property name=
"focus_on_click">False
</property>
3200 <signal name=
"clicked" handler=
"button_cb"/>
3203 <property name=
"left_attach">1</property>
3204 <property name=
"right_attach">2</property>
3205 <property name=
"top_attach">2</property>
3206 <property name=
"bottom_attach">3</property>
3207 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3208 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3212 <object class=
"GtkButton" id=
"calc_c_button">
3213 <property name=
"label" translatable=
"yes" comments=
"Hexadecimal digit C button">C
</property>
3214 <property name=
"visible">True
</property>
3215 <property name=
"can_focus">True
</property>
3216 <property name=
"receives_default">False
</property>
3217 <property name=
"tooltip_text" translatable=
"yes">Hexadecimal digit C [c]
</property>
3218 <property name=
"use_underline">True
</property>
3219 <property name=
"focus_on_click">False
</property>
3220 <signal name=
"clicked" handler=
"button_cb"/>
3223 <property name=
"left_attach">2</property>
3224 <property name=
"right_attach">3</property>
3225 <property name=
"top_attach">2</property>
3226 <property name=
"bottom_attach">3</property>
3227 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3228 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3232 <object class=
"GtkButton" id=
"calc_1s_button">
3233 <property name=
"label" translatable=
"yes" comments=
"1's complement">1's
</property>
3234 <property name=
"visible">True
</property>
3235 <property name=
"can_focus">True
</property>
3236 <property name=
"receives_default">False
</property>
3237 <property name=
"tooltip_text" translatable=
"yes">1's complement [z]
</property>
3238 <property name=
"use_underline">True
</property>
3239 <property name=
"focus_on_click">False
</property>
3240 <signal name=
"clicked" handler=
"button_cb"/>
3243 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3244 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3248 <object class=
"GtkButton" id=
"calc_2s_button">
3249 <property name=
"label" translatable=
"yes" comments=
"2's complement">2's
</property>
3250 <property name=
"visible">True
</property>
3251 <property name=
"can_focus">True
</property>
3252 <property name=
"receives_default">False
</property>
3253 <property name=
"tooltip_text" translatable=
"yes">2's complement [Z]
</property>
3254 <property name=
"use_underline">True
</property>
3255 <property name=
"focus_on_click">False
</property>
3256 <signal name=
"clicked" handler=
"button_cb"/>
3259 <property name=
"left_attach">1</property>
3260 <property name=
"right_attach">2</property>
3261 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3262 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3266 <object class=
"GtkButton" id=
"calc_xnor_button">
3267 <property name=
"label" translatable=
"yes" comments=
"Boolean exclusive NOR button">XNOR
</property>
3268 <property name=
"visible">True
</property>
3269 <property name=
"can_focus">True
</property>
3270 <property name=
"receives_default">False
</property>
3271 <property name=
"tooltip_text" translatable=
"yes">Bitwise XNOR [{]
</property>
3272 <property name=
"use_underline">True
</property>
3273 <property name=
"focus_on_click">False
</property>
3274 <signal name=
"clicked" handler=
"button_cb"/>
3277 <property name=
"left_attach">4</property>
3278 <property name=
"right_attach">5</property>
3279 <property name=
"top_attach">1</property>
3280 <property name=
"bottom_attach">2</property>
3281 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3282 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3286 <object class=
"GtkButton" id=
"calc_modulus_divide_button">
3287 <property name=
"label" translatable=
"yes" comments=
"Modulus division button">Mod
</property>
3288 <property name=
"visible">True
</property>
3289 <property name=
"can_focus">True
</property>
3290 <property name=
"receives_default">False
</property>
3291 <property name=
"tooltip_text" translatable=
"yes">Modulus Division [M]
</property>
3292 <property name=
"use_underline">True
</property>
3293 <property name=
"focus_on_click">False
</property>
3294 <signal name=
"clicked" handler=
"button_cb"/>
3297 <property name=
"left_attach">5</property>
3298 <property name=
"right_attach">6</property>
3299 <property name=
"top_attach">1</property>
3300 <property name=
"bottom_attach">2</property>
3301 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3302 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3306 <object class=
"GtkButton" id=
"calc_trunc_button">
3307 <property name=
"label" translatable=
"yes" comments=
"Truncate displayed value">Trunc
</property>
3308 <property name=
"visible">True
</property>
3309 <property name=
"can_focus">True
</property>
3310 <property name=
"receives_default">False
</property>
3311 <property name=
"tooltip_text" translatable=
"yes">Truncate displayed value to the chosen word size ([)
</property>
3312 <property name=
"use_underline">True
</property>
3313 <property name=
"focus_on_click">False
</property>
3314 <signal name=
"clicked" handler=
"button_cb"/>
3317 <property name=
"left_attach">2</property>
3318 <property name=
"right_attach">3</property>
3319 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3320 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3324 <object class=
"GtkButton" id=
"calc_not_button">
3325 <property name=
"label" translatable=
"yes" comments=
"Boolean NOT button">NOT
</property>
3326 <property name=
"visible">True
</property>
3327 <property name=
"can_focus">True
</property>
3328 <property name=
"receives_default">False
</property>
3329 <property name=
"tooltip_text" translatable=
"yes">Bitwise NOT [~]
</property>
3330 <property name=
"use_underline">True
</property>
3331 <property name=
"focus_on_click">False
</property>
3332 <signal name=
"clicked" handler=
"button_cb"/>
3335 <property name=
"left_attach">5</property>
3336 <property name=
"right_attach">6</property>
3337 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3338 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3342 <object class=
"GtkButton" id=
"calc_xor_button">
3343 <property name=
"label" translatable=
"yes" comments=
"Boolean exlcusive OR button">XOR
</property>
3344 <property name=
"visible">True
</property>
3345 <property name=
"can_focus">True
</property>
3346 <property name=
"receives_default">False
</property>
3347 <property name=
"tooltip_text" translatable=
"yes">Bitwise XOR [x]
</property>
3348 <property name=
"use_underline">True
</property>
3349 <property name=
"focus_on_click">False
</property>
3350 <signal name=
"clicked" handler=
"button_cb"/>
3353 <property name=
"left_attach">3</property>
3354 <property name=
"right_attach">4</property>
3355 <property name=
"top_attach">1</property>
3356 <property name=
"bottom_attach">2</property>
3357 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3358 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3362 <object class=
"GtkButton" id=
"calc_and_button">
3363 <property name=
"label" translatable=
"yes" comments=
"Boolean AND button">AND
</property>
3364 <property name=
"visible">True
</property>
3365 <property name=
"can_focus">True
</property>
3366 <property name=
"receives_default">False
</property>
3367 <property name=
"tooltip_text" translatable=
"yes">Bitwise AND [
&]
</property>
3368 <property name=
"use_underline">True
</property>
3369 <property name=
"focus_on_click">False
</property>
3370 <signal name=
"clicked" handler=
"button_cb"/>
3373 <property name=
"left_attach">3</property>
3374 <property name=
"right_attach">4</property>
3375 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3376 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3380 <object class=
"GtkButton" id=
"calc_or_button">
3381 <property name=
"label" translatable=
"yes" comments=
"Boolean OR button">OR
</property>
3382 <property name=
"visible">True
</property>
3383 <property name=
"can_focus">True
</property>
3384 <property name=
"receives_default">False
</property>
3385 <property name=
"tooltip_text" translatable=
"yes">Bitwise OR [|]
</property>
3386 <property name=
"use_underline">True
</property>
3387 <property name=
"focus_on_click">False
</property>
3388 <signal name=
"clicked" handler=
"button_cb"/>
3391 <property name=
"left_attach">4</property>
3392 <property name=
"right_attach">5</property>
3393 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3394 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3398 <object class=
"GtkButton" id=
"calc_shift_left_button">
3399 <property name=
"visible">True
</property>
3400 <property name=
"can_focus">True
</property>
3401 <property name=
"receives_default">False
</property>
3402 <property name=
"tooltip_text" translatable=
"yes">Shift displayed value
1-
15 places to the left [
<]
</property>
3403 <property name=
"focus_on_click">False
</property>
3404 <signal name=
"clicked" handler=
"button_cb"/>
3406 <object class=
"GtkHBox" id=
"hbox11">
3407 <property name=
"visible">True
</property>
3408 <property name=
"spacing">3</property>
3410 <object class=
"GtkLabel" id=
"label7">
3411 <property name=
"visible">True
</property>
3412 <property name=
"can_focus">True
</property>
3413 <property name=
"label" translatable=
"yes" comments=
"Shift left button"><</property>
3416 <property name=
"position">0</property>
3420 <object class=
"GtkArrow" id=
"arrow5">
3421 <property name=
"visible">True
</property>
3422 <property name=
"arrow_type">down
</property>
3425 <property name=
"expand">False
</property>
3426 <property name=
"position">1</property>
3433 <property name=
"left_attach">3</property>
3434 <property name=
"right_attach">4</property>
3435 <property name=
"top_attach">2</property>
3436 <property name=
"bottom_attach">3</property>
3437 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3438 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3442 <object class=
"GtkButton" id=
"calc_shift_right_button">
3443 <property name=
"visible">True
</property>
3444 <property name=
"can_focus">True
</property>
3445 <property name=
"receives_default">False
</property>
3446 <property name=
"tooltip_text" translatable=
"yes">Shift displayed value
1-
15 places to the right [
>]
</property>
3447 <property name=
"focus_on_click">False
</property>
3448 <signal name=
"clicked" handler=
"button_cb"/>
3450 <object class=
"GtkHBox" id=
"hbox10">
3451 <property name=
"visible">True
</property>
3452 <property name=
"spacing">3</property>
3454 <object class=
"GtkLabel" id=
"label6">
3455 <property name=
"visible">True
</property>
3456 <property name=
"can_focus">True
</property>
3457 <property name=
"label" translatable=
"yes" comments=
"Shift right button">></property>
3460 <property name=
"position">0</property>
3464 <object class=
"GtkArrow" id=
"arrow4">
3465 <property name=
"visible">True
</property>
3466 <property name=
"arrow_type">down
</property>
3469 <property name=
"expand">False
</property>
3470 <property name=
"position">1</property>
3477 <property name=
"left_attach">4</property>
3478 <property name=
"right_attach">5</property>
3479 <property name=
"top_attach">2</property>
3480 <property name=
"bottom_attach">3</property>
3481 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3482 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3490 <property name=
"position">7</property>
3494 <object class=
"GtkTable" id=
"table4">
3495 <property name=
"visible">True
</property>
3496 <property name=
"border_width">8</property>
3497 <property name=
"n_rows">5</property>
3498 <property name=
"n_columns">2</property>
3499 <property name=
"column_spacing">6</property>
3500 <property name=
"row_spacing">6</property>
3502 <object class=
"GtkTable" id=
"basic_panel">
3503 <property name=
"visible">True
</property>
3504 <property name=
"n_columns">4</property>
3505 <property name=
"column_spacing">6</property>
3506 <property name=
"row_spacing">6</property>
3507 <property name=
"homogeneous">True
</property>
3509 <object class=
"GtkButton" id=
"calc_backspace_simple_button">
3510 <property name=
"label" translatable=
"yes" comments=
"Backspace button. Bksp is short for Backspace">Bksp
</property>
3511 <property name=
"visible">True
</property>
3512 <property name=
"can_focus">True
</property>
3513 <property name=
"receives_default">False
</property>
3514 <property name=
"tooltip_text" translatable=
"yes">Remove rightmost character from displayed value [Backspace]
</property>
3515 <property name=
"use_underline">True
</property>
3516 <property name=
"focus_on_click">False
</property>
3517 <child internal-child=
"accessible">
3518 <object class=
"AtkObject" id=
"calc_backspace_simple_button-atkobject">
3519 <property name=
"AtkObject::accessible-name" translatable=
"yes">Backspace
</property>
3522 <signal name=
"clicked" handler=
"button_cb"/>
3525 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3526 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3530 <object class=
"GtkButton" id=
"calc_change_sign_simple_button">
3531 <property name=
"label" translatable=
"yes" comments=
"Change sign button">±</property>
3532 <property name=
"visible">True
</property>
3533 <property name=
"can_focus">True
</property>
3534 <property name=
"receives_default">False
</property>
3535 <property name=
"tooltip_text" translatable=
"yes">Change Sign [C]
</property>
3536 <property name=
"use_underline">True
</property>
3537 <property name=
"focus_on_click">False
</property>
3538 <child internal-child=
"accessible">
3539 <object class=
"AtkObject" id=
"calc_change_sign_simple_button-atkobject">
3540 <property name=
"AtkObject::accessible-name" translatable=
"yes">Change sign
</property>
3543 <signal name=
"clicked" handler=
"button_cb"/>
3546 <property name=
"left_attach">3</property>
3547 <property name=
"right_attach">4</property>
3548 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3549 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3553 <object class=
"GtkButton" id=
"calc_clear_simple_button">
3554 <property name=
"label" translatable=
"yes" comments=
"Clear button. Clr is short for Clear">Clr
</property>
3555 <property name=
"visible">True
</property>
3556 <property name=
"can_focus">True
</property>
3557 <property name=
"receives_default">False
</property>
3558 <property name=
"tooltip_text" translatable=
"yes">Clear displayed value and any partial calculation [Shift Delete]
</property>
3559 <property name=
"use_underline">True
</property>
3560 <property name=
"focus_on_click">False
</property>
3561 <child internal-child=
"accessible">
3562 <object class=
"AtkObject" id=
"calc_clear_simple_button-atkobject">
3563 <property name=
"AtkObject::accessible-name" translatable=
"yes">Clear
</property>
3566 <signal name=
"clicked" handler=
"button_cb"/>
3569 <property name=
"left_attach">2</property>
3570 <property name=
"right_attach">3</property>
3571 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3572 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3576 <object class=
"GtkButton" id=
"calc_clear_entry_simple_button">
3577 <property name=
"label" translatable=
"yes" comments=
"Clear displayed value button">CE
</property>
3578 <property name=
"visible">True
</property>
3579 <property name=
"can_focus">True
</property>
3580 <property name=
"receives_default">False
</property>
3581 <property name=
"tooltip_text" translatable=
"yes">Clear displayed value [Escape]
</property>
3582 <property name=
"use_underline">True
</property>
3583 <property name=
"focus_on_click">False
</property>
3584 <child internal-child=
"accessible">
3585 <object class=
"AtkObject" id=
"calc_clear_entry_simple_button-atkobject">
3586 <property name=
"AtkObject::accessible-name" translatable=
"yes">Clear entry
</property>
3587 <property name=
"AtkObject::accessible-description" translatable=
"yes">Clear
</property>
3590 <signal name=
"clicked" handler=
"button_cb"/>
3593 <property name=
"left_attach">1</property>
3594 <property name=
"right_attach">2</property>
3595 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3596 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3601 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3602 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3606 <object class=
"GtkTable" id=
"advanced_panel">
3607 <property name=
"visible">True
</property>
3608 <property name=
"n_rows">4</property>
3609 <property name=
"n_columns">4</property>
3610 <property name=
"column_spacing">6</property>
3611 <property name=
"row_spacing">6</property>
3612 <property name=
"homogeneous">True
</property>
3614 <object class=
"GtkButton" id=
"calc_start_group_button">
3615 <property name=
"label" translatable=
"yes" comments=
"Start calculation group button">(
</property>
3616 <property name=
"visible">True
</property>
3617 <property name=
"can_focus">True
</property>
3618 <property name=
"receives_default">False
</property>
3619 <property name=
"tooltip_text" translatable=
"yes">Start group of calculations [(]
</property>
3620 <property name=
"use_underline">True
</property>
3621 <property name=
"focus_on_click">False
</property>
3622 <child internal-child=
"accessible">
3623 <object class=
"AtkObject" id=
"calc_start_group_button-atkobject">
3624 <property name=
"AtkObject::accessible-name" translatable=
"yes">Left bracket
</property>
3627 <signal name=
"clicked" handler=
"button_cb"/>
3630 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3631 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3635 <object class=
"GtkButton" id=
"calc_reciprocal_button">
3636 <property name=
"visible">True
</property>
3637 <property name=
"can_focus">True
</property>
3638 <property name=
"receives_default">False
</property>
3639 <property name=
"tooltip_text" translatable=
"yes">Reciprocal [r]
</property>
3640 <property name=
"focus_on_click">False
</property>
3641 <child internal-child=
"accessible">
3642 <object class=
"AtkObject" id=
"calc_reciprocal_button-atkobject">
3643 <property name=
"AtkObject::accessible-name" translatable=
"yes">Reciprocal
</property>
3646 <signal name=
"clicked" handler=
"button_cb"/>
3648 <object class=
"GtkLabel" id=
"label20">
3649 <property name=
"visible">True
</property>
3650 <property name=
"label" translatable=
"yes" comments=
"Reciprocal button">1/
<i
>x
</i
></property>
3651 <property name=
"use_markup">True
</property>
3652 <child internal-child=
"accessible">
3653 <object class=
"AtkObject" id=
"label20-atkobject">
3654 <property name=
"AtkObject::accessible-name" translatable=
"yes">1/x
</property>
3655 <property name=
"AtkObject::accessible-description" translatable=
"yes">Reciprocal
</property>
3662 <property name=
"top_attach">3</property>
3663 <property name=
"bottom_attach">4</property>
3664 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3665 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3669 <object class=
"GtkButton" id=
"calc_percentage_button">
3670 <property name=
"label" translatable=
"yes" comments=
"The percentage button">%
</property>
3671 <property name=
"visible">True
</property>
3672 <property name=
"can_focus">True
</property>
3673 <property name=
"receives_default">False
</property>
3674 <property name=
"tooltip_text" translatable=
"yes">Percentage [%]
</property>
3675 <property name=
"use_underline">True
</property>
3676 <property name=
"focus_on_click">False
</property>
3677 <child internal-child=
"accessible">
3678 <object class=
"AtkObject" id=
"calc_percentage_button-atkobject">
3679 <property name=
"AtkObject::accessible-name" translatable=
"yes">Percentage
</property>
3682 <signal name=
"clicked" handler=
"button_cb"/>
3685 <property name=
"top_attach">2</property>
3686 <property name=
"bottom_attach">3</property>
3687 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3688 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3692 <object class=
"GtkButton" id=
"calc_end_group_button">
3693 <property name=
"label" translatable=
"yes" comments=
"Right bracket">)
</property>
3694 <property name=
"visible">True
</property>
3695 <property name=
"can_focus">True
</property>
3696 <property name=
"receives_default">False
</property>
3697 <property name=
"tooltip_text" translatable=
"yes">End group of calculations [)]
</property>
3698 <property name=
"use_underline">True
</property>
3699 <property name=
"focus_on_click">False
</property>
3700 <child internal-child=
"accessible">
3701 <object class=
"AtkObject" id=
"calc_end_group_button-atkobject">
3702 <property name=
"AtkObject::accessible-name" translatable=
"yes">Right bracket
</property>
3705 <signal name=
"clicked" handler=
"button_cb"/>
3708 <property name=
"top_attach">1</property>
3709 <property name=
"bottom_attach">2</property>
3710 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3711 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3715 <object class=
"GtkButton" id=
"calc_backspace_advanced_button">
3716 <property name=
"label" translatable=
"yes" comments=
"Bksp is short for Backspace">Bksp
</property>
3717 <property name=
"visible">True
</property>
3718 <property name=
"can_focus">True
</property>
3719 <property name=
"receives_default">False
</property>
3720 <property name=
"tooltip_text" translatable=
"yes">Remove rightmost character from displayed value [Backspace]
</property>
3721 <property name=
"use_underline">True
</property>
3722 <property name=
"focus_on_click">False
</property>
3723 <child internal-child=
"accessible">
3724 <object class=
"AtkObject" id=
"calc_backspace_advanced_button-atkobject">
3725 <property name=
"AtkObject::accessible-name" translatable=
"yes">Backspace
</property>
3728 <signal name=
"clicked" handler=
"button_cb"/>
3731 <property name=
"left_attach">1</property>
3732 <property name=
"right_attach">2</property>
3733 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3734 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3738 <object class=
"GtkButton" id=
"calc_change_sign_advanced_button">
3739 <property name=
"label" translatable=
"yes" comments=
"Change sign button">±</property>
3740 <property name=
"visible">True
</property>
3741 <property name=
"can_focus">True
</property>
3742 <property name=
"receives_default">False
</property>
3743 <property name=
"tooltip_text" translatable=
"yes">Change Sign [C]
</property>
3744 <property name=
"use_underline">True
</property>
3745 <property name=
"focus_on_click">False
</property>
3746 <child internal-child=
"accessible">
3747 <object class=
"AtkObject" id=
"calc_change_sign_advanced_button-atkobject">
3748 <property name=
"AtkObject::accessible-name" translatable=
"yes">Change sign
</property>
3751 <signal name=
"clicked" handler=
"button_cb"/>
3754 <property name=
"left_attach">1</property>
3755 <property name=
"right_attach">2</property>
3756 <property name=
"top_attach">1</property>
3757 <property name=
"bottom_attach">2</property>
3758 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3759 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3763 <object class=
"GtkButton" id=
"calc_sqrt_button">
3764 <property name=
"label" translatable=
"yes" comments=
"Square root button">√</property>
3765 <property name=
"visible">True
</property>
3766 <property name=
"can_focus">True
</property>
3767 <property name=
"receives_default">False
</property>
3768 <property name=
"tooltip_text" translatable=
"yes">Square root [s]
</property>
3769 <property name=
"use_underline">True
</property>
3770 <property name=
"focus_on_click">False
</property>
3771 <child internal-child=
"accessible">
3772 <object class=
"AtkObject" id=
"calc_sqrt_button-atkobject">
3773 <property name=
"AtkObject::accessible-name" translatable=
"yes">Square root
</property>
3774 <property name=
"AtkObject::accessible-description" translatable=
"yes">Square root [s]
</property>
3777 <signal name=
"clicked" handler=
"button_cb"/>
3780 <property name=
"left_attach">1</property>
3781 <property name=
"right_attach">2</property>
3782 <property name=
"top_attach">2</property>
3783 <property name=
"bottom_attach">3</property>
3784 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3785 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3789 <object class=
"GtkButton" id=
"calc_abs_button">
3790 <property name=
"label" translatable=
"yes" comments=
"Absolute value button. Abs is short for Absolute">Abs
</property>
3791 <property name=
"visible">True
</property>
3792 <property name=
"can_focus">True
</property>
3793 <property name=
"receives_default">False
</property>
3794 <property name=
"tooltip_text" translatable=
"yes">Absolute value [u]
</property>
3795 <property name=
"use_underline">True
</property>
3796 <property name=
"focus_on_click">False
</property>
3797 <child internal-child=
"accessible">
3798 <object class=
"AtkObject" id=
"calc_abs_button-atkobject">
3799 <property name=
"AtkObject::accessible-name" translatable=
"yes">Absolute value
</property>
3802 <signal name=
"clicked" handler=
"button_cb"/>
3805 <property name=
"left_attach">2</property>
3806 <property name=
"right_attach">3</property>
3807 <property name=
"top_attach">3</property>
3808 <property name=
"bottom_attach">4</property>
3809 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3810 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3814 <object class=
"GtkButton" id=
"calc_fractional_portion_button">
3815 <property name=
"label" translatable=
"yes" comments=
"Fractional portion button">Frac
</property>
3816 <property name=
"visible">True
</property>
3817 <property name=
"can_focus">True
</property>
3818 <property name=
"receives_default">False
</property>
3819 <property name=
"tooltip_text" translatable=
"yes">Fractional portion of displayed value [:]
</property>
3820 <property name=
"use_underline">True
</property>
3821 <property name=
"focus_on_click">False
</property>
3822 <child internal-child=
"accessible">
3823 <object class=
"AtkObject" id=
"calc_fractional_portion_button-atkobject">
3824 <property name=
"AtkObject::accessible-name" translatable=
"yes">Fractional portion
</property>
3827 <signal name=
"clicked" handler=
"button_cb"/>
3830 <property name=
"left_attach">2</property>
3831 <property name=
"right_attach">3</property>
3832 <property name=
"top_attach">2</property>
3833 <property name=
"bottom_attach">3</property>
3834 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3835 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3839 <object class=
"GtkButton" id=
"calc_integer_portion_button">
3840 <property name=
"label" translatable=
"yes" comments=
"Integer portion button">Int
</property>
3841 <property name=
"visible">True
</property>
3842 <property name=
"can_focus">True
</property>
3843 <property name=
"receives_default">False
</property>
3844 <property name=
"tooltip_text" translatable=
"yes">Integer portion of displayed value [i]
</property>
3845 <property name=
"use_underline">True
</property>
3846 <property name=
"focus_on_click">False
</property>
3847 <child internal-child=
"accessible">
3848 <object class=
"AtkObject" id=
"calc_integer_portion_button-atkobject">
3849 <property name=
"AtkObject::accessible-name" translatable=
"yes">Integer portion
</property>
3852 <signal name=
"clicked" handler=
"button_cb"/>
3855 <property name=
"left_attach">2</property>
3856 <property name=
"right_attach">3</property>
3857 <property name=
"top_attach">1</property>
3858 <property name=
"bottom_attach">2</property>
3859 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3860 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3864 <object class=
"GtkButton" id=
"calc_clear_entry_advanced_button">
3865 <property name=
"label" translatable=
"yes" comments=
"Clear displayed value button">CE
</property>
3866 <property name=
"visible">True
</property>
3867 <property name=
"can_focus">True
</property>
3868 <property name=
"receives_default">False
</property>
3869 <property name=
"tooltip_text" translatable=
"yes">Clear displayed value [Escape]
</property>
3870 <property name=
"use_underline">True
</property>
3871 <property name=
"focus_on_click">False
</property>
3872 <child internal-child=
"accessible">
3873 <object class=
"AtkObject" id=
"calc_clear_entry_advanced_button-atkobject">
3874 <property name=
"AtkObject::accessible-name" translatable=
"yes">Clear entry
</property>
3877 <signal name=
"clicked" handler=
"button_cb"/>
3880 <property name=
"left_attach">2</property>
3881 <property name=
"right_attach">3</property>
3882 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3883 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3887 <object class=
"GtkButton" id=
"calc_exchange_button">
3888 <property name=
"visible">True
</property>
3889 <property name=
"can_focus">True
</property>
3890 <property name=
"receives_default">False
</property>
3891 <property name=
"tooltip_text" translatable=
"yes">Exchange displayed value with memory register [X]
</property>
3892 <property name=
"focus_on_click">False
</property>
3893 <child internal-child=
"accessible">
3894 <object class=
"AtkObject" id=
"calc_exchange_button-atkobject">
3895 <property name=
"AtkObject::accessible-name" translatable=
"yes">Exchange with register
</property>
3898 <signal name=
"clicked" handler=
"button_cb"/>
3900 <object class=
"GtkHBox" id=
"hbox18">
3901 <property name=
"visible">True
</property>
3902 <property name=
"spacing">3</property>
3904 <object class=
"GtkLabel" id=
"label21">
3905 <property name=
"visible">True
</property>
3906 <property name=
"label" translatable=
"yes" comments=
"Memory exchange button. Exch is short for Exchange">Exch
</property>
3907 <child internal-child=
"accessible">
3908 <object class=
"AtkObject" id=
"label21-atkobject">
3909 <property name=
"AtkObject::accessible-name" translatable=
"yes">Exch
</property>
3910 <property name=
"AtkObject::accessible-description" translatable=
"yes">Exchange with register
</property>
3915 <property name=
"position">0</property>
3919 <object class=
"GtkArrow" id=
"arrow12">
3920 <property name=
"visible">True
</property>
3921 <property name=
"arrow_type">down
</property>
3924 <property name=
"expand">False
</property>
3925 <property name=
"position">1</property>
3932 <property name=
"left_attach">3</property>
3933 <property name=
"right_attach">4</property>
3934 <property name=
"top_attach">3</property>
3935 <property name=
"bottom_attach">4</property>
3936 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3937 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3941 <object class=
"GtkButton" id=
"calc_recall_button">
3942 <property name=
"visible">True
</property>
3943 <property name=
"can_focus">True
</property>
3944 <property name=
"receives_default">False
</property>
3945 <property name=
"tooltip_text" translatable=
"yes">Retrieve memory register to display [R]
</property>
3946 <property name=
"focus_on_click">False
</property>
3947 <child internal-child=
"accessible">
3948 <object class=
"AtkObject" id=
"calc_recall_button-atkobject">
3949 <property name=
"AtkObject::accessible-name" translatable=
"yes">Retrieve from register
</property>
3952 <signal name=
"clicked" handler=
"button_cb"/>
3954 <object class=
"GtkHBox" id=
"hbox19">
3955 <property name=
"visible">True
</property>
3956 <property name=
"spacing">3</property>
3958 <object class=
"GtkLabel" id=
"label22">
3959 <property name=
"visible">True
</property>
3960 <property name=
"label" translatable=
"yes" comments=
"Memory recall button. Rcl is short for Recall">Rcl
</property>
3961 <child internal-child=
"accessible">
3962 <object class=
"AtkObject" id=
"label22-atkobject">
3963 <property name=
"AtkObject::accessible-name" translatable=
"yes">Rcl
</property>
3964 <property name=
"AtkObject::accessible-description" translatable=
"yes">Retrieve from register
</property>
3969 <property name=
"position">0</property>
3973 <object class=
"GtkArrow" id=
"arrow13">
3974 <property name=
"visible">True
</property>
3975 <property name=
"arrow_type">down
</property>
3978 <property name=
"expand">False
</property>
3979 <property name=
"position">1</property>
3986 <property name=
"left_attach">3</property>
3987 <property name=
"right_attach">4</property>
3988 <property name=
"top_attach">2</property>
3989 <property name=
"bottom_attach">3</property>
3990 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3991 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
3995 <object class=
"GtkButton" id=
"calc_clear_advanced_button">
3996 <property name=
"label" translatable=
"yes" comments=
"Clear display button. Clr is short for Clear">Clr
</property>
3997 <property name=
"visible">True
</property>
3998 <property name=
"can_focus">True
</property>
3999 <property name=
"receives_default">False
</property>
4000 <property name=
"tooltip_text" translatable=
"yes">Clear displayed value and any partial calculation [Shift Delete]
</property>
4001 <property name=
"use_underline">True
</property>
4002 <property name=
"focus_on_click">False
</property>
4003 <child internal-child=
"accessible">
4004 <object class=
"AtkObject" id=
"calc_clear_advanced_button-atkobject">
4005 <property name=
"AtkObject::accessible-name" translatable=
"yes">Clear
</property>
4008 <signal name=
"clicked" handler=
"button_cb"/>
4011 <property name=
"left_attach">3</property>
4012 <property name=
"right_attach">4</property>
4013 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4014 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4018 <object class=
"GtkButton" id=
"calc_store_button">
4019 <property name=
"visible">True
</property>
4020 <property name=
"can_focus">True
</property>
4021 <property name=
"receives_default">False
</property>
4022 <property name=
"tooltip_text" translatable=
"yes">Store displayed value in memory register [S]
</property>
4023 <property name=
"focus_on_click">False
</property>
4024 <child internal-child=
"accessible">
4025 <object class=
"AtkObject" id=
"calc_store_button-atkobject">
4026 <property name=
"AtkObject::accessible-name" translatable=
"yes">Store to register
</property>
4029 <signal name=
"clicked" handler=
"button_cb"/>
4031 <object class=
"GtkHBox" id=
"hbox20">
4032 <property name=
"visible">True
</property>
4033 <property name=
"spacing">3</property>
4035 <object class=
"GtkLabel" id=
"label23">
4036 <property name=
"visible">True
</property>
4037 <property name=
"label" translatable=
"yes" comments=
"Memory store button. Sto is short for Store">Sto
</property>
4038 <child internal-child=
"accessible">
4039 <object class=
"AtkObject" id=
"label23-atkobject">
4040 <property name=
"AtkObject::accessible-name" translatable=
"yes">Sto
</property>
4041 <property name=
"AtkObject::accessible-description" translatable=
"yes">Store to register
</property>
4046 <property name=
"position">0</property>
4050 <object class=
"GtkArrow" id=
"arrow14">
4051 <property name=
"visible">True
</property>
4052 <property name=
"arrow_type">down
</property>
4055 <property name=
"expand">False
</property>
4056 <property name=
"position">1</property>
4063 <property name=
"left_attach">3</property>
4064 <property name=
"right_attach">4</property>
4065 <property name=
"top_attach">1</property>
4066 <property name=
"bottom_attach">2</property>
4067 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4068 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4072 <object class=
"GtkButton" id=
"calc_square_button">
4073 <property name=
"visible">True
</property>
4074 <property name=
"can_focus">True
</property>
4075 <property name=
"receives_default">False
</property>
4076 <property name=
"tooltip_text" translatable=
"yes">Square [@]
</property>
4077 <property name=
"focus_on_click">False
</property>
4078 <child internal-child=
"accessible">
4079 <object class=
"AtkObject" id=
"calc_square_button-atkobject">
4080 <property name=
"AtkObject::accessible-name" translatable=
"yes">Square
</property>
4083 <signal name=
"clicked" handler=
"button_cb"/>
4085 <object class=
"GtkLabel" id=
"label24">
4086 <property name=
"visible">True
</property>
4087 <property name=
"label" translatable=
"yes" comments=
"x to the power of 2 button"><i
>x
</i
><sup
>2</sup
></property>
4088 <property name=
"use_markup">True
</property>
4089 <child internal-child=
"accessible">
4090 <object class=
"AtkObject" id=
"label24-atkobject">
4091 <property name=
"AtkObject::accessible-name" translatable=
"yes">x2
</property>
4092 <property name=
"AtkObject::accessible-description" translatable=
"yes">Square
</property>
4099 <property name=
"left_attach">1</property>
4100 <property name=
"right_attach">2</property>
4101 <property name=
"top_attach">3</property>
4102 <property name=
"bottom_attach">4</property>
4103 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4104 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4109 <property name=
"left_attach">1</property>
4110 <property name=
"right_attach">2</property>
4111 <property name=
"top_attach">1</property>
4112 <property name=
"bottom_attach">5</property>
4113 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4114 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4118 <object class=
"GtkTable" id=
"core_panel">
4119 <property name=
"visible">True
</property>
4120 <property name=
"n_rows">4</property>
4121 <property name=
"n_columns">4</property>
4122 <property name=
"column_spacing">6</property>
4123 <property name=
"row_spacing">6</property>
4124 <property name=
"homogeneous">True
</property>
4126 <object class=
"GtkButton" id=
"calc_4_button">
4127 <property name=
"label" translatable=
"yes" comments=
"Numeric 4 button">4</property>
4128 <property name=
"visible">True
</property>
4129 <property name=
"can_focus">True
</property>
4130 <property name=
"receives_default">False
</property>
4131 <property name=
"use_underline">True
</property>
4132 <property name=
"focus_on_click">False
</property>
4133 <child internal-child=
"accessible">
4134 <object class=
"AtkObject" id=
"calc_4_button-atkobject">
4135 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
4</property>
4138 <signal name=
"clicked" handler=
"button_cb"/>
4141 <property name=
"top_attach">1</property>
4142 <property name=
"bottom_attach">2</property>
4143 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4144 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4148 <object class=
"GtkButton" id=
"calc_7_button">
4149 <property name=
"label" translatable=
"yes" comments=
"Numeric 7 button">7</property>
4150 <property name=
"visible">True
</property>
4151 <property name=
"can_focus">True
</property>
4152 <property name=
"receives_default">False
</property>
4153 <property name=
"use_underline">True
</property>
4154 <property name=
"focus_on_click">False
</property>
4155 <child internal-child=
"accessible">
4156 <object class=
"AtkObject" id=
"calc_7_button-atkobject">
4157 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
7</property>
4160 <signal name=
"clicked" handler=
"button_cb"/>
4163 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4164 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4168 <object class=
"GtkButton" id=
"calc_8_button">
4169 <property name=
"label" translatable=
"yes" comments=
"Numeric 8 button">8</property>
4170 <property name=
"visible">True
</property>
4171 <property name=
"can_focus">True
</property>
4172 <property name=
"receives_default">False
</property>
4173 <property name=
"use_underline">True
</property>
4174 <property name=
"focus_on_click">False
</property>
4175 <child internal-child=
"accessible">
4176 <object class=
"AtkObject" id=
"calc_8_button-atkobject">
4177 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
8</property>
4180 <signal name=
"clicked" handler=
"button_cb"/>
4183 <property name=
"left_attach">1</property>
4184 <property name=
"right_attach">2</property>
4185 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4186 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4190 <object class=
"GtkButton" id=
"calc_9_button">
4191 <property name=
"label" translatable=
"yes" comments=
"Numeric 9 button">9</property>
4192 <property name=
"visible">True
</property>
4193 <property name=
"can_focus">True
</property>
4194 <property name=
"receives_default">False
</property>
4195 <property name=
"use_underline">True
</property>
4196 <property name=
"focus_on_click">False
</property>
4197 <child internal-child=
"accessible">
4198 <object class=
"AtkObject" id=
"calc_9_button-atkobject">
4199 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
9</property>
4202 <signal name=
"clicked" handler=
"button_cb"/>
4205 <property name=
"left_attach">2</property>
4206 <property name=
"right_attach">3</property>
4207 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4208 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4212 <object class=
"GtkButton" id=
"calc_5_button">
4213 <property name=
"label" translatable=
"yes" comments=
"Numeric 5 button">5</property>
4214 <property name=
"visible">True
</property>
4215 <property name=
"can_focus">True
</property>
4216 <property name=
"receives_default">False
</property>
4217 <property name=
"use_underline">True
</property>
4218 <property name=
"focus_on_click">False
</property>
4219 <child internal-child=
"accessible">
4220 <object class=
"AtkObject" id=
"calc_5_button-atkobject">
4221 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
5</property>
4224 <signal name=
"clicked" handler=
"button_cb"/>
4227 <property name=
"left_attach">1</property>
4228 <property name=
"right_attach">2</property>
4229 <property name=
"top_attach">1</property>
4230 <property name=
"bottom_attach">2</property>
4231 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4232 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4236 <object class=
"GtkButton" id=
"calc_6_button">
4237 <property name=
"label" translatable=
"yes" comments=
"Numeric 6 button">6</property>
4238 <property name=
"visible">True
</property>
4239 <property name=
"can_focus">True
</property>
4240 <property name=
"receives_default">False
</property>
4241 <property name=
"use_underline">True
</property>
4242 <property name=
"focus_on_click">False
</property>
4243 <child internal-child=
"accessible">
4244 <object class=
"AtkObject" id=
"calc_6_button-atkobject">
4245 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
6</property>
4248 <signal name=
"clicked" handler=
"button_cb"/>
4251 <property name=
"left_attach">2</property>
4252 <property name=
"right_attach">3</property>
4253 <property name=
"top_attach">1</property>
4254 <property name=
"bottom_attach">2</property>
4255 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4256 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4260 <object class=
"GtkButton" id=
"calc_divide_button">
4261 <property name=
"label" translatable=
"yes" comments=
"Division button">÷</property>
4262 <property name=
"visible">True
</property>
4263 <property name=
"can_focus">True
</property>
4264 <property name=
"receives_default">False
</property>
4265 <property name=
"tooltip_text" translatable=
"yes">Divide [/]
</property>
4266 <property name=
"use_underline">True
</property>
4267 <property name=
"focus_on_click">False
</property>
4268 <child internal-child=
"accessible">
4269 <object class=
"AtkObject" id=
"calc_divide_button-atkobject">
4270 <property name=
"AtkObject::accessible-name" translatable=
"yes">Divide
</property>
4273 <signal name=
"clicked" handler=
"button_cb"/>
4276 <property name=
"left_attach">3</property>
4277 <property name=
"right_attach">4</property>
4278 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4279 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4283 <object class=
"GtkButton" id=
"calc_1_button">
4284 <property name=
"label" translatable=
"yes" comments=
"Numeric 1 button">1</property>
4285 <property name=
"visible">True
</property>
4286 <property name=
"can_focus">True
</property>
4287 <property name=
"receives_default">False
</property>
4288 <property name=
"use_underline">True
</property>
4289 <property name=
"focus_on_click">False
</property>
4290 <child internal-child=
"accessible">
4291 <object class=
"AtkObject" id=
"calc_1_button-atkobject">
4292 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
1</property>
4295 <signal name=
"clicked" handler=
"button_cb"/>
4298 <property name=
"top_attach">2</property>
4299 <property name=
"bottom_attach">3</property>
4300 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4301 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4305 <object class=
"GtkButton" id=
"calc_2_button">
4306 <property name=
"label" translatable=
"yes" comments=
"Numeric 2 button">2</property>
4307 <property name=
"visible">True
</property>
4308 <property name=
"can_focus">True
</property>
4309 <property name=
"receives_default">False
</property>
4310 <property name=
"use_underline">True
</property>
4311 <property name=
"focus_on_click">False
</property>
4312 <child internal-child=
"accessible">
4313 <object class=
"AtkObject" id=
"calc_2_button-atkobject">
4314 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
2</property>
4317 <signal name=
"clicked" handler=
"button_cb"/>
4320 <property name=
"left_attach">1</property>
4321 <property name=
"right_attach">2</property>
4322 <property name=
"top_attach">2</property>
4323 <property name=
"bottom_attach">3</property>
4324 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4325 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4329 <object class=
"GtkButton" id=
"calc_0_button">
4330 <property name=
"label" translatable=
"yes" comments=
"Numeric 0 button">0</property>
4331 <property name=
"visible">True
</property>
4332 <property name=
"can_focus">True
</property>
4333 <property name=
"receives_default">False
</property>
4334 <property name=
"use_underline">True
</property>
4335 <property name=
"focus_on_click">False
</property>
4336 <child internal-child=
"accessible">
4337 <object class=
"AtkObject" id=
"calc_0_button-atkobject">
4338 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
0</property>
4341 <signal name=
"clicked" handler=
"button_cb"/>
4344 <property name=
"top_attach">3</property>
4345 <property name=
"bottom_attach">4</property>
4346 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4347 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4351 <object class=
"GtkButton" id=
"calc_numeric_point_button">
4352 <property name=
"label" comments=
"Label is set in gtk.c to comply with LC flags">.
</property>
4353 <property name=
"visible">True
</property>
4354 <property name=
"can_focus">True
</property>
4355 <property name=
"receives_default">False
</property>
4356 <property name=
"tooltip_text" translatable=
"yes">Numeric point
</property>
4357 <property name=
"use_underline">True
</property>
4358 <property name=
"focus_on_click">False
</property>
4359 <child internal-child=
"accessible">
4360 <object class=
"AtkObject" id=
"calc_numeric_point_button-atkobject">
4361 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric point
</property>
4364 <signal name=
"clicked" handler=
"button_cb"/>
4367 <property name=
"left_attach">1</property>
4368 <property name=
"right_attach">2</property>
4369 <property name=
"top_attach">3</property>
4370 <property name=
"bottom_attach">4</property>
4371 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4372 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4376 <object class=
"GtkButton" id=
"calc_result_button">
4377 <property name=
"label" translatable=
"yes" comments=
"Solve button (clicking this solves the displayed calculation)">=
</property>
4378 <property name=
"visible">True
</property>
4379 <property name=
"can_focus">True
</property>
4380 <property name=
"receives_default">False
</property>
4381 <property name=
"tooltip_text" translatable=
"yes">Calculate result [=]
</property>
4382 <property name=
"use_underline">True
</property>
4383 <property name=
"focus_on_click">False
</property>
4384 <child internal-child=
"accessible">
4385 <object class=
"AtkObject" id=
"calc_result_button-atkobject">
4386 <property name=
"AtkObject::accessible-name" translatable=
"yes">Calculate result
</property>
4389 <signal name=
"clicked" handler=
"button_cb"/>
4392 <property name=
"left_attach">2</property>
4393 <property name=
"right_attach">3</property>
4394 <property name=
"top_attach">3</property>
4395 <property name=
"bottom_attach">4</property>
4396 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4397 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4401 <object class=
"GtkButton" id=
"calc_3_button">
4402 <property name=
"label" translatable=
"yes" comments=
"Numeric 3 button">3</property>
4403 <property name=
"visible">True
</property>
4404 <property name=
"can_focus">True
</property>
4405 <property name=
"receives_default">False
</property>
4406 <property name=
"use_underline">True
</property>
4407 <property name=
"focus_on_click">False
</property>
4408 <child internal-child=
"accessible">
4409 <object class=
"AtkObject" id=
"calc_3_button-atkobject">
4410 <property name=
"AtkObject::accessible-name" translatable=
"yes">Numeric
3</property>
4413 <signal name=
"clicked" handler=
"button_cb"/>
4416 <property name=
"left_attach">2</property>
4417 <property name=
"right_attach">3</property>
4418 <property name=
"top_attach">2</property>
4419 <property name=
"bottom_attach">3</property>
4420 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4421 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4425 <object class=
"GtkButton" id=
"calc_multiply_button">
4426 <property name=
"label" translatable=
"yes" comments=
"Multiplication button">×</property>
4427 <property name=
"visible">True
</property>
4428 <property name=
"can_focus">True
</property>
4429 <property name=
"receives_default">False
</property>
4430 <property name=
"tooltip_text" translatable=
"yes">Multiply [*]
</property>
4431 <property name=
"use_underline">True
</property>
4432 <property name=
"focus_on_click">False
</property>
4433 <child internal-child=
"accessible">
4434 <object class=
"AtkObject" id=
"calc_multiply_button-atkobject">
4435 <property name=
"AtkObject::accessible-name" translatable=
"yes">Multiply
</property>
4436 <property name=
"AtkObject::accessible-description" translatable=
"yes">Multiply
</property>
4439 <signal name=
"clicked" handler=
"button_cb"/>
4442 <property name=
"left_attach">3</property>
4443 <property name=
"right_attach">4</property>
4444 <property name=
"top_attach">1</property>
4445 <property name=
"bottom_attach">2</property>
4446 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4447 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4451 <object class=
"GtkButton" id=
"calc_subtract_button">
4452 <property name=
"label" translatable=
"yes" comments=
"Subtraction button">−</property>
4453 <property name=
"visible">True
</property>
4454 <property name=
"can_focus">True
</property>
4455 <property name=
"receives_default">False
</property>
4456 <property name=
"tooltip_text" translatable=
"yes">Subtract [-]
</property>
4457 <property name=
"use_underline">True
</property>
4458 <property name=
"focus_on_click">False
</property>
4459 <child internal-child=
"accessible">
4460 <object class=
"AtkObject" id=
"calc_subtract_button-atkobject">
4461 <property name=
"AtkObject::accessible-name" translatable=
"yes">Subtract
</property>
4462 <property name=
"AtkObject::accessible-description" translatable=
"yes">Subtract [-]
</property>
4465 <signal name=
"clicked" handler=
"button_cb"/>
4468 <property name=
"left_attach">3</property>
4469 <property name=
"right_attach">4</property>
4470 <property name=
"top_attach">2</property>
4471 <property name=
"bottom_attach">3</property>
4472 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4473 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4477 <object class=
"GtkButton" id=
"calc_add_button">
4478 <property name=
"label" translatable=
"yes" comments=
"Addition button">+
</property>
4479 <property name=
"visible">True
</property>
4480 <property name=
"can_focus">True
</property>
4481 <property name=
"receives_default">False
</property>
4482 <property name=
"tooltip_text" translatable=
"yes">Add [+]
</property>
4483 <property name=
"use_underline">True
</property>
4484 <property name=
"focus_on_click">False
</property>
4485 <child internal-child=
"accessible">
4486 <object class=
"AtkObject" id=
"calc_add_button-atkobject">
4487 <property name=
"AtkObject::accessible-name" translatable=
"yes">Add
</property>
4490 <signal name=
"clicked" handler=
"button_cb"/>
4493 <property name=
"left_attach">3</property>
4494 <property name=
"right_attach">4</property>
4495 <property name=
"top_attach">3</property>
4496 <property name=
"bottom_attach">4</property>
4497 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4498 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4503 <property name=
"top_attach">1</property>
4504 <property name=
"bottom_attach">5</property>
4505 <property name=
"x_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4506 <property name=
"y_options">GTK_EXPAND | GTK_SHRINK | GTK_FILL
</property>
4514 <property name=
"position">8</property>
4518 <object class=
"GtkStatusbar" id=
"statusbar">
4519 <property name=
"visible">True
</property>
4520 <property name=
"has_resize_grip">False
</property>
4522 <object class=
"GtkImage" id=
"status_image">
4523 <property name=
"visible">True
</property>
4524 <property name=
"stock">gtk-missing-image
</property>
4527 <property name=
"expand">False
</property>
4528 <property name=
"position">0</property>
4533 <property name=
"expand">False
</property>
4534 <property name=
"position">9</property>
4540 <object class=
"GtkMenu" id=
"left_shift_popup">
4541 <property name=
"border_width">1</property>
4543 <object class=
"GtkMenuItem" id=
"shift_left1_menu">
4544 <property name=
"visible">True
</property>
4545 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 1 bit">_1 place
</property>
4546 <property name=
"use_underline">True
</property>
4547 <signal name=
"activate" handler=
"shift_cb"/>
4551 <object class=
"GtkMenuItem" id=
"shift_left2_menu">
4552 <property name=
"visible">True
</property>
4553 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 2 bits">_2 places
</property>
4554 <property name=
"use_underline">True
</property>
4555 <signal name=
"activate" handler=
"shift_cb"/>
4559 <object class=
"GtkMenuItem" id=
"shift_left3_menu">
4560 <property name=
"visible">True
</property>
4561 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 3 bits">_3 places
</property>
4562 <property name=
"use_underline">True
</property>
4563 <signal name=
"activate" handler=
"shift_cb"/>
4567 <object class=
"GtkMenuItem" id=
"shift_left4_menu">
4568 <property name=
"visible">True
</property>
4569 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 4 bits">_4 places
</property>
4570 <property name=
"use_underline">True
</property>
4571 <signal name=
"activate" handler=
"shift_cb"/>
4575 <object class=
"GtkMenuItem" id=
"shift_left5_menu">
4576 <property name=
"visible">True
</property>
4577 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 5 bits">_5 places
</property>
4578 <property name=
"use_underline">True
</property>
4579 <signal name=
"activate" handler=
"shift_cb"/>
4583 <object class=
"GtkMenuItem" id=
"shift_left6_menu">
4584 <property name=
"visible">True
</property>
4585 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 6 bits">_6 places
</property>
4586 <property name=
"use_underline">True
</property>
4587 <signal name=
"activate" handler=
"shift_cb"/>
4591 <object class=
"GtkMenuItem" id=
"shift_left7_menu">
4592 <property name=
"visible">True
</property>
4593 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 7 bits">_7 places
</property>
4594 <property name=
"use_underline">True
</property>
4595 <signal name=
"activate" handler=
"shift_cb"/>
4599 <object class=
"GtkMenuItem" id=
"shift_left8_menu">
4600 <property name=
"visible">True
</property>
4601 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 8 bits">_8 places
</property>
4602 <property name=
"use_underline">True
</property>
4603 <signal name=
"activate" handler=
"shift_cb"/>
4607 <object class=
"GtkMenuItem" id=
"shift_left9_menu">
4608 <property name=
"visible">True
</property>
4609 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 9 bits">_9 places
</property>
4610 <property name=
"use_underline">True
</property>
4611 <signal name=
"activate" handler=
"shift_cb"/>
4615 <object class=
"GtkMenuItem" id=
"shift_left10_menu">
4616 <property name=
"visible">True
</property>
4617 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 10 bits">10 places
</property>
4618 <property name=
"use_underline">True
</property>
4619 <signal name=
"activate" handler=
"shift_cb"/>
4623 <object class=
"GtkMenuItem" id=
"shift_left11_menu">
4624 <property name=
"visible">True
</property>
4625 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 11 bits">11 places
</property>
4626 <property name=
"use_underline">True
</property>
4627 <signal name=
"activate" handler=
"shift_cb"/>
4631 <object class=
"GtkMenuItem" id=
"shift_left12_menu">
4632 <property name=
"visible">True
</property>
4633 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 12 bits">12 places
</property>
4634 <property name=
"use_underline">True
</property>
4635 <signal name=
"activate" handler=
"shift_cb"/>
4639 <object class=
"GtkMenuItem" id=
"shift_left13_menu">
4640 <property name=
"visible">True
</property>
4641 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 13 bits">13 places
</property>
4642 <property name=
"use_underline">True
</property>
4643 <signal name=
"activate" handler=
"shift_cb"/>
4647 <object class=
"GtkMenuItem" id=
"shift_left14_menu">
4648 <property name=
"visible">True
</property>
4649 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 14 bits">14 places
</property>
4650 <property name=
"use_underline">True
</property>
4651 <signal name=
"activate" handler=
"shift_cb"/>
4655 <object class=
"GtkMenuItem" id=
"shift_left15_menu">
4656 <property name=
"visible">True
</property>
4657 <property name=
"label" translatable=
"yes" comments=
"Left Shift Popup: Menu item to shift left by 15 bits">15 places
</property>
4658 <property name=
"use_underline">True
</property>
4659 <signal name=
"activate" handler=
"shift_cb"/>
4663 <object class=
"GtkMenu" id=
"right_shift_popup">
4664 <property name=
"border_width">1</property>
4666 <object class=
"GtkMenuItem" id=
"shift_right1_menu">
4667 <property name=
"visible">True
</property>
4668 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 1 bit">_1 place
</property>
4669 <property name=
"use_underline">True
</property>
4670 <signal name=
"activate" handler=
"shift_cb"/>
4674 <object class=
"GtkMenuItem" id=
"shift_right2_menu">
4675 <property name=
"visible">True
</property>
4676 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 2 bits">_2 places
</property>
4677 <property name=
"use_underline">True
</property>
4678 <signal name=
"activate" handler=
"shift_cb"/>
4682 <object class=
"GtkMenuItem" id=
"shift_right3_menu">
4683 <property name=
"visible">True
</property>
4684 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 3 bits">_3 places
</property>
4685 <property name=
"use_underline">True
</property>
4686 <signal name=
"activate" handler=
"shift_cb"/>
4690 <object class=
"GtkMenuItem" id=
"shift_right4_menu">
4691 <property name=
"visible">True
</property>
4692 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 4 bits">_4 places
</property>
4693 <property name=
"use_underline">True
</property>
4694 <signal name=
"activate" handler=
"shift_cb"/>
4698 <object class=
"GtkMenuItem" id=
"shift_right5_menu">
4699 <property name=
"visible">True
</property>
4700 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 5 bits">_5 places
</property>
4701 <property name=
"use_underline">True
</property>
4702 <signal name=
"activate" handler=
"shift_cb"/>
4706 <object class=
"GtkMenuItem" id=
"shift_right6_menu">
4707 <property name=
"visible">True
</property>
4708 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 6 bits">_6 places
</property>
4709 <property name=
"use_underline">True
</property>
4710 <signal name=
"activate" handler=
"shift_cb"/>
4714 <object class=
"GtkMenuItem" id=
"shift_right7_menu">
4715 <property name=
"visible">True
</property>
4716 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 7 bits">_7 places
</property>
4717 <property name=
"use_underline">True
</property>
4718 <signal name=
"activate" handler=
"shift_cb"/>
4722 <object class=
"GtkMenuItem" id=
"shift_right8_menu">
4723 <property name=
"visible">True
</property>
4724 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 8 bits">_8 places
</property>
4725 <property name=
"use_underline">True
</property>
4726 <signal name=
"activate" handler=
"shift_cb"/>
4730 <object class=
"GtkMenuItem" id=
"shift_right9_menu">
4731 <property name=
"visible">True
</property>
4732 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 9 bits">_9 places
</property>
4733 <property name=
"use_underline">True
</property>
4734 <signal name=
"activate" handler=
"shift_cb"/>
4738 <object class=
"GtkMenuItem" id=
"shift_right10_menu">
4739 <property name=
"visible">True
</property>
4740 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 10 bits">10 places
</property>
4741 <property name=
"use_underline">True
</property>
4742 <signal name=
"activate" handler=
"shift_cb"/>
4746 <object class=
"GtkMenuItem" id=
"shift_right11_menu">
4747 <property name=
"visible">True
</property>
4748 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 11 bits">11 places
</property>
4749 <property name=
"use_underline">True
</property>
4750 <signal name=
"activate" handler=
"shift_cb"/>
4754 <object class=
"GtkMenuItem" id=
"shift_right12_menu">
4755 <property name=
"visible">True
</property>
4756 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 12 bits">12 places
</property>
4757 <property name=
"use_underline">True
</property>
4758 <signal name=
"activate" handler=
"shift_cb"/>
4762 <object class=
"GtkMenuItem" id=
"shift_right13_menu">
4763 <property name=
"visible">True
</property>
4764 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 13 bits">13 places
</property>
4765 <property name=
"use_underline">True
</property>
4766 <signal name=
"activate" handler=
"shift_cb"/>
4770 <object class=
"GtkMenuItem" id=
"shift_right14_menu">
4771 <property name=
"visible">True
</property>
4772 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 14 bits">14 places
</property>
4773 <property name=
"use_underline">True
</property>
4774 <signal name=
"activate" handler=
"shift_cb"/>
4778 <object class=
"GtkMenuItem" id=
"shift_right15_menu">
4779 <property name=
"visible">True
</property>
4780 <property name=
"label" translatable=
"yes" comments=
"Right Shift Popup: Menu item to shift right by 15 bits">15 places
</property>
4781 <property name=
"use_underline">True
</property>
4782 <signal name=
"activate" handler=
"shift_cb"/>
4786 <object class=
"GtkMenu" id=
"accuracy_popup">
4787 <property name=
"border_width">1</property>
4789 <object class=
"GtkRadioMenuItem" id=
"acc_item0">
4790 <property name=
"visible">True
</property>
4791 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 0 significant places">_0 significant places
</property>
4792 <property name=
"use_underline">True
</property>
4793 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4797 <object class=
"GtkRadioMenuItem" id=
"acc_item1">
4798 <property name=
"visible">True
</property>
4799 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 1 significant place">_1 significant place
</property>
4800 <property name=
"use_underline">True
</property>
4801 <property name=
"group">acc_item0
</property>
4802 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4806 <object class=
"GtkRadioMenuItem" id=
"acc_item2">
4807 <property name=
"visible">True
</property>
4808 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 2 significant places">_2 significant places
</property>
4809 <property name=
"use_underline">True
</property>
4810 <property name=
"group">acc_item0
</property>
4811 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4815 <object class=
"GtkRadioMenuItem" id=
"acc_item3">
4816 <property name=
"visible">True
</property>
4817 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 3 significant places">_3 significant places
</property>
4818 <property name=
"use_underline">True
</property>
4819 <property name=
"group">acc_item0
</property>
4820 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4824 <object class=
"GtkRadioMenuItem" id=
"acc_item4">
4825 <property name=
"visible">True
</property>
4826 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 4 significant places">_4 significant places
</property>
4827 <property name=
"use_underline">True
</property>
4828 <property name=
"group">acc_item0
</property>
4829 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4833 <object class=
"GtkRadioMenuItem" id=
"acc_item5">
4834 <property name=
"visible">True
</property>
4835 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 5 significant places">_5 significant places
</property>
4836 <property name=
"use_underline">True
</property>
4837 <property name=
"group">acc_item0
</property>
4838 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4842 <object class=
"GtkRadioMenuItem" id=
"acc_item6">
4843 <property name=
"visible">True
</property>
4844 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 6 significant places">_6 significant places
</property>
4845 <property name=
"use_underline">True
</property>
4846 <property name=
"group">acc_item0
</property>
4847 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4851 <object class=
"GtkRadioMenuItem" id=
"acc_item7">
4852 <property name=
"visible">True
</property>
4853 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 7 significant places">_7 significant places
</property>
4854 <property name=
"use_underline">True
</property>
4855 <property name=
"group">acc_item0
</property>
4856 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4860 <object class=
"GtkRadioMenuItem" id=
"acc_item8">
4861 <property name=
"visible">True
</property>
4862 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 8 significant places">_8 significant places
</property>
4863 <property name=
"use_underline">True
</property>
4864 <property name=
"group">acc_item0
</property>
4865 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4869 <object class=
"GtkRadioMenuItem" id=
"acc_item9">
4870 <property name=
"visible">True
</property>
4871 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Menu item to set accuracy to 9 significant places">_9 significant places
</property>
4872 <property name=
"use_underline">True
</property>
4873 <property name=
"group">acc_item0
</property>
4874 <signal name=
"activate" handler=
"accuracy_radio_cb"/>
4878 <object class=
"GtkRadioMenuItem" id=
"acc_item_other">
4879 <property name=
"visible">True
</property>
4880 <property name=
"label" comments=
"Variable label button - text set inside gtk.c">(_Other (N) ...)
</property>
4881 <property name=
"use_underline">True
</property>
4882 <property name=
"group">acc_item0
</property>
4883 <signal name=
"activate" handler=
"accuracy_other_cb"/>
4887 <object class=
"GtkSeparatorMenuItem" id=
"separator4">
4888 <property name=
"visible">True
</property>
4892 <object class=
"GtkMenuItem" id=
"acc_item_default">
4893 <property name=
"visible">True
</property>
4894 <property name=
"label" comments=
"Set and translated inside gtk.c">Reset to _Default (%d)
</property>
4895 <property name=
"use_underline">True
</property>
4896 <signal name=
"activate" handler=
"accuracy_default_cb"/>
4900 <object class=
"GtkSeparatorMenuItem" id=
"separator5">
4901 <property name=
"visible">True
</property>
4905 <object class=
"GtkCheckMenuItem" id=
"acc_trailing_zeroes_item">
4906 <property name=
"visible">True
</property>
4907 <property name=
"label" translatable=
"yes" comments=
"Accuracy Popup: Check menu item to enable trailing zeroes">Show _Trailing Zeroes
</property>
4908 <property name=
"use_underline">True
</property>
4909 <signal name=
"activate" handler=
"show_trailing_zeroes_cb"/>
4913 <object class=
"GtkDialog" id=
"register_dialog">
4914 <property name=
"border_width">5</property>
4915 <property name=
"title" translatable=
"yes">Memory Registers
</property>
4916 <property name=
"resizable">False
</property>
4917 <property name=
"type_hint">dialog
</property>
4918 <property name=
"has_separator">False
</property>
4919 <signal name=
"response" handler=
"register_dialog_response_cb"/>
4920 <signal name=
"delete_event" handler=
"register_dialog_delete_cb"/>
4921 <child internal-child=
"vbox">
4922 <object class=
"GtkVBox" id=
"dialog-vbox1">
4923 <property name=
"visible">True
</property>
4924 <property name=
"orientation">vertical
</property>
4925 <property name=
"spacing">2</property>
4927 <object class=
"GtkTable" id=
"table9">
4928 <property name=
"visible">True
</property>
4929 <property name=
"border_width">5</property>
4930 <property name=
"n_rows">10</property>
4931 <property name=
"n_columns">2</property>
4932 <property name=
"column_spacing">12</property>
4933 <property name=
"row_spacing">6</property>
4935 <object class=
"GtkLabel" id=
"label40">
4936 <property name=
"visible">True
</property>
4937 <property name=
"xalign">0</property>
4938 <property name=
"label" translatable=
"yes" comments=
""R0" is the abbreviation for "Register 0", used in the memory register dialog"><span
weight=
"bold">R0
</span
></property>
4939 <property name=
"use_markup">True
</property>
4942 <property name=
"x_options">GTK_FILL
</property>
4943 <property name=
"y_options"></property>
4947 <object class=
"GtkLabel" id=
"label41">
4948 <property name=
"visible">True
</property>
4949 <property name=
"xalign">0</property>
4950 <property name=
"label" translatable=
"yes" comments=
""R1" is the abbreviation for "Register 1", used in the memory register dialog"><span
weight=
"bold">R1
</span
></property>
4951 <property name=
"use_markup">True
</property>
4954 <property name=
"top_attach">1</property>
4955 <property name=
"bottom_attach">2</property>
4956 <property name=
"x_options">GTK_FILL
</property>
4957 <property name=
"y_options"></property>
4961 <object class=
"GtkLabel" id=
"label42">
4962 <property name=
"visible">True
</property>
4963 <property name=
"xalign">0</property>
4964 <property name=
"label" translatable=
"yes" comments=
""R2" is the abbreviation for "Register 2", used in the memory register dialog"><span
weight=
"bold">R2
</span
></property>
4965 <property name=
"use_markup">True
</property>
4968 <property name=
"top_attach">2</property>
4969 <property name=
"bottom_attach">3</property>
4970 <property name=
"x_options">GTK_FILL
</property>
4971 <property name=
"y_options"></property>
4975 <object class=
"GtkLabel" id=
"label43">
4976 <property name=
"visible">True
</property>
4977 <property name=
"xalign">0</property>
4978 <property name=
"label" translatable=
"yes" comments=
""R3" is the abbreviation for "Register 3", used in the memory register dialog"><span
weight=
"bold">R3
</span
></property>
4979 <property name=
"use_markup">True
</property>
4982 <property name=
"top_attach">3</property>
4983 <property name=
"bottom_attach">4</property>
4984 <property name=
"x_options">GTK_FILL
</property>
4985 <property name=
"y_options"></property>
4989 <object class=
"GtkLabel" id=
"label44">
4990 <property name=
"visible">True
</property>
4991 <property name=
"xalign">0</property>
4992 <property name=
"label" translatable=
"yes" comments=
""R4" is the abbreviation for "Register 4", used in the memory register dialog"><span
weight=
"bold">R4
</span
></property>
4993 <property name=
"use_markup">True
</property>
4996 <property name=
"top_attach">4</property>
4997 <property name=
"bottom_attach">5</property>
4998 <property name=
"x_options">GTK_FILL
</property>
4999 <property name=
"y_options"></property>
5003 <object class=
"GtkLabel" id=
"label45">
5004 <property name=
"visible">True
</property>
5005 <property name=
"xalign">0</property>
5006 <property name=
"label" translatable=
"yes" comments=
""R5" is the abbreviation for "Register 5", used in the memory register dialog"><span
weight=
"bold">R5
</span
></property>
5007 <property name=
"use_markup">True
</property>
5010 <property name=
"top_attach">5</property>
5011 <property name=
"bottom_attach">6</property>
5012 <property name=
"x_options">GTK_FILL
</property>
5013 <property name=
"y_options"></property>
5017 <object class=
"GtkLabel" id=
"label46">
5018 <property name=
"visible">True
</property>
5019 <property name=
"xalign">0</property>
5020 <property name=
"label" translatable=
"yes" comments=
""R6" is the abbreviation for "Register 6", used in the memory register dialog"><span
weight=
"bold">R6
</span
></property>
5021 <property name=
"use_markup">True
</property>
5024 <property name=
"top_attach">6</property>
5025 <property name=
"bottom_attach">7</property>
5026 <property name=
"x_options">GTK_FILL
</property>
5027 <property name=
"y_options"></property>
5031 <object class=
"GtkLabel" id=
"label47">
5032 <property name=
"visible">True
</property>
5033 <property name=
"xalign">0</property>
5034 <property name=
"label" translatable=
"yes" comments=
""R7" is the abbreviation for "Register 7", used in the memory register dialog"><span
weight=
"bold">R7
</span
></property>
5035 <property name=
"use_markup">True
</property>
5038 <property name=
"top_attach">7</property>
5039 <property name=
"bottom_attach">8</property>
5040 <property name=
"x_options">GTK_FILL
</property>
5041 <property name=
"y_options"></property>
5045 <object class=
"GtkLabel" id=
"label48">
5046 <property name=
"visible">True
</property>
5047 <property name=
"xalign">0</property>
5048 <property name=
"label" translatable=
"yes" comments=
""R8" is the abbreviation for "Register 8", used in the memory register dialog"><span
weight=
"bold">R8
</span
></property>
5049 <property name=
"use_markup">True
</property>
5052 <property name=
"top_attach">8</property>
5053 <property name=
"bottom_attach">9</property>
5054 <property name=
"x_options">GTK_FILL
</property>
5055 <property name=
"y_options"></property>
5059 <object class=
"GtkLabel" id=
"label49">
5060 <property name=
"visible">True
</property>
5061 <property name=
"xalign">0</property>
5062 <property name=
"label" translatable=
"yes" comments=
""R9" is the abbreviation for "Register 9", used in the memory register dialog"><span
weight=
"bold">R9
</span
></property>
5063 <property name=
"use_markup">True
</property>
5066 <property name=
"top_attach">9</property>
5067 <property name=
"bottom_attach">10</property>
5068 <property name=
"x_options">GTK_FILL
</property>
5069 <property name=
"y_options"></property>
5073 <object class=
"GtkEntry" id=
"register_entry_0">
5074 <property name=
"visible">True
</property>
5075 <property name=
"can_focus">True
</property>
5076 <property name=
"editable">False
</property>
5077 <property name=
"invisible_char">●</property>
5078 <child internal-child=
"accessible">
5079 <object class=
"AtkObject" id=
"register_entry_0-atkobject">
5080 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 0. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
0</property>
5085 <property name=
"left_attach">1</property>
5086 <property name=
"right_attach">2</property>
5087 <property name=
"y_options"></property>
5091 <object class=
"GtkEntry" id=
"register_entry_1">
5092 <property name=
"visible">True
</property>
5093 <property name=
"can_focus">True
</property>
5094 <property name=
"editable">False
</property>
5095 <property name=
"invisible_char">●</property>
5096 <child internal-child=
"accessible">
5097 <object class=
"AtkObject" id=
"register_entry_1-atkobject">
5098 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 1. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
1</property>
5103 <property name=
"left_attach">1</property>
5104 <property name=
"right_attach">2</property>
5105 <property name=
"top_attach">1</property>
5106 <property name=
"bottom_attach">2</property>
5107 <property name=
"y_options"></property>
5111 <object class=
"GtkEntry" id=
"register_entry_2">
5112 <property name=
"visible">True
</property>
5113 <property name=
"can_focus">True
</property>
5114 <property name=
"editable">False
</property>
5115 <property name=
"invisible_char">●</property>
5116 <child internal-child=
"accessible">
5117 <object class=
"AtkObject" id=
"register_entry_2-atkobject">
5118 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 2. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
2</property>
5123 <property name=
"left_attach">1</property>
5124 <property name=
"right_attach">2</property>
5125 <property name=
"top_attach">2</property>
5126 <property name=
"bottom_attach">3</property>
5127 <property name=
"y_options"></property>
5131 <object class=
"GtkEntry" id=
"register_entry_3">
5132 <property name=
"visible">True
</property>
5133 <property name=
"can_focus">True
</property>
5134 <property name=
"editable">False
</property>
5135 <property name=
"invisible_char">●</property>
5136 <child internal-child=
"accessible">
5137 <object class=
"AtkObject" id=
"register_entry_3-atkobject">
5138 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 3. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
3</property>
5143 <property name=
"left_attach">1</property>
5144 <property name=
"right_attach">2</property>
5145 <property name=
"top_attach">3</property>
5146 <property name=
"bottom_attach">4</property>
5147 <property name=
"y_options"></property>
5151 <object class=
"GtkEntry" id=
"register_entry_4">
5152 <property name=
"visible">True
</property>
5153 <property name=
"can_focus">True
</property>
5154 <property name=
"editable">False
</property>
5155 <property name=
"invisible_char">●</property>
5156 <child internal-child=
"accessible">
5157 <object class=
"AtkObject" id=
"register_entry_4-atkobject">
5158 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 4. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
4</property>
5163 <property name=
"left_attach">1</property>
5164 <property name=
"right_attach">2</property>
5165 <property name=
"top_attach">4</property>
5166 <property name=
"bottom_attach">5</property>
5167 <property name=
"y_options"></property>
5171 <object class=
"GtkEntry" id=
"register_entry_5">
5172 <property name=
"visible">True
</property>
5173 <property name=
"can_focus">True
</property>
5174 <property name=
"editable">False
</property>
5175 <property name=
"invisible_char">●</property>
5176 <child internal-child=
"accessible">
5177 <object class=
"AtkObject" id=
"register_entry_5-atkobject">
5178 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 5. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
5</property>
5183 <property name=
"left_attach">1</property>
5184 <property name=
"right_attach">2</property>
5185 <property name=
"top_attach">5</property>
5186 <property name=
"bottom_attach">6</property>
5187 <property name=
"y_options"></property>
5191 <object class=
"GtkEntry" id=
"register_entry_6">
5192 <property name=
"visible">True
</property>
5193 <property name=
"can_focus">True
</property>
5194 <property name=
"editable">False
</property>
5195 <property name=
"invisible_char">●</property>
5196 <child internal-child=
"accessible">
5197 <object class=
"AtkObject" id=
"register_entry_6-atkobject">
5198 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 6. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
6</property>
5203 <property name=
"left_attach">1</property>
5204 <property name=
"right_attach">2</property>
5205 <property name=
"top_attach">6</property>
5206 <property name=
"bottom_attach">7</property>
5207 <property name=
"y_options"></property>
5211 <object class=
"GtkEntry" id=
"register_entry_7">
5212 <property name=
"visible">True
</property>
5213 <property name=
"can_focus">True
</property>
5214 <property name=
"editable">False
</property>
5215 <property name=
"invisible_char">●</property>
5216 <child internal-child=
"accessible">
5217 <object class=
"AtkObject" id=
"register_entry_7-atkobject">
5218 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 7. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
7</property>
5223 <property name=
"left_attach">1</property>
5224 <property name=
"right_attach">2</property>
5225 <property name=
"top_attach">7</property>
5226 <property name=
"bottom_attach">8</property>
5227 <property name=
"y_options"></property>
5231 <object class=
"GtkEntry" id=
"register_entry_8">
5232 <property name=
"visible">True
</property>
5233 <property name=
"can_focus">True
</property>
5234 <property name=
"editable">False
</property>
5235 <property name=
"invisible_char">●</property>
5236 <child internal-child=
"accessible">
5237 <object class=
"AtkObject" id=
"register_entry_8-atkobject">
5238 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 8. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
8</property>
5243 <property name=
"left_attach">1</property>
5244 <property name=
"right_attach">2</property>
5245 <property name=
"top_attach">8</property>
5246 <property name=
"bottom_attach">9</property>
5247 <property name=
"y_options"></property>
5251 <object class=
"GtkEntry" id=
"register_entry_9">
5252 <property name=
"visible">True
</property>
5253 <property name=
"can_focus">True
</property>
5254 <property name=
"editable">False
</property>
5255 <property name=
"invisible_char">●</property>
5256 <child internal-child=
"accessible">
5257 <object class=
"AtkObject" id=
"register_entry_9-atkobject">
5258 <property name=
"AtkObject::accessible-name" translatable=
"yes" comments=
"This is accessible name for memory register 9. It is spoken by screen readers such as Orca, to help people who are blind or have low vision.">register
9</property>
5263 <property name=
"left_attach">1</property>
5264 <property name=
"right_attach">2</property>
5265 <property name=
"top_attach">9</property>
5266 <property name=
"bottom_attach">10</property>
5267 <property name=
"y_options"></property>
5272 <property name=
"position">1</property>
5275 <child internal-child=
"action_area">
5276 <object class=
"GtkHButtonBox" id=
"dialog-action_area1">
5277 <property name=
"visible">True
</property>
5278 <property name=
"layout_style">end
</property>
5280 <object class=
"GtkButton" id=
"closebutton1">
5281 <property name=
"label">gtk-close
</property>
5282 <property name=
"visible">True
</property>
5283 <property name=
"can_focus">True
</property>
5284 <property name=
"can_default">True
</property>
5285 <property name=
"receives_default">False
</property>
5286 <property name=
"use_stock">True
</property>
5289 <property name=
"expand">False
</property>
5290 <property name=
"fill">False
</property>
5291 <property name=
"position">0</property>
5296 <property name=
"expand">False
</property>
5297 <property name=
"pack_type">end
</property>
5298 <property name=
"position">0</property>
5304 <action-widget response=
"-7">closebutton1
</action-widget>
5307 <object class=
"GtkDialog" id=
"edit_constants_dialog">
5308 <property name=
"width_request">380</property>
5309 <property name=
"height_request">300</property>
5310 <property name=
"border_width">5</property>
5311 <property name=
"title" translatable=
"yes" comments=
"Title of edit constants dialog">Edit Constants
</property>
5312 <property name=
"destroy_with_parent">True
</property>
5313 <property name=
"type_hint">dialog
</property>
5314 <property name=
"has_separator">False
</property>
5315 <signal name=
"response" handler=
"edit_constants_response_cb"/>
5316 <signal name=
"delete_event" handler=
"edit_constants_delete_cb"/>
5317 <child internal-child=
"vbox">
5318 <object class=
"GtkVBox" id=
"dialog-vbox2">
5319 <property name=
"visible">True
</property>
5320 <property name=
"orientation">vertical
</property>
5322 <object class=
"GtkVBox" id=
"vbox2">
5323 <property name=
"visible">True
</property>
5324 <property name=
"border_width">5</property>
5325 <property name=
"orientation">vertical
</property>
5326 <property name=
"spacing">6</property>
5328 <object class=
"GtkLabel" id=
"label51">
5329 <property name=
"visible">True
</property>
5330 <property name=
"xalign">0</property>
5331 <property name=
"label" translatable=
"yes" comments=
"Edit Constants Dialog: Instructions in dialog">Click a _value or description to edit it:
</property>
5332 <property name=
"use_underline">True
</property>
5335 <property name=
"expand">False
</property>
5336 <property name=
"fill">False
</property>
5337 <property name=
"position">0</property>
5341 <object class=
"GtkScrolledWindow" id=
"scrolledwindow1">
5342 <property name=
"visible">True
</property>
5343 <property name=
"can_focus">True
</property>
5344 <property name=
"hscrollbar_policy">automatic
</property>
5345 <property name=
"vscrollbar_policy">never
</property>
5347 <object class=
"GtkTreeView" id=
"edit_constants_treeview">
5348 <property name=
"visible">True
</property>
5349 <property name=
"can_focus">True
</property>
5350 <property name=
"rules_hint">True
</property>
5355 <property name=
"position">1</property>
5359 <object class=
"GtkLabel" id=
"label50">
5360 <property name=
"visible">True
</property>
5361 <property name=
"xalign">0</property>
5362 <property name=
"label" translatable=
"yes" comments=
"Edit Constants Dialog: Note about what base numbers will be entered as"><small
><i
><b
>Note:
</b
> All constant values are specified in the decimal numeric base.
</i
></small
></property>
5363 <property name=
"use_markup">True
</property>
5366 <property name=
"expand">False
</property>
5367 <property name=
"fill">False
</property>
5368 <property name=
"position">2</property>
5373 <property name=
"position">1</property>
5376 <child internal-child=
"action_area">
5377 <object class=
"GtkHButtonBox" id=
"dialog-action_area2">
5378 <property name=
"visible">True
</property>
5379 <property name=
"layout_style">end
</property>
5381 <object class=
"GtkButton" id=
"helpbutton1">
5382 <property name=
"label">gtk-help
</property>
5383 <property name=
"visible">True
</property>
5384 <property name=
"can_focus">True
</property>
5385 <property name=
"can_default">True
</property>
5386 <property name=
"receives_default">False
</property>
5387 <property name=
"use_stock">True
</property>
5390 <property name=
"expand">False
</property>
5391 <property name=
"fill">False
</property>
5392 <property name=
"position">0</property>
5396 <object class=
"GtkButton" id=
"cancelbutton1">
5397 <property name=
"label">gtk-cancel
</property>
5398 <property name=
"visible">True
</property>
5399 <property name=
"can_focus">True
</property>
5400 <property name=
"can_default">True
</property>
5401 <property name=
"receives_default">False
</property>
5402 <property name=
"use_stock">True
</property>
5405 <property name=
"expand">False
</property>
5406 <property name=
"fill">False
</property>
5407 <property name=
"position">1</property>
5411 <object class=
"GtkButton" id=
"okbutton1">
5412 <property name=
"label">gtk-ok
</property>
5413 <property name=
"visible">True
</property>
5414 <property name=
"can_focus">True
</property>
5415 <property name=
"can_default">True
</property>
5416 <property name=
"has_default">True
</property>
5417 <property name=
"receives_default">False
</property>
5418 <property name=
"use_stock">True
</property>
5421 <property name=
"expand">False
</property>
5422 <property name=
"fill">False
</property>
5423 <property name=
"position">2</property>
5428 <property name=
"expand">False
</property>
5429 <property name=
"pack_type">end
</property>
5430 <property name=
"position">0</property>
5436 <action-widget response=
"-11">helpbutton1
</action-widget>
5437 <action-widget response=
"-6">cancelbutton1
</action-widget>
5438 <action-widget response=
"-3">okbutton1
</action-widget>
5441 <object class=
"GtkMenu" id=
"constants_popup">
5443 <object class=
"GtkMenuItem" id=
"edit_constants1">
5444 <property name=
"visible">True
</property>
5445 <property name=
"label" translatable=
"yes" comments=
"Menu item in the constants menu to show the Edit Constants dialog">Edit Constants...
</property>
5446 <property name=
"use_underline">True
</property>
5447 <signal name=
"activate" handler=
"edit_constants_cb"/>
5451 <object class=
"GtkMenuItem" id=
"constant_menu_item0">
5452 <property name=
"visible">True
</property>
5453 <property name=
"use_underline">True
</property>
5454 <signal name=
"activate" handler=
"constant_menu_cb"/>
5458 <object class=
"GtkMenuItem" id=
"constant_menu_item1">
5459 <property name=
"visible">True
</property>
5460 <property name=
"use_underline">True
</property>
5461 <signal name=
"activate" handler=
"constant_menu_cb"/>
5465 <object class=
"GtkMenuItem" id=
"constant_menu_item2">
5466 <property name=
"visible">True
</property>
5467 <property name=
"use_underline">True
</property>
5468 <signal name=
"activate" handler=
"constant_menu_cb"/>
5472 <object class=
"GtkMenuItem" id=
"constant_menu_item3">
5473 <property name=
"visible">True
</property>
5474 <property name=
"use_underline">True
</property>
5475 <signal name=
"activate" handler=
"constant_menu_cb"/>
5479 <object class=
"GtkMenuItem" id=
"constant_menu_item4">
5480 <property name=
"visible">True
</property>
5481 <property name=
"use_underline">True
</property>
5482 <signal name=
"activate" handler=
"constant_menu_cb"/>
5486 <object class=
"GtkMenuItem" id=
"constant_menu_item5">
5487 <property name=
"visible">True
</property>
5488 <property name=
"use_underline">True
</property>
5489 <signal name=
"activate" handler=
"constant_menu_cb"/>
5493 <object class=
"GtkMenuItem" id=
"constant_menu_item6">
5494 <property name=
"visible">True
</property>
5495 <property name=
"use_underline">True
</property>
5496 <signal name=
"activate" handler=
"constant_menu_cb"/>
5500 <object class=
"GtkMenuItem" id=
"constant_menu_item7">
5501 <property name=
"visible">True
</property>
5502 <property name=
"use_underline">True
</property>
5503 <signal name=
"activate" handler=
"constant_menu_cb"/>
5507 <object class=
"GtkMenuItem" id=
"constant_menu_item8">
5508 <property name=
"visible">True
</property>
5509 <property name=
"use_underline">True
</property>
5510 <signal name=
"activate" handler=
"constant_menu_cb"/>
5514 <object class=
"GtkMenuItem" id=
"constant_menu_item9">
5515 <property name=
"visible">True
</property>
5516 <property name=
"use_underline">True
</property>
5517 <signal name=
"activate" handler=
"constant_menu_cb"/>
5521 <object class=
"GtkMenu" id=
"functions_popup">
5523 <object class=
"GtkMenuItem" id=
"menuitem6">
5524 <property name=
"visible">True
</property>
5525 <property name=
"label" translatable=
"yes" comments=
"Menu item in the constants menu to show the Edit Functions dialog">Edit Functions...
</property>
5526 <property name=
"use_underline">True
</property>
5527 <signal name=
"activate" handler=
"edit_functions_cb"/>
5531 <object class=
"GtkMenuItem" id=
"function_menu_item0">
5532 <property name=
"visible">True
</property>
5533 <property name=
"use_underline">True
</property>
5534 <signal name=
"activate" handler=
"function_menu_cb"/>
5538 <object class=
"GtkMenuItem" id=
"function_menu_item1">
5539 <property name=
"visible">True
</property>
5540 <property name=
"use_underline">True
</property>
5541 <signal name=
"activate" handler=
"function_menu_cb"/>
5545 <object class=
"GtkMenuItem" id=
"function_menu_item2">
5546 <property name=
"visible">True
</property>
5547 <property name=
"use_underline">True
</property>
5548 <signal name=
"activate" handler=
"function_menu_cb"/>
5552 <object class=
"GtkMenuItem" id=
"function_menu_item3">
5553 <property name=
"visible">True
</property>
5554 <property name=
"use_underline">True
</property>
5555 <signal name=
"activate" handler=
"function_menu_cb"/>
5559 <object class=
"GtkMenuItem" id=
"function_menu_item4">
5560 <property name=
"visible">True
</property>
5561 <property name=
"use_underline">True
</property>
5562 <signal name=
"activate" handler=
"function_menu_cb"/>
5566 <object class=
"GtkMenuItem" id=
"function_menu_item5">
5567 <property name=
"visible">True
</property>
5568 <property name=
"use_underline">True
</property>
5569 <signal name=
"activate" handler=
"function_menu_cb"/>
5573 <object class=
"GtkMenuItem" id=
"function_menu_item6">
5574 <property name=
"visible">True
</property>
5575 <property name=
"use_underline">True
</property>
5576 <signal name=
"activate" handler=
"function_menu_cb"/>
5580 <object class=
"GtkMenuItem" id=
"function_menu_item7">
5581 <property name=
"visible">True
</property>
5582 <property name=
"use_underline">True
</property>
5583 <signal name=
"activate" handler=
"function_menu_cb"/>
5587 <object class=
"GtkMenuItem" id=
"function_menu_item8">
5588 <property name=
"visible">True
</property>
5589 <property name=
"use_underline">True
</property>
5590 <signal name=
"activate" handler=
"function_menu_cb"/>
5594 <object class=
"GtkMenuItem" id=
"function_menu_item9">
5595 <property name=
"visible">True
</property>
5596 <property name=
"use_underline">True
</property>
5597 <signal name=
"activate" handler=
"function_menu_cb"/>
5601 <object class=
"GtkDialog" id=
"edit_functions_dialog">
5602 <property name=
"width_request">380</property>
5603 <property name=
"height_request">300</property>
5604 <property name=
"border_width">5</property>
5605 <property name=
"title" translatable=
"yes" comments=
"Title of edit functions dialog">Edit Functions
</property>
5606 <property name=
"destroy_with_parent">True
</property>
5607 <property name=
"type_hint">dialog
</property>
5608 <property name=
"has_separator">False
</property>
5609 <signal name=
"response" handler=
"edit_functions_response_cb"/>
5610 <signal name=
"delete_event" handler=
"edit_functions_delete_cb"/>
5611 <child internal-child=
"vbox">
5612 <object class=
"GtkVBox" id=
"vbox4">
5613 <property name=
"visible">True
</property>
5614 <property name=
"orientation">vertical
</property>
5616 <object class=
"GtkVBox" id=
"vbox5">
5617 <property name=
"visible">True
</property>
5618 <property name=
"border_width">5</property>
5619 <property name=
"orientation">vertical
</property>
5620 <property name=
"spacing">6</property>
5622 <object class=
"GtkLabel" id=
"label53">
5623 <property name=
"visible">True
</property>
5624 <property name=
"xalign">0</property>
5625 <property name=
"label" translatable=
"yes" comments=
"Edit Functions Dialog: Instructions in dialog">Click a _value or description to edit it:
</property>
5626 <property name=
"use_underline">True
</property>
5629 <property name=
"expand">False
</property>
5630 <property name=
"fill">False
</property>
5631 <property name=
"position">0</property>
5635 <object class=
"GtkScrolledWindow" id=
"scrolledwindow2">
5636 <property name=
"visible">True
</property>
5637 <property name=
"can_focus">True
</property>
5638 <property name=
"hscrollbar_policy">automatic
</property>
5639 <property name=
"vscrollbar_policy">never
</property>
5641 <object class=
"GtkTreeView" id=
"edit_functions_treeview">
5642 <property name=
"visible">True
</property>
5643 <property name=
"can_focus">True
</property>
5644 <property name=
"rules_hint">True
</property>
5649 <property name=
"position">1</property>
5653 <object class=
"GtkLabel" id=
"label54">
5654 <property name=
"visible">True
</property>
5655 <property name=
"xalign">0</property>
5656 <property name=
"label" translatable=
"yes" comments=
"Edit Function Dialog: Note about what base numbers will be entered as"><small
><i
><b
>Note:
</b
> All constant values are specified in the decimal numeric base.
</i
></small
></property>
5657 <property name=
"use_markup">True
</property>
5660 <property name=
"expand">False
</property>
5661 <property name=
"fill">False
</property>
5662 <property name=
"position">2</property>
5667 <property name=
"position">1</property>
5670 <child internal-child=
"action_area">
5671 <object class=
"GtkHButtonBox" id=
"hbuttonbox3">
5672 <property name=
"visible">True
</property>
5673 <property name=
"layout_style">end
</property>
5675 <object class=
"GtkButton" id=
"button5">
5676 <property name=
"label">gtk-help
</property>
5677 <property name=
"visible">True
</property>
5678 <property name=
"can_focus">True
</property>
5679 <property name=
"can_default">True
</property>
5680 <property name=
"receives_default">False
</property>
5681 <property name=
"use_stock">True
</property>
5684 <property name=
"expand">False
</property>
5685 <property name=
"fill">False
</property>
5686 <property name=
"position">0</property>
5690 <object class=
"GtkButton" id=
"button6">
5691 <property name=
"label">gtk-cancel
</property>
5692 <property name=
"visible">True
</property>
5693 <property name=
"can_focus">True
</property>
5694 <property name=
"can_default">True
</property>
5695 <property name=
"receives_default">False
</property>
5696 <property name=
"use_stock">True
</property>
5699 <property name=
"expand">False
</property>
5700 <property name=
"fill">False
</property>
5701 <property name=
"position">1</property>
5705 <object class=
"GtkButton" id=
"button7">
5706 <property name=
"label">gtk-ok
</property>
5707 <property name=
"visible">True
</property>
5708 <property name=
"can_focus">True
</property>
5709 <property name=
"can_default">True
</property>
5710 <property name=
"has_default">True
</property>
5711 <property name=
"receives_default">False
</property>
5712 <property name=
"use_stock">True
</property>
5715 <property name=
"expand">False
</property>
5716 <property name=
"fill">False
</property>
5717 <property name=
"position">2</property>
5722 <property name=
"expand">False
</property>
5723 <property name=
"pack_type">end
</property>
5724 <property name=
"position">0</property>
5730 <action-widget response=
"-11">button5
</action-widget>
5731 <action-widget response=
"-6">button6
</action-widget>
5732 <action-widget response=
"-3">button7
</action-widget>
5735 <object class=
"GtkMenu" id=
"memory_store_popup">
5737 <object class=
"GtkMenuItem" id=
"store_menu_item0">
5738 <property name=
"visible">True
</property>
5739 <property name=
"use_underline">True
</property>
5740 <signal name=
"activate" handler=
"store_menu_cb"/>
5744 <object class=
"GtkMenuItem" id=
"store_menu_item1">
5745 <property name=
"visible">True
</property>
5746 <property name=
"use_underline">True
</property>
5747 <signal name=
"activate" handler=
"store_menu_cb"/>
5751 <object class=
"GtkMenuItem" id=
"store_menu_item2">
5752 <property name=
"visible">True
</property>
5753 <property name=
"use_underline">True
</property>
5754 <signal name=
"activate" handler=
"store_menu_cb"/>
5758 <object class=
"GtkMenuItem" id=
"store_menu_item3">
5759 <property name=
"visible">True
</property>
5760 <property name=
"use_underline">True
</property>
5761 <signal name=
"activate" handler=
"store_menu_cb"/>
5765 <object class=
"GtkMenuItem" id=
"store_menu_item4">
5766 <property name=
"visible">True
</property>
5767 <property name=
"use_underline">True
</property>
5768 <signal name=
"activate" handler=
"store_menu_cb"/>
5772 <object class=
"GtkMenuItem" id=
"store_menu_item5">
5773 <property name=
"visible">True
</property>
5774 <property name=
"use_underline">True
</property>
5775 <signal name=
"activate" handler=
"store_menu_cb"/>
5779 <object class=
"GtkMenuItem" id=
"store_menu_item6">
5780 <property name=
"visible">True
</property>
5781 <property name=
"use_underline">True
</property>
5782 <signal name=
"activate" handler=
"store_menu_cb"/>
5786 <object class=
"GtkMenuItem" id=
"store_menu_item7">
5787 <property name=
"visible">True
</property>
5788 <property name=
"use_underline">True
</property>
5789 <signal name=
"activate" handler=
"store_menu_cb"/>
5793 <object class=
"GtkMenuItem" id=
"store_menu_item8">
5794 <property name=
"visible">True
</property>
5795 <property name=
"use_underline">True
</property>
5796 <signal name=
"activate" handler=
"store_menu_cb"/>
5800 <object class=
"GtkMenuItem" id=
"store_menu_item9">
5801 <property name=
"visible">True
</property>
5802 <property name=
"use_underline">True
</property>
5803 <signal name=
"activate" handler=
"store_menu_cb"/>
5807 <object class=
"GtkMenu" id=
"memory_exchange_popup">
5809 <object class=
"GtkMenuItem" id=
"exchange_menu_item0">
5810 <property name=
"visible">True
</property>
5811 <property name=
"use_underline">True
</property>
5812 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5816 <object class=
"GtkMenuItem" id=
"exchange_menu_item1">
5817 <property name=
"visible">True
</property>
5818 <property name=
"use_underline">True
</property>
5819 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5823 <object class=
"GtkMenuItem" id=
"exchange_menu_item2">
5824 <property name=
"visible">True
</property>
5825 <property name=
"use_underline">True
</property>
5826 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5830 <object class=
"GtkMenuItem" id=
"exchange_menu_item3">
5831 <property name=
"visible">True
</property>
5832 <property name=
"use_underline">True
</property>
5833 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5837 <object class=
"GtkMenuItem" id=
"exchange_menu_item4">
5838 <property name=
"visible">True
</property>
5839 <property name=
"use_underline">True
</property>
5840 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5844 <object class=
"GtkMenuItem" id=
"exchange_menu_item5">
5845 <property name=
"visible">True
</property>
5846 <property name=
"use_underline">True
</property>
5847 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5851 <object class=
"GtkMenuItem" id=
"exchange_menu_item6">
5852 <property name=
"visible">True
</property>
5853 <property name=
"use_underline">True
</property>
5854 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5858 <object class=
"GtkMenuItem" id=
"exchange_menu_item7">
5859 <property name=
"visible">True
</property>
5860 <property name=
"use_underline">True
</property>
5861 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5865 <object class=
"GtkMenuItem" id=
"exchange_menu_item8">
5866 <property name=
"visible">True
</property>
5867 <property name=
"use_underline">True
</property>
5868 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5872 <object class=
"GtkMenuItem" id=
"exchange_menu_item9">
5873 <property name=
"visible">True
</property>
5874 <property name=
"use_underline">True
</property>
5875 <signal name=
"activate" handler=
"exchange_menu_cb"/>
5879 <object class=
"GtkMenu" id=
"memory_recall_popup">
5881 <object class=
"GtkMenuItem" id=
"recall_menu_item0">
5882 <property name=
"visible">True
</property>
5883 <property name=
"use_underline">True
</property>
5884 <signal name=
"activate" handler=
"recall_menu_cb"/>
5888 <object class=
"GtkMenuItem" id=
"recall_menu_item1">
5889 <property name=
"visible">True
</property>
5890 <property name=
"use_underline">True
</property>
5891 <signal name=
"activate" handler=
"recall_menu_cb"/>
5895 <object class=
"GtkMenuItem" id=
"recall_menu_item2">
5896 <property name=
"visible">True
</property>
5897 <property name=
"use_underline">True
</property>
5898 <signal name=
"activate" handler=
"recall_menu_cb"/>
5902 <object class=
"GtkMenuItem" id=
"recall_menu_item3">
5903 <property name=
"visible">True
</property>
5904 <property name=
"use_underline">True
</property>
5905 <signal name=
"activate" handler=
"recall_menu_cb"/>
5909 <object class=
"GtkMenuItem" id=
"recall_menu_item4">
5910 <property name=
"visible">True
</property>
5911 <property name=
"use_underline">True
</property>
5912 <signal name=
"activate" handler=
"recall_menu_cb"/>
5916 <object class=
"GtkMenuItem" id=
"recall_menu_item5">
5917 <property name=
"visible">True
</property>
5918 <property name=
"use_underline">True
</property>
5919 <signal name=
"activate" handler=
"recall_menu_cb"/>
5923 <object class=
"GtkMenuItem" id=
"recall_menu_item6">
5924 <property name=
"visible">True
</property>
5925 <property name=
"use_underline">True
</property>
5926 <signal name=
"activate" handler=
"recall_menu_cb"/>
5930 <object class=
"GtkMenuItem" id=
"recall_menu_item7">
5931 <property name=
"visible">True
</property>
5932 <property name=
"use_underline">True
</property>
5933 <signal name=
"activate" handler=
"recall_menu_cb"/>
5937 <object class=
"GtkMenuItem" id=
"recall_menu_item8">
5938 <property name=
"visible">True
</property>
5939 <property name=
"use_underline">True
</property>
5940 <signal name=
"activate" handler=
"recall_menu_cb"/>
5944 <object class=
"GtkMenuItem" id=
"recall_menu_item9">
5945 <property name=
"visible">True
</property>
5946 <property name=
"use_underline">True
</property>
5947 <signal name=
"activate" handler=
"recall_menu_cb"/>
5951 <object class=
"GtkDialog" id=
"ascii_dialog">
5952 <property name=
"border_width">6</property>
5953 <property name=
"title" translatable=
"yes" comments=
"Title of insert ASCII dialog">Insert ASCII Value
</property>
5954 <property name=
"resizable">False
</property>
5955 <property name=
"type_hint">dialog
</property>
5956 <property name=
"has_separator">False
</property>
5957 <signal name=
"response" handler=
"ascii_dialog_response_cb"/>
5958 <signal name=
"delete_event" handler=
"ascii_dialog_delete_cb"/>
5959 <child internal-child=
"vbox">
5960 <object class=
"GtkVBox" id=
"dialog-vbox3">
5961 <property name=
"visible">True
</property>
5962 <property name=
"orientation">vertical
</property>
5964 <object class=
"GtkHBox" id=
"hbox21">
5965 <property name=
"visible">True
</property>
5966 <property name=
"border_width">5</property>
5968 <object class=
"GtkLabel" id=
"label39">
5969 <property name=
"visible">True
</property>
5970 <property name=
"label" translatable=
"yes" comments=
"Insert ASCII dialog: Label before character entry">Ch_aracter:
</property>
5971 <property name=
"use_underline">True
</property>
5972 <property name=
"mnemonic_widget">ascii_entry
</property>
5975 <property name=
"expand">False
</property>
5976 <property name=
"fill">False
</property>
5977 <property name=
"position">0</property>
5981 <object class=
"GtkEntry" id=
"ascii_entry">
5982 <property name=
"visible">True
</property>
5983 <property name=
"can_focus">True
</property>
5984 <property name=
"max_length">1</property>
5985 <property name=
"invisible_char">●</property>
5986 <signal name=
"activate" handler=
"ascii_dialog_activate_cb"/>
5989 <property name=
"expand">False
</property>
5990 <property name=
"fill">False
</property>
5991 <property name=
"position">1</property>
5996 <property name=
"position">1</property>
5999 <child internal-child=
"action_area">
6000 <object class=
"GtkHButtonBox" id=
"dialog-action_area3">
6001 <property name=
"visible">True
</property>
6002 <property name=
"layout_style">end
</property>
6004 <object class=
"GtkButton" id=
"button8">
6005 <property name=
"label">gtk-cancel
</property>
6006 <property name=
"visible">True
</property>
6007 <property name=
"can_focus">True
</property>
6008 <property name=
"can_default">True
</property>
6009 <property name=
"receives_default">False
</property>
6010 <property name=
"use_stock">True
</property>
6013 <property name=
"expand">False
</property>
6014 <property name=
"fill">False
</property>
6015 <property name=
"position">0</property>
6019 <object class=
"GtkButton" id=
"button9">
6020 <property name=
"label" translatable=
"yes" comments=
"Insert ASCII dialog: Button to insert selected character">_Insert
</property>
6021 <property name=
"visible">True
</property>
6022 <property name=
"can_focus">True
</property>
6023 <property name=
"can_default">True
</property>
6024 <property name=
"receives_default">False
</property>
6025 <property name=
"use_underline">True
</property>
6028 <property name=
"expand">False
</property>
6029 <property name=
"fill">False
</property>
6030 <property name=
"position">1</property>
6035 <property name=
"expand">False
</property>
6036 <property name=
"pack_type">end
</property>
6037 <property name=
"position">0</property>
6043 <action-widget response=
"-6">button8
</action-widget>
6044 <action-widget response=
"-5">button9
</action-widget>
6047 <object class=
"GtkDialog" id=
"precision_dialog">
6048 <property name=
"border_width">6</property>
6049 <property name=
"title" translatable=
"yes" comments=
"Title of set precision dialog">Set Precision
</property>
6050 <property name=
"resizable">False
</property>
6051 <property name=
"type_hint">dialog
</property>
6052 <property name=
"has_separator">False
</property>
6053 <signal name=
"response" handler=
"precision_dialog_response_cb"/>
6054 <signal name=
"delete_event" handler=
"precision_dialog_delete_cb"/>
6055 <child internal-child=
"vbox">
6056 <object class=
"GtkVBox" id=
"dialog-vbox4">
6057 <property name=
"visible">True
</property>
6058 <property name=
"orientation">vertical
</property>
6060 <object class=
"GtkHBox" id=
"hbox22">
6061 <property name=
"visible">True
</property>
6062 <property name=
"border_width">5</property>
6063 <property name=
"spacing">6</property>
6065 <object class=
"GtkLabel" id=
"label52">
6066 <property name=
"visible">True
</property>
6067 <property name=
"label" translatable=
"yes" comments=
"Set Precision Dialog: Label before the significant places spin button">Significant _places:
</property>
6068 <property name=
"use_underline">True
</property>
6069 <property name=
"mnemonic_widget">precision_dialog_spin
</property>
6072 <property name=
"expand">False
</property>
6073 <property name=
"fill">False
</property>
6074 <property name=
"position">0</property>
6078 <object class=
"GtkSpinButton" id=
"precision_dialog_spin">
6079 <property name=
"visible">True
</property>
6080 <property name=
"can_focus">True
</property>
6081 <property name=
"adjustment">adjustment1
</property>
6082 <property name=
"climb_rate">1</property>
6083 <property name=
"numeric">True
</property>
6084 <property name=
"update_policy">if-valid
</property>
6085 <signal name=
"activate" handler=
"precision_dialog_activate_cb" after=
"yes"/>
6088 <property name=
"expand">False
</property>
6089 <property name=
"fill">False
</property>
6090 <property name=
"position">1</property>
6095 <property name=
"position">1</property>
6098 <child internal-child=
"action_area">
6099 <object class=
"GtkHButtonBox" id=
"dialog-action_area4">
6100 <property name=
"visible">True
</property>
6101 <property name=
"layout_style">end
</property>
6103 <object class=
"GtkButton" id=
"button10">
6104 <property name=
"label">gtk-cancel
</property>
6105 <property name=
"visible">True
</property>
6106 <property name=
"can_focus">True
</property>
6107 <property name=
"can_default">True
</property>
6108 <property name=
"receives_default">False
</property>
6109 <property name=
"use_stock">True
</property>
6112 <property name=
"expand">False
</property>
6113 <property name=
"fill">False
</property>
6114 <property name=
"position">0</property>
6118 <object class=
"GtkButton" id=
"button11">
6119 <property name=
"label" translatable=
"yes" comments=
"Set Precision Dialog: Button to apply settings">_Set
</property>
6120 <property name=
"visible">True
</property>
6121 <property name=
"can_focus">True
</property>
6122 <property name=
"can_default">True
</property>
6123 <property name=
"receives_default">False
</property>
6124 <property name=
"use_underline">True
</property>
6127 <property name=
"expand">False
</property>
6128 <property name=
"fill">False
</property>
6129 <property name=
"position">1</property>
6134 <property name=
"expand">False
</property>
6135 <property name=
"pack_type">end
</property>
6136 <property name=
"position">0</property>
6142 <action-widget response=
"-6">button10
</action-widget>
6143 <action-widget response=
"-5">button11
</action-widget>
6146 <object class=
"GtkAdjustment" id=
"adjustment1">
6147 <property name=
"value">1</property>
6148 <property name=
"upper">99</property>
6149 <property name=
"step_increment">1</property>
6150 <property name=
"page_increment">10</property>
6152 <object class=
"GtkTextBuffer" id=
"display_buffer"/>
6153 <object class=
"GtkAccelGroup" id=
"accelgroup1"/>
6154 <object class=
"GtkImage" id=
"image1">
6155 <property name=
"visible">True
</property>
6156 <property name=
"stock">gtk-help
</property>
6157 <property name=
"icon-size">1</property>