tiler.glade 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. <?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
  2. <!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
  3. <glade-interface>
  4. <widget class="GtkWindow" id="MainWindow">
  5. <property name="visible">True</property>
  6. <property name="title" translatable="yes">Tile Manager</property>
  7. <property name="type">GTK_WINDOW_TOPLEVEL</property>
  8. <property name="window_position">GTK_WIN_POS_CENTER</property>
  9. <property name="modal">False</property>
  10. <property name="default_width">640</property>
  11. <property name="default_height">480</property>
  12. <property name="resizable">True</property>
  13. <property name="destroy_with_parent">False</property>
  14. <property name="decorated">True</property>
  15. <property name="skip_taskbar_hint">False</property>
  16. <property name="skip_pager_hint">False</property>
  17. <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
  18. <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
  19. <property name="focus_on_map">True</property>
  20. <property name="urgency_hint">False</property>
  21. <signal name="delete_event" handler="OnDeleteQuit" last_modification_time="Sun, 21 Nov 2004 12:26:12 GMT"/>
  22. <child>
  23. <widget class="GtkVBox" id="MainLayout">
  24. <property name="visible">True</property>
  25. <property name="homogeneous">False</property>
  26. <property name="spacing">0</property>
  27. <child>
  28. <widget class="GtkMenuBar" id="menubar1">
  29. <property name="visible">True</property>
  30. <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
  31. <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
  32. <child>
  33. <widget class="GtkMenuItem" id="menuitem1">
  34. <property name="visible">True</property>
  35. <property name="label" translatable="yes">_Datei</property>
  36. <property name="use_underline">True</property>
  37. <child>
  38. <widget class="GtkMenu" id="menuitem1_menu">
  39. <child>
  40. <widget class="GtkImageMenuItem" id="open">
  41. <property name="visible">True</property>
  42. <property name="label">gtk-open</property>
  43. <property name="use_stock">True</property>
  44. <signal name="activate" handler="OnOpen" last_modification_time="Sun, 21 Nov 2004 12:08:44 GMT"/>
  45. </widget>
  46. </child>
  47. <child>
  48. <widget class="GtkImageMenuItem" id="save">
  49. <property name="visible">True</property>
  50. <property name="label">gtk-save</property>
  51. <property name="use_stock">True</property>
  52. <signal name="activate" handler="OnSave" last_modification_time="Sun, 21 Nov 2004 14:26:54 GMT"/>
  53. </widget>
  54. </child>
  55. <child>
  56. <widget class="GtkSeparatorMenuItem" id="separatormenuitem1">
  57. <property name="visible">True</property>
  58. </widget>
  59. </child>
  60. <child>
  61. <widget class="GtkImageMenuItem" id="beenden1">
  62. <property name="visible">True</property>
  63. <property name="label">gtk-quit</property>
  64. <property name="use_stock">True</property>
  65. <signal name="activate" handler="OnQuit" last_modification_time="Sun, 21 Nov 2004 12:21:15 GMT"/>
  66. </widget>
  67. </child>
  68. </widget>
  69. </child>
  70. </widget>
  71. </child>
  72. <child>
  73. <widget class="GtkMenuItem" id="edit1">
  74. <property name="visible">True</property>
  75. <property name="label" translatable="yes">Edit</property>
  76. <property name="use_underline">True</property>
  77. <child>
  78. <widget class="GtkMenu" id="edit1_menu">
  79. <child>
  80. <widget class="GtkMenuItem" id="import_image1">
  81. <property name="visible">True</property>
  82. <property name="label" translatable="yes">Import Image</property>
  83. <property name="use_underline">True</property>
  84. <signal name="activate" handler="OnImportImage" last_modification_time="Sun, 21 Nov 2004 22:13:54 GMT"/>
  85. <accelerator key="I" modifiers="GDK_CONTROL_MASK" signal="activate"/>
  86. </widget>
  87. </child>
  88. <child>
  89. <widget class="GtkMenuItem" id="remap_tiles1">
  90. <property name="visible">True</property>
  91. <property name="label" translatable="yes">Remap Selected Tile(s)</property>
  92. <property name="use_underline">True</property>
  93. <signal name="activate" handler="OnRemapTiles" last_modification_time="Sun, 21 Nov 2004 15:18:43 GMT"/>
  94. <accelerator key="R" modifiers="GDK_CONTROL_MASK" signal="activate"/>
  95. </widget>
  96. </child>
  97. <child>
  98. <widget class="GtkSeparatorMenuItem" id="separator1">
  99. <property name="visible">True</property>
  100. </widget>
  101. </child>
  102. <child>
  103. <widget class="GtkMenuItem" id="create_tilegroup1">
  104. <property name="visible">True</property>
  105. <property name="label" translatable="yes">Create TileGroup</property>
  106. <property name="use_underline">True</property>
  107. <signal name="activate" handler="OnCreateTileGroup" last_modification_time="Mon, 22 Nov 2004 00:20:28 GMT"/>
  108. <accelerator key="C" modifiers="GDK_CONTROL_MASK | GDK_SHIFT_MASK" signal="activate"/>
  109. </widget>
  110. </child>
  111. <child>
  112. <widget class="GtkMenuItem" id="item2">
  113. <property name="visible">True</property>
  114. <property name="label" translatable="yes">Rename TileGroup</property>
  115. <property name="use_underline">True</property>
  116. <signal name="activate" handler="OnRenameTileGroup" last_modification_time="Mon, 22 Nov 2004 00:21:52 GMT"/>
  117. <accelerator key="R" modifiers="GDK_CONTROL_MASK | GDK_SHIFT_MASK" signal="activate"/>
  118. </widget>
  119. </child>
  120. <child>
  121. <widget class="GtkMenuItem" id="AddTileGroupMenu">
  122. <property name="visible">True</property>
  123. <property name="label" translatable="yes">Add Tiles To Group</property>
  124. <property name="use_underline">True</property>
  125. </widget>
  126. </child>
  127. <child>
  128. <widget class="GtkSeparatorMenuItem" id="separator2">
  129. <property name="visible">True</property>
  130. </widget>
  131. </child>
  132. <child>
  133. <widget class="GtkCheckMenuItem" id="useNewSyntax">
  134. <property name="visible">True</property>
  135. <property name="label" translatable="yes">Use 0.3.x syntax</property>
  136. <property name="use_underline">True</property>
  137. <property name="active">False</property>
  138. </widget>
  139. </child>
  140. </widget>
  141. </child>
  142. </widget>
  143. </child>
  144. <child>
  145. <widget class="GtkMenuItem" id="menuitem4">
  146. <property name="visible">True</property>
  147. <property name="label" translatable="yes">Help</property>
  148. <property name="use_underline">True</property>
  149. <child>
  150. <widget class="GtkMenu" id="menuitem4_menu">
  151. <child>
  152. <widget class="GtkImageMenuItem" id="info1">
  153. <property name="visible">True</property>
  154. <property name="label">gtk-dialog-info</property>
  155. <property name="use_stock">True</property>
  156. <signal name="activate" handler="OnAbout" last_modification_time="Sun, 21 Nov 2004 12:08:44 GMT"/>
  157. </widget>
  158. </child>
  159. </widget>
  160. </child>
  161. </widget>
  162. </child>
  163. </widget>
  164. <packing>
  165. <property name="padding">0</property>
  166. <property name="expand">False</property>
  167. <property name="fill">False</property>
  168. </packing>
  169. </child>
  170. <child>
  171. <widget class="GtkHPaned" id="hpaned1">
  172. <property name="visible">True</property>
  173. <property name="can_focus">True</property>
  174. <property name="position">180</property>
  175. <child>
  176. <widget class="GtkVBox" id="vbox3">
  177. <property name="visible">True</property>
  178. <property name="homogeneous">False</property>
  179. <property name="spacing">0</property>
  180. <child>
  181. <widget class="GtkScrolledWindow" id="scrolledwindow1">
  182. <property name="visible">True</property>
  183. <property name="can_focus">True</property>
  184. <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
  185. <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
  186. <property name="shadow_type">GTK_SHADOW_NONE</property>
  187. <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
  188. <child>
  189. <widget class="GtkTreeView" id="TileList">
  190. <property name="visible">True</property>
  191. <property name="can_focus">True</property>
  192. <property name="headers_visible">True</property>
  193. <property name="rules_hint">False</property>
  194. <property name="reorderable">False</property>
  195. <property name="enable_search">True</property>
  196. <property name="fixed_height_mode">False</property>
  197. <property name="hover_selection">False</property>
  198. <property name="hover_expand">False</property>
  199. <signal name="cursor-changed" handler="OnTileListCursorChanged"/>
  200. </widget>
  201. </child>
  202. </widget>
  203. <packing>
  204. <property name="padding">0</property>
  205. <property name="expand">True</property>
  206. <property name="fill">True</property>
  207. </packing>
  208. </child>
  209. <child>
  210. <widget class="GtkCombo" id="TileGroupComboBox">
  211. <property name="visible">True</property>
  212. <property name="value_in_list">False</property>
  213. <property name="allow_empty">True</property>
  214. <property name="case_sensitive">False</property>
  215. <property name="enable_arrow_keys">True</property>
  216. <property name="enable_arrows_always">False</property>
  217. <child internal-child="entry">
  218. <widget class="GtkEntry" id="entry1">
  219. <property name="visible">True</property>
  220. <property name="can_focus">True</property>
  221. <property name="editable">True</property>
  222. <property name="visibility">True</property>
  223. <property name="max_length">0</property>
  224. <property name="text" translatable="yes"></property>
  225. <property name="has_frame">True</property>
  226. <property name="invisible_char">*</property>
  227. <property name="activates_default">False</property>
  228. <signal name="activated" handler="OnTileGroupComboBoxEntryActivated"/>
  229. <signal name="changed" handler="OnTileGroupComboBoxEntryActivated"/>
  230. </widget>
  231. </child>
  232. <child internal-child="list">
  233. <widget class="GtkList" id="list1">
  234. <property name="visible">True</property>
  235. <property name="selection_mode">GTK_SELECTION_BROWSE</property>
  236. </widget>
  237. </child>
  238. </widget>
  239. <packing>
  240. <property name="padding">0</property>
  241. <property name="expand">False</property>
  242. <property name="fill">True</property>
  243. </packing>
  244. </child>
  245. </widget>
  246. <packing>
  247. <property name="shrink">True</property>
  248. <property name="resize">False</property>
  249. </packing>
  250. </child>
  251. <child>
  252. <widget class="GtkVBox" id="vbox2">
  253. <property name="visible">True</property>
  254. <property name="homogeneous">False</property>
  255. <property name="spacing">0</property>
  256. <child>
  257. <widget class="GtkDrawingArea" id="DrawingArea">
  258. <property name="visible">True</property>
  259. <signal name="expose_event" handler="OnDrawingAreaExpose" last_modification_time="Sun, 21 Nov 2004 13:01:22 GMT"/>
  260. <signal name="button_press_event" handler="OnDrawingAreaButtonPress" last_modification_time="Sun, 21 Nov 2004 13:18:28 GMT"/>
  261. <signal name="motion_notify_event" handler="OnDrawingAreaMotionNotify" last_modification_time="Sun, 21 Nov 2004 13:18:45 GMT"/>
  262. </widget>
  263. <packing>
  264. <property name="padding">0</property>
  265. <property name="expand">True</property>
  266. <property name="fill">True</property>
  267. </packing>
  268. </child>
  269. <child>
  270. <widget class="GtkLabel" id="label2">
  271. <property name="visible">True</property>
  272. <property name="label" translatable="yes">Flags:</property>
  273. <property name="use_underline">False</property>
  274. <property name="use_markup">False</property>
  275. <property name="justify">GTK_JUSTIFY_LEFT</property>
  276. <property name="wrap">False</property>
  277. <property name="selectable">False</property>
  278. <property name="xalign">0.5</property>
  279. <property name="yalign">0.5</property>
  280. <property name="xpad">0</property>
  281. <property name="ypad">0</property>
  282. <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
  283. <property name="width_chars">-1</property>
  284. <property name="single_line_mode">False</property>
  285. <property name="angle">0</property>
  286. </widget>
  287. <packing>
  288. <property name="padding">6</property>
  289. <property name="expand">False</property>
  290. <property name="fill">True</property>
  291. </packing>
  292. </child>
  293. <child>
  294. <widget class="GtkTable" id="table1">
  295. <property name="border_width">6</property>
  296. <property name="visible">True</property>
  297. <property name="n_rows">9</property>
  298. <property name="n_columns">3</property>
  299. <property name="homogeneous">False</property>
  300. <property name="row_spacing">6</property>
  301. <property name="column_spacing">6</property>
  302. <child>
  303. <widget class="GtkCheckButton" id="SolidCheckButton">
  304. <property name="visible">True</property>
  305. <property name="can_focus">True</property>
  306. <property name="label" translatable="yes">Solid</property>
  307. <property name="use_underline">True</property>
  308. <property name="relief">GTK_RELIEF_NORMAL</property>
  309. <property name="focus_on_click">True</property>
  310. <property name="active">False</property>
  311. <property name="inconsistent">False</property>
  312. <property name="draw_indicator">True</property>
  313. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 13:41:46 GMT"/>
  314. </widget>
  315. <packing>
  316. <property name="left_attach">0</property>
  317. <property name="right_attach">1</property>
  318. <property name="top_attach">0</property>
  319. <property name="bottom_attach">1</property>
  320. <property name="x_options">fill</property>
  321. <property name="y_options"></property>
  322. </packing>
  323. </child>
  324. <child>
  325. <widget class="GtkCheckButton" id="UniSolidCheckButton">
  326. <property name="visible">True</property>
  327. <property name="can_focus">True</property>
  328. <property name="label" translatable="yes">UniSolid</property>
  329. <property name="use_underline">True</property>
  330. <property name="relief">GTK_RELIEF_NORMAL</property>
  331. <property name="focus_on_click">True</property>
  332. <property name="active">False</property>
  333. <property name="inconsistent">False</property>
  334. <property name="draw_indicator">True</property>
  335. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 13:42:00 GMT"/>
  336. </widget>
  337. <packing>
  338. <property name="left_attach">1</property>
  339. <property name="right_attach">2</property>
  340. <property name="top_attach">0</property>
  341. <property name="bottom_attach">1</property>
  342. <property name="x_options">fill</property>
  343. <property name="y_options"></property>
  344. </packing>
  345. </child>
  346. <child>
  347. <widget class="GtkCheckButton" id="IceCheckButton">
  348. <property name="visible">True</property>
  349. <property name="can_focus">True</property>
  350. <property name="label" translatable="yes">Ice</property>
  351. <property name="use_underline">True</property>
  352. <property name="relief">GTK_RELIEF_NORMAL</property>
  353. <property name="focus_on_click">True</property>
  354. <property name="active">False</property>
  355. <property name="inconsistent">False</property>
  356. <property name="draw_indicator">True</property>
  357. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 13:42:08 GMT"/>
  358. </widget>
  359. <packing>
  360. <property name="left_attach">0</property>
  361. <property name="right_attach">1</property>
  362. <property name="top_attach">1</property>
  363. <property name="bottom_attach">2</property>
  364. <property name="x_options">fill</property>
  365. <property name="y_options"></property>
  366. </packing>
  367. </child>
  368. <child>
  369. <widget class="GtkCheckButton" id="WaterCheckButton">
  370. <property name="visible">True</property>
  371. <property name="can_focus">True</property>
  372. <property name="label" translatable="yes">Water</property>
  373. <property name="use_underline">True</property>
  374. <property name="relief">GTK_RELIEF_NORMAL</property>
  375. <property name="focus_on_click">True</property>
  376. <property name="active">False</property>
  377. <property name="inconsistent">False</property>
  378. <property name="draw_indicator">True</property>
  379. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 13:42:17 GMT"/>
  380. </widget>
  381. <packing>
  382. <property name="left_attach">1</property>
  383. <property name="right_attach">2</property>
  384. <property name="top_attach">1</property>
  385. <property name="bottom_attach">2</property>
  386. <property name="x_options">fill</property>
  387. <property name="y_options"></property>
  388. </packing>
  389. </child>
  390. <child>
  391. <widget class="GtkLabel" id="label3">
  392. <property name="visible">True</property>
  393. <property name="label" translatable="yes">Data:</property>
  394. <property name="use_underline">False</property>
  395. <property name="use_markup">False</property>
  396. <property name="justify">GTK_JUSTIFY_LEFT</property>
  397. <property name="wrap">False</property>
  398. <property name="selectable">False</property>
  399. <property name="xalign">0</property>
  400. <property name="yalign">0.5</property>
  401. <property name="xpad">0</property>
  402. <property name="ypad">0</property>
  403. <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
  404. <property name="width_chars">-1</property>
  405. <property name="single_line_mode">False</property>
  406. <property name="angle">0</property>
  407. </widget>
  408. <packing>
  409. <property name="left_attach">0</property>
  410. <property name="right_attach">1</property>
  411. <property name="top_attach">6</property>
  412. <property name="bottom_attach">7</property>
  413. <property name="x_options">fill</property>
  414. <property name="y_options"></property>
  415. </packing>
  416. </child>
  417. <child>
  418. <widget class="GtkEntry" id="DataEntry">
  419. <property name="visible">True</property>
  420. <property name="can_focus">True</property>
  421. <property name="editable">True</property>
  422. <property name="visibility">True</property>
  423. <property name="max_length">0</property>
  424. <property name="text" translatable="yes"></property>
  425. <property name="has_frame">True</property>
  426. <property name="invisible_char">*</property>
  427. <property name="activates_default">False</property>
  428. <signal name="changed" handler="OnEntryChanged" last_modification_time="Sun, 21 Nov 2004 13:42:39 GMT"/>
  429. </widget>
  430. <packing>
  431. <property name="left_attach">1</property>
  432. <property name="right_attach">2</property>
  433. <property name="top_attach">6</property>
  434. <property name="bottom_attach">7</property>
  435. <property name="y_options"></property>
  436. </packing>
  437. </child>
  438. <child>
  439. <widget class="GtkLabel" id="label4">
  440. <property name="visible">True</property>
  441. <property name="label" translatable="yes">AnimFPS:</property>
  442. <property name="use_underline">False</property>
  443. <property name="use_markup">False</property>
  444. <property name="justify">GTK_JUSTIFY_LEFT</property>
  445. <property name="wrap">False</property>
  446. <property name="selectable">False</property>
  447. <property name="xalign">0</property>
  448. <property name="yalign">0.5</property>
  449. <property name="xpad">0</property>
  450. <property name="ypad">0</property>
  451. <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
  452. <property name="width_chars">-1</property>
  453. <property name="single_line_mode">False</property>
  454. <property name="angle">0</property>
  455. </widget>
  456. <packing>
  457. <property name="left_attach">0</property>
  458. <property name="right_attach">1</property>
  459. <property name="top_attach">7</property>
  460. <property name="bottom_attach">8</property>
  461. <property name="x_options">fill</property>
  462. <property name="y_options"></property>
  463. </packing>
  464. </child>
  465. <child>
  466. <widget class="GtkEntry" id="AnimFpsEntry">
  467. <property name="visible">True</property>
  468. <property name="can_focus">True</property>
  469. <property name="editable">True</property>
  470. <property name="visibility">True</property>
  471. <property name="max_length">0</property>
  472. <property name="text" translatable="yes"></property>
  473. <property name="has_frame">True</property>
  474. <property name="invisible_char">*</property>
  475. <property name="activates_default">False</property>
  476. <signal name="changed" handler="OnEntryChanged" last_modification_time="Sun, 21 Nov 2004 13:42:48 GMT"/>
  477. </widget>
  478. <packing>
  479. <property name="left_attach">1</property>
  480. <property name="right_attach">2</property>
  481. <property name="top_attach">7</property>
  482. <property name="bottom_attach">8</property>
  483. <property name="y_options"></property>
  484. </packing>
  485. </child>
  486. <child>
  487. <widget class="GtkLabel" id="label5">
  488. <property name="visible">True</property>
  489. <property name="label" translatable="yes">ID</property>
  490. <property name="use_underline">False</property>
  491. <property name="use_markup">False</property>
  492. <property name="justify">GTK_JUSTIFY_LEFT</property>
  493. <property name="wrap">False</property>
  494. <property name="selectable">False</property>
  495. <property name="xalign">0</property>
  496. <property name="yalign">0.5</property>
  497. <property name="xpad">0</property>
  498. <property name="ypad">0</property>
  499. <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
  500. <property name="width_chars">-1</property>
  501. <property name="single_line_mode">False</property>
  502. <property name="angle">0</property>
  503. </widget>
  504. <packing>
  505. <property name="left_attach">0</property>
  506. <property name="right_attach">1</property>
  507. <property name="top_attach">8</property>
  508. <property name="bottom_attach">9</property>
  509. <property name="x_options">fill</property>
  510. <property name="y_options"></property>
  511. </packing>
  512. </child>
  513. <child>
  514. <widget class="GtkEntry" id="IDEntry">
  515. <property name="visible">True</property>
  516. <property name="can_focus">True</property>
  517. <property name="editable">True</property>
  518. <property name="visibility">True</property>
  519. <property name="max_length">0</property>
  520. <property name="text" translatable="yes"></property>
  521. <property name="has_frame">True</property>
  522. <property name="invisible_char">*</property>
  523. <property name="activates_default">False</property>
  524. <signal name="changed" handler="OnEntryChanged" last_modification_time="Sun, 21 Nov 2004 13:42:57 GMT"/>
  525. </widget>
  526. <packing>
  527. <property name="left_attach">1</property>
  528. <property name="right_attach">2</property>
  529. <property name="top_attach">8</property>
  530. <property name="bottom_attach">9</property>
  531. <property name="y_options"></property>
  532. </packing>
  533. </child>
  534. <child>
  535. <widget class="GtkCheckButton" id="HiddenCheckButton">
  536. <property name="visible">True</property>
  537. <property name="can_focus">True</property>
  538. <property name="label" translatable="yes">Hidden</property>
  539. <property name="use_underline">True</property>
  540. <property name="relief">GTK_RELIEF_NORMAL</property>
  541. <property name="focus_on_click">True</property>
  542. <property name="active">False</property>
  543. <property name="inconsistent">False</property>
  544. <property name="draw_indicator">True</property>
  545. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 13:42:00 GMT"/>
  546. </widget>
  547. <packing>
  548. <property name="left_attach">2</property>
  549. <property name="right_attach">3</property>
  550. <property name="top_attach">0</property>
  551. <property name="bottom_attach">1</property>
  552. <property name="x_options">fill</property>
  553. <property name="y_options"></property>
  554. </packing>
  555. </child>
  556. <child>
  557. <widget class="GtkCheckButton" id="FullBoxCheckButton">
  558. <property name="visible">True</property>
  559. <property name="can_focus">True</property>
  560. <property name="label" translatable="yes">FullBox</property>
  561. <property name="use_underline">True</property>
  562. <property name="relief">GTK_RELIEF_NORMAL</property>
  563. <property name="focus_on_click">True</property>
  564. <property name="active">False</property>
  565. <property name="inconsistent">False</property>
  566. <property name="draw_indicator">True</property>
  567. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Mon, 27 Oct 2008 18:08:17 GMT"/>
  568. </widget>
  569. <packing>
  570. <property name="left_attach">0</property>
  571. <property name="right_attach">1</property>
  572. <property name="top_attach">4</property>
  573. <property name="bottom_attach">5</property>
  574. <property name="x_options">fill</property>
  575. <property name="y_options"></property>
  576. </packing>
  577. </child>
  578. <child>
  579. <widget class="GtkCheckButton" id="DontUseCheckButton">
  580. <property name="visible">True</property>
  581. <property name="can_focus">True</property>
  582. <property name="label" translatable="yes">Don't Use</property>
  583. <property name="use_underline">True</property>
  584. <property name="relief">GTK_RELIEF_NORMAL</property>
  585. <property name="focus_on_click">True</property>
  586. <property name="active">False</property>
  587. <property name="inconsistent">False</property>
  588. <property name="draw_indicator">True</property>
  589. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 15:16:11 GMT"/>
  590. </widget>
  591. <packing>
  592. <property name="left_attach">1</property>
  593. <property name="right_attach">2</property>
  594. <property name="top_attach">5</property>
  595. <property name="bottom_attach">6</property>
  596. <property name="x_options">fill</property>
  597. <property name="y_options"></property>
  598. </packing>
  599. </child>
  600. <child>
  601. <widget class="GtkCheckButton" id="HurtsCheckButton">
  602. <property name="visible">True</property>
  603. <property name="can_focus">True</property>
  604. <property name="label" translatable="yes">Hurts</property>
  605. <property name="use_underline">True</property>
  606. <property name="relief">GTK_RELIEF_NORMAL</property>
  607. <property name="focus_on_click">True</property>
  608. <property name="active">False</property>
  609. <property name="inconsistent">False</property>
  610. <property name="draw_indicator">True</property>
  611. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Mon, 27 Oct 2008 18:06:12 GMT"/>
  612. </widget>
  613. <packing>
  614. <property name="left_attach">0</property>
  615. <property name="right_attach">1</property>
  616. <property name="top_attach">2</property>
  617. <property name="bottom_attach">3</property>
  618. <property name="x_options">fill</property>
  619. <property name="y_options"></property>
  620. </packing>
  621. </child>
  622. <child>
  623. <widget class="GtkCheckButton" id="BrickCheckButton">
  624. <property name="visible">True</property>
  625. <property name="can_focus">True</property>
  626. <property name="label" translatable="yes">Brick</property>
  627. <property name="use_underline">True</property>
  628. <property name="relief">GTK_RELIEF_NORMAL</property>
  629. <property name="focus_on_click">True</property>
  630. <property name="active">False</property>
  631. <property name="inconsistent">False</property>
  632. <property name="draw_indicator">True</property>
  633. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Mon, 27 Oct 2008 18:08:06 GMT"/>
  634. </widget>
  635. <packing>
  636. <property name="left_attach">0</property>
  637. <property name="right_attach">1</property>
  638. <property name="top_attach">3</property>
  639. <property name="bottom_attach">4</property>
  640. <property name="x_options">fill</property>
  641. <property name="y_options"></property>
  642. </packing>
  643. </child>
  644. <child>
  645. <widget class="GtkCheckButton" id="FireCheckButton">
  646. <property name="visible">True</property>
  647. <property name="can_focus">True</property>
  648. <property name="label" translatable="yes">Fire</property>
  649. <property name="use_underline">True</property>
  650. <property name="relief">GTK_RELIEF_NORMAL</property>
  651. <property name="focus_on_click">True</property>
  652. <property name="active">False</property>
  653. <property name="inconsistent">False</property>
  654. <property name="draw_indicator">True</property>
  655. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Mon, 27 Oct 2008 18:09:23 GMT"/>
  656. </widget>
  657. <packing>
  658. <property name="left_attach">1</property>
  659. <property name="right_attach">2</property>
  660. <property name="top_attach">2</property>
  661. <property name="bottom_attach">3</property>
  662. <property name="x_options">fill</property>
  663. <property name="y_options"></property>
  664. </packing>
  665. </child>
  666. <child>
  667. <widget class="GtkCheckButton" id="SlopeCheckButton">
  668. <property name="visible">True</property>
  669. <property name="can_focus">True</property>
  670. <property name="label" translatable="yes">Slope</property>
  671. <property name="use_underline">True</property>
  672. <property name="relief">GTK_RELIEF_NORMAL</property>
  673. <property name="focus_on_click">True</property>
  674. <property name="active">False</property>
  675. <property name="inconsistent">False</property>
  676. <property name="draw_indicator">True</property>
  677. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Sun, 21 Nov 2004 13:42:25 GMT"/>
  678. </widget>
  679. <packing>
  680. <property name="left_attach">1</property>
  681. <property name="right_attach">2</property>
  682. <property name="top_attach">4</property>
  683. <property name="bottom_attach">5</property>
  684. <property name="x_options">fill</property>
  685. <property name="y_options"></property>
  686. </packing>
  687. </child>
  688. <child>
  689. <widget class="GtkCheckButton" id="GoalCheckButton">
  690. <property name="visible">True</property>
  691. <property name="can_focus">True</property>
  692. <property name="label" translatable="yes">Goal</property>
  693. <property name="use_underline">True</property>
  694. <property name="relief">GTK_RELIEF_NORMAL</property>
  695. <property name="focus_on_click">True</property>
  696. <property name="active">False</property>
  697. <property name="inconsistent">False</property>
  698. <property name="draw_indicator">True</property>
  699. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Mon, 27 Oct 2008 18:11:43 GMT"/>
  700. </widget>
  701. <packing>
  702. <property name="left_attach">0</property>
  703. <property name="right_attach">1</property>
  704. <property name="top_attach">5</property>
  705. <property name="bottom_attach">6</property>
  706. <property name="x_options">fill</property>
  707. <property name="y_options"></property>
  708. </packing>
  709. </child>
  710. <child>
  711. <widget class="GtkCheckButton" id="CoinCheckButton">
  712. <property name="visible">True</property>
  713. <property name="can_focus">True</property>
  714. <property name="label" translatable="yes">Coin</property>
  715. <property name="use_underline">True</property>
  716. <property name="relief">GTK_RELIEF_NORMAL</property>
  717. <property name="focus_on_click">True</property>
  718. <property name="active">False</property>
  719. <property name="inconsistent">False</property>
  720. <property name="draw_indicator">True</property>
  721. <signal name="toggled" handler="OnCheckButtonToggled" last_modification_time="Mon, 27 Oct 2008 18:13:13 GMT"/>
  722. </widget>
  723. <packing>
  724. <property name="left_attach">1</property>
  725. <property name="right_attach">2</property>
  726. <property name="top_attach">3</property>
  727. <property name="bottom_attach">4</property>
  728. <property name="x_options">fill</property>
  729. <property name="y_options"></property>
  730. </packing>
  731. </child>
  732. </widget>
  733. <packing>
  734. <property name="padding">0</property>
  735. <property name="expand">True</property>
  736. <property name="fill">True</property>
  737. </packing>
  738. </child>
  739. </widget>
  740. <packing>
  741. <property name="shrink">True</property>
  742. <property name="resize">True</property>
  743. </packing>
  744. </child>
  745. </widget>
  746. <packing>
  747. <property name="padding">0</property>
  748. <property name="expand">True</property>
  749. <property name="fill">True</property>
  750. </packing>
  751. </child>
  752. </widget>
  753. </child>
  754. </widget>
  755. <widget class="GtkDialog" id="RemapDialog">
  756. <property name="border_width">5</property>
  757. <property name="title" translatable="yes">Tile Manager - Question</property>
  758. <property name="type">GTK_WINDOW_TOPLEVEL</property>
  759. <property name="window_position">GTK_WIN_POS_NONE</property>
  760. <property name="modal">True</property>
  761. <property name="resizable">False</property>
  762. <property name="destroy_with_parent">False</property>
  763. <property name="decorated">True</property>
  764. <property name="skip_taskbar_hint">False</property>
  765. <property name="skip_pager_hint">False</property>
  766. <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
  767. <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
  768. <property name="focus_on_map">True</property>
  769. <property name="urgency_hint">False</property>
  770. <property name="has_separator">False</property>
  771. <child internal-child="vbox">
  772. <widget class="GtkVBox" id="vbox4">
  773. <property name="visible">True</property>
  774. <property name="homogeneous">False</property>
  775. <property name="spacing">0</property>
  776. <child internal-child="action_area">
  777. <widget class="GtkHButtonBox" id="hbuttonbox1">
  778. <property name="visible">True</property>
  779. <property name="layout_style">GTK_BUTTONBOX_END</property>
  780. <child>
  781. <widget class="GtkButton" id="RD_buttonApply">
  782. <property name="visible">True</property>
  783. <property name="can_default">True</property>
  784. <property name="can_focus">True</property>
  785. <property name="label">gtk-apply</property>
  786. <property name="use_stock">True</property>
  787. <property name="relief">GTK_RELIEF_NORMAL</property>
  788. <property name="focus_on_click">True</property>
  789. <property name="response_id">-10</property>
  790. <signal name="pressed" handler="OnRemapDialogApply" last_modification_time="Fri, 24 Oct 2008 16:47:51 GMT"/>
  791. </widget>
  792. </child>
  793. <child>
  794. <widget class="GtkButton" id="RD_buttonCancel">
  795. <property name="visible">True</property>
  796. <property name="can_default">True</property>
  797. <property name="can_focus">True</property>
  798. <property name="label">gtk-cancel</property>
  799. <property name="use_stock">True</property>
  800. <property name="relief">GTK_RELIEF_NORMAL</property>
  801. <property name="focus_on_click">True</property>
  802. <property name="response_id">-6</property>
  803. <signal name="pressed" handler="OnRemapDialogCancel" last_modification_time="Fri, 24 Oct 2008 16:46:46 GMT"/>
  804. </widget>
  805. </child>
  806. </widget>
  807. <packing>
  808. <property name="padding">0</property>
  809. <property name="expand">False</property>
  810. <property name="fill">True</property>
  811. <property name="pack_type">GTK_PACK_END</property>
  812. </packing>
  813. </child>
  814. <child>
  815. <widget class="GtkHBox" id="hbox2">
  816. <property name="visible">True</property>
  817. <property name="homogeneous">False</property>
  818. <property name="spacing">0</property>
  819. <child>
  820. <widget class="GtkHBox" id="hbox3">
  821. <property name="visible">True</property>
  822. <property name="homogeneous">False</property>
  823. <property name="spacing">0</property>
  824. <child>
  825. <widget class="GtkLabel" id="RD_label">
  826. <property name="visible">True</property>
  827. <property name="label" translatable="yes">Start-ID: </property>
  828. <property name="use_underline">False</property>
  829. <property name="use_markup">False</property>
  830. <property name="justify">GTK_JUSTIFY_LEFT</property>
  831. <property name="wrap">False</property>
  832. <property name="selectable">False</property>
  833. <property name="xalign">0.5</property>
  834. <property name="yalign">0.5</property>
  835. <property name="xpad">0</property>
  836. <property name="ypad">0</property>
  837. <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
  838. <property name="width_chars">-1</property>
  839. <property name="single_line_mode">False</property>
  840. <property name="angle">0</property>
  841. </widget>
  842. <packing>
  843. <property name="padding">0</property>
  844. <property name="expand">False</property>
  845. <property name="fill">False</property>
  846. </packing>
  847. </child>
  848. <child>
  849. <widget class="GtkSpinButton" id="RD_spinButton">
  850. <property name="width_request">120</property>
  851. <property name="visible">True</property>
  852. <property name="can_focus">True</property>
  853. <property name="climb_rate">1</property>
  854. <property name="digits">0</property>
  855. <property name="numeric">True</property>
  856. <property name="update_policy">GTK_UPDATE_ALWAYS</property>
  857. <property name="snap_to_ticks">False</property>
  858. <property name="wrap">False</property>
  859. <property name="adjustment">1 1 65535 1 10 10</property>
  860. </widget>
  861. <packing>
  862. <property name="padding">5</property>
  863. <property name="expand">True</property>
  864. <property name="fill">True</property>
  865. </packing>
  866. </child>
  867. </widget>
  868. <packing>
  869. <property name="padding">0</property>
  870. <property name="expand">False</property>
  871. <property name="fill">False</property>
  872. </packing>
  873. </child>
  874. </widget>
  875. <packing>
  876. <property name="padding">0</property>
  877. <property name="expand">True</property>
  878. <property name="fill">True</property>
  879. </packing>
  880. </child>
  881. </widget>
  882. </child>
  883. </widget>
  884. </glade-interface>