messageBoxDlg.gui 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //--- OBJECT WRITE BEGIN ---
  2. $guiContent = new GuiControl(MessageBoxDlg) {
  3. extent = "1280 720";
  4. minExtent = "8 8";
  5. horizSizing = "width";
  6. vertSizing = "height";
  7. profile = "GuiOverlayProfile";
  8. tooltipProfile = "GuiToolTipProfile";
  9. isContainer = "1";
  10. canSaveDynamicFields = "1";
  11. helpTag = "0";
  12. new GuiInputCtrl(MessageBoxInputHandler) {
  13. ignoreMouseEvents = "1";
  14. ActionMap = "MessageBoxActionMap";
  15. position = "-50 0";
  16. extent = "2186 851";
  17. horizSizing = "width";
  18. vertSizing = "height";
  19. profile = "GuiInputCtrlProfile";
  20. tooltipProfile = "GuiToolTipProfile";
  21. };
  22. new GuiBitmapCtrl() {
  23. BitmapAsset = "UI:backdrop_image";
  24. position = "272 128";
  25. extent = "735 463";
  26. horizSizing = "center";
  27. vertSizing = "center";
  28. profile = "GuiDefaultProfile";
  29. tooltipProfile = "GuiToolTipProfile";
  30. };
  31. new GuiControl(MessageBoxCtrl) {
  32. position = "319 169";
  33. extent = "641 381";
  34. horizSizing = "center";
  35. vertSizing = "center";
  36. profile = "GuiDefaultProfile";
  37. tooltipProfile = "GuiToolTipProfile";
  38. isContainer = "1";
  39. new GuiPanel() {
  40. extent = "641 381";
  41. horizSizing = "width";
  42. vertSizing = "height";
  43. profile = "GuiMenuBasePanelProfile";
  44. tooltipProfile = "GuiToolTipProfile";
  45. };
  46. new GuiTextCtrl(MessageBoxTitleText) {
  47. position = "32 7";
  48. extent = "577 28";
  49. horizSizing = "width";
  50. profile = "MenuHeaderText";
  51. tooltipProfile = "GuiToolTipProfile";
  52. };
  53. new GuiMLTextCtrl(MessageBoxText) {
  54. position = "81 83";
  55. extent = "481 19";
  56. minExtent = "8 8";
  57. horizSizing = "center";
  58. vertSizing = "center";
  59. profile = "MenuMLSubHeaderText";
  60. tooltipProfile = "GuiToolTipProfile";
  61. };
  62. new GuiStackControl(MessageBoxButtonHolder) {
  63. stackingType = "Horizontal";
  64. position = "250 285";
  65. extent = "140 40";
  66. horizSizing = "width";
  67. vertSizing = "top";
  68. profile = "GuiDefaultProfile";
  69. tooltipProfile = "GuiToolTipProfile";
  70. };
  71. };
  72. };
  73. //--- OBJECT WRITE END ---