mainwindow.ui 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>486</width>
  10. <height>145</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>MainWindow</string>
  15. </property>
  16. <widget class="QWidget" name="centralWidget">
  17. <layout class="QVBoxLayout" name="verticalLayout">
  18. <item>
  19. <layout class="QHBoxLayout" name="horizontalLayout">
  20. <item>
  21. <widget class="QLabel" name="label">
  22. <property name="text">
  23. <string>Data Source:</string>
  24. </property>
  25. </widget>
  26. </item>
  27. <item>
  28. <widget class="QLineEdit" name="lineInput"/>
  29. </item>
  30. <item>
  31. <widget class="QPushButton" name="btnInput">
  32. <property name="maximumSize">
  33. <size>
  34. <width>24</width>
  35. <height>24</height>
  36. </size>
  37. </property>
  38. <property name="text">
  39. <string>...</string>
  40. </property>
  41. </widget>
  42. </item>
  43. </layout>
  44. </item>
  45. <item>
  46. <layout class="QHBoxLayout" name="horizontalLayout_2">
  47. <item>
  48. <widget class="QLabel" name="label_2">
  49. <property name="text">
  50. <string>Output Path:</string>
  51. </property>
  52. </widget>
  53. </item>
  54. <item>
  55. <widget class="QLineEdit" name="lineOutput"/>
  56. </item>
  57. <item>
  58. <widget class="QPushButton" name="btnOutput">
  59. <property name="maximumSize">
  60. <size>
  61. <width>24</width>
  62. <height>24</height>
  63. </size>
  64. </property>
  65. <property name="text">
  66. <string>...</string>
  67. </property>
  68. </widget>
  69. </item>
  70. </layout>
  71. </item>
  72. <item>
  73. <widget class="QPushButton" name="btnGO">
  74. <property name="text">
  75. <string>PushButton</string>
  76. </property>
  77. </widget>
  78. </item>
  79. </layout>
  80. </widget>
  81. <widget class="QMenuBar" name="menuBar">
  82. <property name="geometry">
  83. <rect>
  84. <x>0</x>
  85. <y>0</y>
  86. <width>486</width>
  87. <height>20</height>
  88. </rect>
  89. </property>
  90. <widget class="QMenu" name="menuFile">
  91. <property name="title">
  92. <string>File</string>
  93. </property>
  94. <addaction name="actionExit"/>
  95. </widget>
  96. <addaction name="menuFile"/>
  97. </widget>
  98. <widget class="QStatusBar" name="statusBar"/>
  99. <action name="actionExit">
  100. <property name="text">
  101. <string>Exit</string>
  102. </property>
  103. </action>
  104. </widget>
  105. <layoutdefault spacing="6" margin="11"/>
  106. <resources/>
  107. <connections>
  108. <connection>
  109. <sender>actionExit</sender>
  110. <signal>triggered()</signal>
  111. <receiver>MainWindow</receiver>
  112. <slot>close()</slot>
  113. <hints>
  114. <hint type="sourcelabel">
  115. <x>242</x>
  116. <y>199</y>
  117. </hint>
  118. <hint type="destinationlabel">
  119. <x>242</x>
  120. <y>199</y>
  121. </hint>
  122. </hints>
  123. </connection>
  124. </connections>
  125. </ui>