diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/mat.ui | 625 |
1 files changed, 625 insertions, 0 deletions
diff --git a/data/mat.ui b/data/mat.ui new file mode 100644 index 0000000..83d1702 --- /dev/null +++ b/data/mat.ui | |||
| @@ -0,0 +1,625 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <interface> | ||
| 3 | <!-- interface-requires gtk+ 3.0 --> | ||
| 4 | <object class="GtkListStore" id="Liststore"> | ||
| 5 | <columns> | ||
| 6 | <!-- column-name Obj --> | ||
| 7 | <column type="PyObject"/> | ||
| 8 | <!-- column-name Path --> | ||
| 9 | <column type="gchararray"/> | ||
| 10 | <!-- column-name Filename --> | ||
| 11 | <column type="gchararray"/> | ||
| 12 | <!-- column-name Mimetype --> | ||
| 13 | <column type="gchararray"/> | ||
| 14 | <!-- column-name State(str) --> | ||
| 15 | <column type="gchararray"/> | ||
| 16 | <!-- column-name Cleaned --> | ||
| 17 | <column type="gchararray"/> | ||
| 18 | <!-- column-name State --> | ||
| 19 | <column type="gint"/> | ||
| 20 | </columns> | ||
| 21 | </object> | ||
| 22 | <object class="GtkWindow" id="MainWindow"> | ||
| 23 | <property name="visible">True</property> | ||
| 24 | <property name="can_focus">False</property> | ||
| 25 | <property name="title" translatable="yes">Metadata Anonymisation Toolkit</property> | ||
| 26 | <property name="window_position">center</property> | ||
| 27 | <property name="default_width">400</property> | ||
| 28 | <property name="default_height">400</property> | ||
| 29 | <signal name="destroy" handler="cb_close_application" swapped="no"/> | ||
| 30 | <child> | ||
| 31 | <object class="GtkBox" id="MainVBox"> | ||
| 32 | <property name="visible">True</property> | ||
| 33 | <property name="can_focus">False</property> | ||
| 34 | <property name="orientation">vertical</property> | ||
| 35 | <child> | ||
| 36 | <object class="GtkMenuBar" id="Menubar"> | ||
| 37 | <property name="visible">True</property> | ||
| 38 | <property name="can_focus">False</property> | ||
| 39 | <child> | ||
| 40 | <object class="GtkMenuItem" id="File"> | ||
| 41 | <property name="visible">True</property> | ||
| 42 | <property name="can_focus">False</property> | ||
| 43 | <property name="label" translatable="yes">_File</property> | ||
| 44 | <property name="use_underline">True</property> | ||
| 45 | <child type="submenu"> | ||
| 46 | <object class="GtkMenu" id="File_menu"> | ||
| 47 | <property name="visible">True</property> | ||
| 48 | <property name="can_focus">False</property> | ||
| 49 | <child> | ||
| 50 | <object class="GtkImageMenuItem" id="Menu_add"> | ||
| 51 | <property name="label">gtk-add</property> | ||
| 52 | <property name="visible">True</property> | ||
| 53 | <property name="can_focus">False</property> | ||
| 54 | <property name="use_underline">True</property> | ||
| 55 | <property name="use_stock">True</property> | ||
| 56 | <accelerator key="o" signal="activate" modifiers="GDK_CONTROL_MASK"/> | ||
| 57 | <signal name="activate" handler="cb_add_files" swapped="no"/> | ||
| 58 | </object> | ||
| 59 | </child> | ||
| 60 | <child> | ||
| 61 | <object class="GtkImageMenuItem" id="Menu_quit"> | ||
| 62 | <property name="label">gtk-quit</property> | ||
| 63 | <property name="visible">True</property> | ||
| 64 | <property name="can_focus">False</property> | ||
| 65 | <property name="use_underline">True</property> | ||
| 66 | <property name="use_stock">True</property> | ||
| 67 | <accelerator key="q" signal="activate" modifiers="GDK_CONTROL_MASK"/> | ||
| 68 | <signal name="activate" handler="cb_close_application" swapped="no"/> | ||
| 69 | </object> | ||
| 70 | </child> | ||
| 71 | </object> | ||
| 72 | </child> | ||
| 73 | </object> | ||
| 74 | </child> | ||
| 75 | <child> | ||
| 76 | <object class="GtkMenuItem" id="Edit"> | ||
| 77 | <property name="visible">True</property> | ||
| 78 | <property name="can_focus">False</property> | ||
| 79 | <property name="label" translatable="yes">_Edit</property> | ||
| 80 | <property name="use_underline">True</property> | ||
| 81 | <child type="submenu"> | ||
| 82 | <object class="GtkMenu" id="Edit_menu"> | ||
| 83 | <property name="visible">True</property> | ||
| 84 | <property name="can_focus">False</property> | ||
| 85 | <child> | ||
| 86 | <object class="GtkImageMenuItem" id="menu_preferences"> | ||
| 87 | <property name="label" translatable="yes">Preferences</property> | ||
| 88 | <property name="visible">True</property> | ||
| 89 | <property name="can_focus">False</property> | ||
| 90 | <property name="image">image2</property> | ||
| 91 | <property name="use_stock">False</property> | ||
| 92 | <accelerator key="p" signal="activate" modifiers="GDK_CONTROL_MASK"/> | ||
| 93 | <signal name="activate" handler="cb_preferences_popup" swapped="no"/> | ||
| 94 | </object> | ||
| 95 | </child> | ||
| 96 | <child> | ||
| 97 | <object class="GtkImageMenuItem" id="menu_clear"> | ||
| 98 | <property name="label" translatable="yes">Clear</property> | ||
| 99 | <property name="visible">True</property> | ||
| 100 | <property name="can_focus">False</property> | ||
| 101 | <property name="image">image1</property> | ||
| 102 | <property name="use_stock">False</property> | ||
| 103 | </object> | ||
| 104 | </child> | ||
| 105 | </object> | ||
| 106 | </child> | ||
| 107 | </object> | ||
| 108 | </child> | ||
| 109 | <child> | ||
| 110 | <object class="GtkMenuItem" id="Process"> | ||
| 111 | <property name="visible">True</property> | ||
| 112 | <property name="can_focus">False</property> | ||
| 113 | <property name="label" translatable="yes">_Process</property> | ||
| 114 | <property name="use_underline">True</property> | ||
| 115 | <child type="submenu"> | ||
| 116 | <object class="GtkMenu" id="Process_menu"> | ||
| 117 | <property name="visible">True</property> | ||
| 118 | <property name="can_focus">False</property> | ||
| 119 | <child> | ||
| 120 | <object class="GtkImageMenuItem" id="clean_menuitem"> | ||
| 121 | <property name="label">Clean</property> | ||
| 122 | <property name="visible">True</property> | ||
| 123 | <property name="can_focus">False</property> | ||
| 124 | <property name="image">image3</property> | ||
| 125 | <property name="use_stock">False</property> | ||
| 126 | <signal name="activate" handler="cb_mat_clean" swapped="no"/> | ||
| 127 | </object> | ||
| 128 | </child> | ||
| 129 | <child> | ||
| 130 | <object class="GtkImageMenuItem" id="check_menuitem"> | ||
| 131 | <property name="label">Check</property> | ||
| 132 | <property name="visible">True</property> | ||
| 133 | <property name="can_focus">False</property> | ||
| 134 | <property name="image">image4</property> | ||
| 135 | <property name="use_stock">False</property> | ||
| 136 | <signal name="activate" handler="cb_mat_check" swapped="no"/> | ||
| 137 | </object> | ||
| 138 | </child> | ||
| 139 | </object> | ||
| 140 | </child> | ||
| 141 | </object> | ||
| 142 | </child> | ||
| 143 | <child> | ||
| 144 | <object class="GtkMenuItem" id="Help"> | ||
| 145 | <property name="visible">True</property> | ||
| 146 | <property name="can_focus">False</property> | ||
| 147 | <property name="label" translatable="yes">_Help</property> | ||
| 148 | <property name="use_underline">True</property> | ||
| 149 | <child type="submenu"> | ||
| 150 | <object class="GtkMenu" id="Help_menu"> | ||
| 151 | <property name="visible">True</property> | ||
| 152 | <property name="can_focus">False</property> | ||
| 153 | <child> | ||
| 154 | <object class="GtkImageMenuItem" id="supported_menuitem"> | ||
| 155 | <property name="label">Supported formats</property> | ||
| 156 | <property name="visible">True</property> | ||
| 157 | <property name="can_focus">False</property> | ||
| 158 | <property name="image">image5</property> | ||
| 159 | <property name="use_stock">False</property> | ||
| 160 | <signal name="activate" handler="cb_supported_popup" swapped="no"/> | ||
| 161 | </object> | ||
| 162 | </child> | ||
| 163 | <child> | ||
| 164 | <object class="GtkImageMenuItem" id="about_menuitem"> | ||
| 165 | <property name="label">About</property> | ||
| 166 | <property name="visible">True</property> | ||
| 167 | <property name="can_focus">False</property> | ||
| 168 | <property name="image">image6</property> | ||
| 169 | <property name="use_stock">False</property> | ||
| 170 | <signal name="activate" handler="cb_about_popup" swapped="no"/> | ||
| 171 | </object> | ||
| 172 | </child> | ||
| 173 | </object> | ||
| 174 | </child> | ||
| 175 | </object> | ||
| 176 | </child> | ||
| 177 | </object> | ||
| 178 | <packing> | ||
| 179 | <property name="expand">False</property> | ||
| 180 | <property name="fill">True</property> | ||
| 181 | <property name="position">0</property> | ||
| 182 | </packing> | ||
| 183 | </child> | ||
| 184 | <child> | ||
| 185 | <object class="GtkToolbar" id="Toolbar"> | ||
| 186 | <property name="visible">True</property> | ||
| 187 | <property name="can_focus">False</property> | ||
| 188 | <child> | ||
| 189 | <object class="GtkToolButton" id="add"> | ||
| 190 | <property name="visible">True</property> | ||
| 191 | <property name="can_focus">False</property> | ||
| 192 | <property name="label" translatable="yes">Add</property> | ||
| 193 | <property name="stock_id">gtk-add</property> | ||
| 194 | <signal name="clicked" handler="cb_add_files" swapped="no"/> | ||
| 195 | </object> | ||
| 196 | <packing> | ||
| 197 | <property name="expand">False</property> | ||
| 198 | <property name="homogeneous">True</property> | ||
| 199 | </packing> | ||
| 200 | </child> | ||
| 201 | <child> | ||
| 202 | <object class="GtkToolButton" id="clean"> | ||
| 203 | <property name="visible">True</property> | ||
| 204 | <property name="can_focus">False</property> | ||
| 205 | <property name="label" translatable="yes">Clean</property> | ||
| 206 | <property name="stock_id">gtk-clear</property> | ||
| 207 | <signal name="clicked" handler="cb_mat_clean" swapped="no"/> | ||
| 208 | </object> | ||
| 209 | <packing> | ||
| 210 | <property name="expand">False</property> | ||
| 211 | <property name="homogeneous">True</property> | ||
| 212 | </packing> | ||
| 213 | </child> | ||
| 214 | <child> | ||
| 215 | <object class="GtkToolButton" id="check"> | ||
| 216 | <property name="visible">True</property> | ||
| 217 | <property name="can_focus">False</property> | ||
| 218 | <property name="label" translatable="yes">Check</property> | ||
| 219 | <property name="stock_id">gtk-find</property> | ||
| 220 | <signal name="clicked" handler="cb_mat_check" swapped="no"/> | ||
| 221 | </object> | ||
| 222 | <packing> | ||
| 223 | <property name="expand">False</property> | ||
| 224 | <property name="homogeneous">True</property> | ||
| 225 | </packing> | ||
| 226 | </child> | ||
| 227 | <child> | ||
| 228 | <object class="GtkToolButton" id="clear"> | ||
| 229 | <property name="visible">True</property> | ||
| 230 | <property name="can_focus">False</property> | ||
| 231 | <property name="label" translatable="yes">Clear</property> | ||
| 232 | <property name="stock_id">gtk-remove</property> | ||
| 233 | <signal name="clicked" handler="cb_clear_list" swapped="no"/> | ||
| 234 | </object> | ||
| 235 | <packing> | ||
| 236 | <property name="expand">False</property> | ||
| 237 | <property name="homogeneous">True</property> | ||
| 238 | </packing> | ||
| 239 | </child> | ||
| 240 | <child> | ||
| 241 | <object class="GtkToolButton" id="quit"> | ||
| 242 | <property name="visible">True</property> | ||
| 243 | <property name="can_focus">False</property> | ||
| 244 | <property name="label" translatable="yes">Quit</property> | ||
| 245 | <property name="stock_id">gtk-quit</property> | ||
| 246 | <signal name="clicked" handler="cb_close_application" swapped="no"/> | ||
| 247 | </object> | ||
| 248 | <packing> | ||
| 249 | <property name="expand">False</property> | ||
| 250 | <property name="homogeneous">True</property> | ||
| 251 | </packing> | ||
| 252 | </child> | ||
| 253 | </object> | ||
| 254 | <packing> | ||
| 255 | <property name="expand">False</property> | ||
| 256 | <property name="fill">True</property> | ||
| 257 | <property name="position">1</property> | ||
| 258 | </packing> | ||
| 259 | </child> | ||
| 260 | <child> | ||
| 261 | <object class="GtkScrolledWindow" id="ScrolledWindow"> | ||
| 262 | <property name="visible">True</property> | ||
| 263 | <property name="can_focus">False</property> | ||
| 264 | <child> | ||
| 265 | <object class="GtkTreeView" id="Treeview"> | ||
| 266 | <property name="visible">True</property> | ||
| 267 | <property name="can_focus">False</property> | ||
| 268 | <property name="hexpand">True</property> | ||
| 269 | <property name="model">Liststore</property> | ||
| 270 | <property name="rules_hint">True</property> | ||
| 271 | <property name="search_column">2</property> | ||
| 272 | <property name="fixed_height_mode">True</property> | ||
| 273 | <property name="rubber_banding">True</property> | ||
| 274 | <signal name="drag-data-received" handler="cb_drag_data_received" swapped="no"/> | ||
| 275 | <signal name="row-activated" handler="cb_popup_metadata" swapped="no"/> | ||
| 276 | <signal name="key-press-event" handler="cb_treeview_keyboard_event" swapped="no"/> | ||
| 277 | <child internal-child="selection"> | ||
| 278 | <object class="GtkTreeSelection" id="treeview-selection1"> | ||
| 279 | <property name="mode">multiple</property> | ||
| 280 | </object> | ||
| 281 | </child> | ||
| 282 | <child> | ||
| 283 | <object class="GtkTreeViewColumn" id="tvc_path"> | ||
| 284 | <property name="resizable">True</property> | ||
| 285 | <property name="sizing">fixed</property> | ||
| 286 | <property name="title" translatable="yes">Path</property> | ||
| 287 | <property name="expand">True</property> | ||
| 288 | <property name="clickable">True</property> | ||
| 289 | <property name="sort_indicator">True</property> | ||
| 290 | <property name="sort_column_id">1</property> | ||
| 291 | <child> | ||
| 292 | <object class="GtkCellRendererText" id="cellrenderertext_path"/> | ||
| 293 | <attributes> | ||
| 294 | <attribute name="text">1</attribute> | ||
| 295 | </attributes> | ||
| 296 | </child> | ||
| 297 | </object> | ||
| 298 | </child> | ||
| 299 | <child> | ||
| 300 | <object class="GtkTreeViewColumn" id="tvc-filename"> | ||
| 301 | <property name="resizable">True</property> | ||
| 302 | <property name="sizing">fixed</property> | ||
| 303 | <property name="title" translatable="yes">Filename</property> | ||
| 304 | <property name="expand">True</property> | ||
| 305 | <property name="clickable">True</property> | ||
| 306 | <property name="sort_indicator">True</property> | ||
| 307 | <property name="sort_column_id">2</property> | ||
| 308 | <child> | ||
| 309 | <object class="GtkCellRendererText" id="cellrenderertext_filename"/> | ||
| 310 | <attributes> | ||
| 311 | <attribute name="text">2</attribute> | ||
| 312 | </attributes> | ||
| 313 | </child> | ||
| 314 | </object> | ||
| 315 | </child> | ||
| 316 | <child> | ||
| 317 | <object class="GtkTreeViewColumn" id="tvc_mimetype"> | ||
| 318 | <property name="resizable">True</property> | ||
| 319 | <property name="sizing">fixed</property> | ||
| 320 | <property name="title" translatable="yes">Mimetype</property> | ||
| 321 | <property name="expand">True</property> | ||
| 322 | <property name="clickable">True</property> | ||
| 323 | <property name="sort_indicator">True</property> | ||
| 324 | <property name="sort_column_id">3</property> | ||
| 325 | <child> | ||
| 326 | <object class="GtkCellRendererText" id="cellrenderertext_mimetype"/> | ||
| 327 | <attributes> | ||
| 328 | <attribute name="text">3</attribute> | ||
| 329 | </attributes> | ||
| 330 | </child> | ||
| 331 | </object> | ||
| 332 | </child> | ||
| 333 | <child> | ||
| 334 | <object class="GtkTreeViewColumn" id="tvc_state"> | ||
| 335 | <property name="resizable">True</property> | ||
| 336 | <property name="sizing">fixed</property> | ||
| 337 | <property name="title" translatable="yes">State</property> | ||
| 338 | <property name="expand">True</property> | ||
| 339 | <property name="clickable">True</property> | ||
| 340 | <property name="sort_indicator">True</property> | ||
| 341 | <property name="sort_column_id">4</property> | ||
| 342 | <child> | ||
| 343 | <object class="GtkCellRendererText" id="cellrenderertext_state"/> | ||
| 344 | <attributes> | ||
| 345 | <attribute name="text">4</attribute> | ||
| 346 | </attributes> | ||
| 347 | </child> | ||
| 348 | </object> | ||
| 349 | </child> | ||
| 350 | <child> | ||
| 351 | <object class="GtkTreeViewColumn" id="tvc_cleanedcopy"> | ||
| 352 | <property name="resizable">True</property> | ||
| 353 | <property name="sizing">fixed</property> | ||
| 354 | <property name="title" translatable="yes">Cleaned copy</property> | ||
| 355 | <property name="expand">True</property> | ||
| 356 | <property name="clickable">True</property> | ||
| 357 | <property name="sort_indicator">True</property> | ||
| 358 | <property name="sort_column_id">5</property> | ||
| 359 | <child> | ||
| 360 | <object class="GtkCellRendererText" id="cellrenderertext_cleanedcopy"/> | ||
| 361 | <attributes> | ||
| 362 | <attribute name="text">5</attribute> | ||
| 363 | </attributes> | ||
| 364 | </child> | ||
| 365 | </object> | ||
| 366 | </child> | ||
| 367 | </object> | ||
| 368 | </child> | ||
| 369 | </object> | ||
| 370 | <packing> | ||
| 371 | <property name="expand">True</property> | ||
| 372 | <property name="fill">True</property> | ||
| 373 | <property name="position">3</property> | ||
| 374 | </packing> | ||
| 375 | </child> | ||
| 376 | <child> | ||
| 377 | <object class="GtkStatusbar" id="Statusbar"> | ||
| 378 | <property name="visible">True</property> | ||
| 379 | <property name="can_focus">False</property> | ||
| 380 | </object> | ||
| 381 | <packing> | ||
| 382 | <property name="expand">False</property> | ||
| 383 | <property name="fill">True</property> | ||
| 384 | <property name="position">4</property> | ||
| 385 | </packing> | ||
| 386 | </child> | ||
| 387 | </object> | ||
| 388 | </child> | ||
| 389 | </object> | ||
| 390 | <object class="GtkDialog" id="SupportedWindow"> | ||
| 391 | <property name="can_focus">False</property> | ||
| 392 | <property name="title" translatable="yes">Supported formats</property> | ||
| 393 | <property name="resizable">False</property> | ||
| 394 | <property name="modal">True</property> | ||
| 395 | <property name="destroy_with_parent">True</property> | ||
| 396 | <property name="type_hint">dialog</property> | ||
| 397 | <property name="skip_taskbar_hint">True</property> | ||
| 398 | <property name="skip_pager_hint">True</property> | ||
| 399 | <property name="deletable">False</property> | ||
| 400 | <property name="has_resize_grip">False</property> | ||
| 401 | <child internal-child="vbox"> | ||
| 402 | <object class="GtkBox" id="supported_vbox"> | ||
| 403 | <property name="can_focus">False</property> | ||
| 404 | <property name="orientation">vertical</property> | ||
| 405 | <property name="spacing">10</property> | ||
| 406 | <child> | ||
| 407 | <object class="GtkGrid" id="supported_grid"> | ||
| 408 | <property name="visible">True</property> | ||
| 409 | <property name="can_focus">False</property> | ||
| 410 | <property name="halign">center</property> | ||
| 411 | <property name="valign">center</property> | ||
| 412 | <property name="hexpand">True</property> | ||
| 413 | <property name="vexpand">True</property> | ||
| 414 | <property name="row_spacing">5</property> | ||
| 415 | <property name="column_spacing">5</property> | ||
| 416 | <child> | ||
| 417 | <object class="GtkEntry" id="supported_support"> | ||
| 418 | <property name="visible">True</property> | ||
| 419 | <property name="can_focus">False</property> | ||
| 420 | <property name="editable">False</property> | ||
| 421 | <property name="has_frame">False</property> | ||
| 422 | <property name="invisible_char">●</property> | ||
| 423 | </object> | ||
| 424 | <packing> | ||
| 425 | <property name="left_attach">1</property> | ||
| 426 | <property name="top_attach">1</property> | ||
| 427 | <property name="width">1</property> | ||
| 428 | <property name="height">1</property> | ||
| 429 | </packing> | ||
| 430 | </child> | ||
| 431 | <child> | ||
| 432 | <object class="GtkLabel" id="supported_label_support"> | ||
| 433 | <property name="visible">True</property> | ||
| 434 | <property name="can_focus">False</property> | ||
| 435 | <property name="label" translatable="yes">Support</property> | ||
| 436 | </object> | ||
| 437 | <packing> | ||
| 438 | <property name="left_attach">0</property> | ||
| 439 | <property name="top_attach">1</property> | ||
| 440 | <property name="width">1</property> | ||
| 441 | <property name="height">1</property> | ||
| 442 | </packing> | ||
| 443 | </child> | ||
| 444 | <child> | ||
| 445 | <object class="GtkLabel" id="supported_label_metadata"> | ||
| 446 | <property name="visible">True</property> | ||
| 447 | <property name="can_focus">False</property> | ||
| 448 | <property name="label" translatable="yes">Metadata</property> | ||
| 449 | </object> | ||
| 450 | <packing> | ||
| 451 | <property name="left_attach">0</property> | ||
| 452 | <property name="top_attach">2</property> | ||
| 453 | <property name="width">1</property> | ||
| 454 | <property name="height">1</property> | ||
| 455 | </packing> | ||
| 456 | </child> | ||
| 457 | <child> | ||
| 458 | <object class="GtkLabel" id="supported_label_method"> | ||
| 459 | <property name="visible">True</property> | ||
| 460 | <property name="can_focus">False</property> | ||
| 461 | <property name="label" translatable="yes">Method</property> | ||
| 462 | </object> | ||
| 463 | <packing> | ||
| 464 | <property name="left_attach">0</property> | ||
| 465 | <property name="top_attach">3</property> | ||
| 466 | <property name="width">1</property> | ||
| 467 | <property name="height">1</property> | ||
| 468 | </packing> | ||
| 469 | </child> | ||
| 470 | <child> | ||
| 471 | <object class="GtkLabel" id="supported_label_remaining"> | ||
| 472 | <property name="visible">True</property> | ||
| 473 | <property name="can_focus">False</property> | ||
| 474 | <property name="label" translatable="yes">Remaining</property> | ||
| 475 | </object> | ||
| 476 | <packing> | ||
| 477 | <property name="left_attach">0</property> | ||
| 478 | <property name="top_attach">4</property> | ||
| 479 | <property name="width">1</property> | ||
| 480 | <property name="height">1</property> | ||
| 481 | </packing> | ||
| 482 | </child> | ||
| 483 | <child> | ||
| 484 | <object class="GtkComboBoxText" id="supported_cbox"> | ||
| 485 | <property name="visible">True</property> | ||
| 486 | <property name="can_focus">False</property> | ||
| 487 | <property name="hexpand">True</property> | ||
| 488 | <property name="border_width">5</property> | ||
| 489 | <property name="has_entry">True</property> | ||
| 490 | <property name="entry_text_column">1</property> | ||
| 491 | <property name="id_column">1</property> | ||
| 492 | <signal name="changed" handler="cb_update_supported_popup" swapped="no"/> | ||
| 493 | </object> | ||
| 494 | <packing> | ||
| 495 | <property name="left_attach">1</property> | ||
| 496 | <property name="top_attach">0</property> | ||
| 497 | <property name="width">1</property> | ||
| 498 | <property name="height">1</property> | ||
| 499 | </packing> | ||
| 500 | </child> | ||
| 501 | <child> | ||
| 502 | <object class="GtkLabel" id="supported_label_format"> | ||
| 503 | <property name="visible">True</property> | ||
| 504 | <property name="can_focus">False</property> | ||
| 505 | <property name="xpad">39</property> | ||
| 506 | <property name="label" translatable="yes">Fileformat</property> | ||
| 507 | </object> | ||
| 508 | <packing> | ||
| 509 | <property name="left_attach">0</property> | ||
| 510 | <property name="top_attach">0</property> | ||
| 511 | <property name="width">1</property> | ||
| 512 | <property name="height">1</property> | ||
| 513 | </packing> | ||
| 514 | </child> | ||
| 515 | <child> | ||
| 516 | <object class="GtkTextView" id="supported_metadata"> | ||
| 517 | <property name="visible">True</property> | ||
| 518 | <property name="can_focus">False</property> | ||
| 519 | <property name="hscroll_policy">natural</property> | ||
| 520 | <property name="editable">False</property> | ||
| 521 | <property name="wrap_mode">word</property> | ||
| 522 | </object> | ||
| 523 | <packing> | ||
| 524 | <property name="left_attach">1</property> | ||
| 525 | <property name="top_attach">2</property> | ||
| 526 | <property name="width">1</property> | ||
| 527 | <property name="height">1</property> | ||
| 528 | </packing> | ||
| 529 | </child> | ||
| 530 | <child> | ||
| 531 | <object class="GtkTextView" id="supported_remaining"> | ||
| 532 | <property name="visible">True</property> | ||
| 533 | <property name="can_focus">False</property> | ||
| 534 | <property name="wrap_mode">word</property> | ||
| 535 | </object> | ||
| 536 | <packing> | ||
| 537 | <property name="left_attach">1</property> | ||
| 538 | <property name="top_attach">4</property> | ||
| 539 | <property name="width">1</property> | ||
| 540 | <property name="height">1</property> | ||
| 541 | </packing> | ||
| 542 | </child> | ||
| 543 | <child> | ||
| 544 | <object class="GtkTextView" id="supported_method"> | ||
| 545 | <property name="visible">True</property> | ||
| 546 | <property name="can_focus">False</property> | ||
| 547 | <property name="wrap_mode">word</property> | ||
| 548 | </object> | ||
| 549 | <packing> | ||
| 550 | <property name="left_attach">1</property> | ||
| 551 | <property name="top_attach">3</property> | ||
| 552 | <property name="width">1</property> | ||
| 553 | <property name="height">1</property> | ||
| 554 | </packing> | ||
| 555 | </child> | ||
| 556 | </object> | ||
| 557 | <packing> | ||
| 558 | <property name="expand">False</property> | ||
| 559 | <property name="fill">True</property> | ||
| 560 | <property name="position">0</property> | ||
| 561 | </packing> | ||
| 562 | </child> | ||
| 563 | <child internal-child="action_area"> | ||
| 564 | <object class="GtkButtonBox" id="supported_action_area"> | ||
| 565 | <property name="can_focus">False</property> | ||
| 566 | <child> | ||
| 567 | <object class="GtkButton" id="supported_OK"> | ||
| 568 | <property name="label">gtk-ok</property> | ||
| 569 | <property name="visible">True</property> | ||
| 570 | <property name="can_focus">False</property> | ||
| 571 | <property name="receives_default">True</property> | ||
| 572 | <property name="use_stock">True</property> | ||
| 573 | </object> | ||
| 574 | <packing> | ||
| 575 | <property name="expand">False</property> | ||
| 576 | <property name="fill">True</property> | ||
| 577 | <property name="position">1</property> | ||
| 578 | </packing> | ||
| 579 | </child> | ||
| 580 | </object> | ||
| 581 | <packing> | ||
| 582 | <property name="expand">False</property> | ||
| 583 | <property name="fill">True</property> | ||
| 584 | <property name="pack_type">end</property> | ||
| 585 | <property name="position">1</property> | ||
| 586 | </packing> | ||
| 587 | </child> | ||
| 588 | </object> | ||
| 589 | </child> | ||
| 590 | <action-widgets> | ||
| 591 | <action-widget response="0">supported_OK</action-widget> | ||
| 592 | </action-widgets> | ||
| 593 | </object> | ||
| 594 | <object class="GtkImage" id="image1"> | ||
| 595 | <property name="visible">True</property> | ||
| 596 | <property name="can_focus">False</property> | ||
| 597 | <property name="xpad">1</property> | ||
| 598 | <property name="stock">gtk-remove</property> | ||
| 599 | </object> | ||
| 600 | <object class="GtkImage" id="image2"> | ||
| 601 | <property name="visible">True</property> | ||
| 602 | <property name="can_focus">False</property> | ||
| 603 | <property name="stock">gtk-properties</property> | ||
| 604 | </object> | ||
| 605 | <object class="GtkImage" id="image3"> | ||
| 606 | <property name="visible">True</property> | ||
| 607 | <property name="can_focus">False</property> | ||
| 608 | <property name="stock">gtk-clear</property> | ||
| 609 | </object> | ||
| 610 | <object class="GtkImage" id="image4"> | ||
| 611 | <property name="visible">True</property> | ||
| 612 | <property name="can_focus">False</property> | ||
| 613 | <property name="stock">gtk-find</property> | ||
| 614 | </object> | ||
| 615 | <object class="GtkImage" id="image5"> | ||
| 616 | <property name="visible">True</property> | ||
| 617 | <property name="can_focus">False</property> | ||
| 618 | <property name="stock">gtk-info</property> | ||
| 619 | </object> | ||
| 620 | <object class="GtkImage" id="image6"> | ||
| 621 | <property name="visible">True</property> | ||
| 622 | <property name="can_focus">False</property> | ||
| 623 | <property name="stock">gtk-about</property> | ||
| 624 | </object> | ||
| 625 | </interface> | ||
