1. import uiScriptLocale
  2. window = {
  3. "name" : "QuestionDialog",
  4. "style" : ("movable", "float",),
  5. "x" : SCREEN_WIDTH/2 - 125,
  6. "y" : SCREEN_HEIGHT/2 - 52,
  7. "width" : 360,
  8. "height" : 105 + 50,
  9. "children" :
  10. (
  11. {
  12. "name" : "board",
  13. "type" : "board",
  14. "x" : 0,
  15. "y" : 0,
  16. "width" : 360,
  17. "height" : 150,
  18. "children" :
  19. (
  20. {
  21. "name" : "image",
  22. "type" : "image",
  23. "x" : 0,
  24. "y" : 10,
  25. "horizontal_align" : "center",
  26. "image" : "d:/ymir work/ui/game/windows/metin_slot_silver.sub",
  27. },
  28. {
  29. "name" : "message",
  30. "type" : "text",
  31. "x" : 0,
  32. "y" : 38 + 50,
  33. "horizontal_align" : "center",
  34. "text" : uiScriptLocale.MESSAGE,
  35. "text_horizontal_align" : "center",
  36. "text_vertical_align" : "center",
  37. },
  38. {
  39. "name" : "drop",
  40. "type" : "button",
  41. "x" : -115,
  42. "y" : 63 + 50,
  43. "width" : 61,
  44. "height" : 21,
  45. "horizontal_align" : "center",
  46. "text" : uiScriptLocale.NEW_DROP_DIALOG_DROP,
  47. "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
  48. "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
  49. "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
  50. },
  51. {
  52. "name" : "destroy",
  53. "type" : "button",
  54. "x" : -40,
  55. "y" : 63 + 50,
  56. "width" : 61,
  57. "height" : 21,
  58. "horizontal_align" : "center",
  59. "text" : uiScriptLocale.NEW_DROP_DIALOG_DESTROY,
  60. "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
  61. "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
  62. "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
  63. },
  64. {
  65. "name" : "sell",
  66. "type" : "button",
  67. "x" : 35,
  68. "y" : 63 + 50,
  69. "width" : 61,
  70. "height" : 21,
  71. "horizontal_align" : "center",
  72. "text" : uiScriptLocale.NEW_DROP_DIALOG_SELL,
  73. "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
  74. "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
  75. "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
  76. },
  77. {
  78. "name" : "cancel",
  79. "type" : "button",
  80. "x" : 110,
  81. "y" : 63 + 50,
  82. "width" : 61,
  83. "height" : 21,
  84. "horizontal_align" : "center",
  85. "text" : uiScriptLocale.NEW_DROP_DIALOG_CLOSE,
  86. "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
  87. "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
  88. "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
  89. },
  90. ),
  91. },
  92. ),
  93. }

questiondialog_item.py / uiscript