Guest User

Untitled

a guest
Jan 12th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>Form</class>
  4. <widget class="QWidget" name="Form">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>367</width>
  10. <height>71</height>
  11. </rect>
  12. </property>
  13. <property name="sizePolicy">
  14. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  15. <horstretch>0</horstretch>
  16. <verstretch>0</verstretch>
  17. </sizepolicy>
  18. </property>
  19. <property name="windowTitle">
  20. <string>Maya PyQt Basic Dialog Demo</string>
  21. </property>
  22. <widget class="QLabel" name="desc_label">
  23. <property name="geometry">
  24. <rect>
  25. <x>11</x>
  26. <y>46</y>
  27. <width>341</width>
  28. <height>16</height>
  29. </rect>
  30. </property>
  31. <property name="text">
  32. <string>TextLabel</string>
  33. </property>
  34. </widget>
  35. <widget class="QPushButton" name="make_button">
  36. <property name="geometry">
  37. <rect>
  38. <x>256</x>
  39. <y>12</y>
  40. <width>95</width>
  41. <height>27</height>
  42. </rect>
  43. </property>
  44. <property name="text">
  45. <string>Make Shape</string>
  46. </property>
  47. </widget>
  48. <widget class="QComboBox" name="shape_type_cb">
  49. <property name="geometry">
  50. <rect>
  51. <x>12</x>
  52. <y>13</y>
  53. <width>120</width>
  54. <height>25</height>
  55. </rect>
  56. </property>
  57. <property name="minimumSize">
  58. <size>
  59. <width>120</width>
  60. <height>0</height>
  61. </size>
  62. </property>
  63. <item>
  64. <property name="text">
  65. <string>Sphere</string>
  66. </property>
  67. </item>
  68. <item>
  69. <property name="text">
  70. <string>Cube</string>
  71. </property>
  72. </item>
  73. <item>
  74. <property name="text">
  75. <string>Cylinder</string>
  76. </property>
  77. </item>
  78. </widget>
  79. <widget class="QLineEdit" name="name_le">
  80. <property name="geometry">
  81. <rect>
  82. <x>138</x>
  83. <y>13</y>
  84. <width>112</width>
  85. <height>25</height>
  86. </rect>
  87. </property>
  88. <property name="text">
  89. <string>newShape</string>
  90. </property>
  91. </widget>
  92. </widget>
  93. <resources/>
  94. <connections/>
  95. </ui>
Add Comment
Please, Sign In to add comment