Guest User

Untitled

a guest
Jul 14th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>LoginDialog</class>
  4. <widget class="QDialog" name="LoginDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>291</width>
  10. <height>251</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Dialog</string>
  15. </property>
  16. <widget class="QWidget" name="layoutWidget">
  17. <property name="geometry">
  18. <rect>
  19. <x>10</x>
  20. <y>10</y>
  21. <width>271</width>
  22. <height>232</height>
  23. </rect>
  24. </property>
  25. <layout class="QVBoxLayout" name="mainLayout">
  26. <item>
  27. <widget class="QLabel" name="logoLabel">
  28. <property name="text">
  29. <string/>
  30. </property>
  31. <property name="pixmap">
  32. <pixmap resource="bb7.qrc">:/logos/bb_vista</pixmap>
  33. </property>
  34. <property name="scaledContents">
  35. <bool>false</bool>
  36. </property>
  37. <property name="alignment">
  38. <set>Qt::AlignCenter</set>
  39. </property>
  40. </widget>
  41. </item>
  42. <item>
  43. <widget class="QLabel" name="bb7Label">
  44. <property name="font">
  45. <font>
  46. <pointsize>20</pointsize>
  47. </font>
  48. </property>
  49. <property name="text">
  50. <string>Welcome to Bb7</string>
  51. </property>
  52. <property name="alignment">
  53. <set>Qt::AlignCenter</set>
  54. </property>
  55. </widget>
  56. </item>
  57. <item>
  58. <layout class="QFormLayout" name="formLayout">
  59. <property name="fieldGrowthPolicy">
  60. <enum>QFormLayout::AllNonFixedFieldsGrow</enum>
  61. </property>
  62. <item row="0" column="0">
  63. <widget class="QLabel" name="userLabel">
  64. <property name="text">
  65. <string>Username:</string>
  66. </property>
  67. <property name="buddy">
  68. <cstring>userText</cstring>
  69. </property>
  70. </widget>
  71. </item>
  72. <item row="0" column="1">
  73. <widget class="QLineEdit" name="userText"/>
  74. </item>
  75. <item row="1" column="0">
  76. <widget class="QLabel" name="passLabel">
  77. <property name="text">
  78. <string>Password:</string>
  79. </property>
  80. <property name="buddy">
  81. <cstring>passText</cstring>
  82. </property>
  83. </widget>
  84. </item>
  85. <item row="1" column="1">
  86. <widget class="QLineEdit" name="passText">
  87. <property name="inputMask">
  88. <string/>
  89. </property>
  90. <property name="text">
  91. <string/>
  92. </property>
  93. <property name="echoMode">
  94. <enum>QLineEdit::Password</enum>
  95. </property>
  96. </widget>
  97. </item>
  98. </layout>
  99. </item>
  100. <item>
  101. <widget class="QDialogButtonBox" name="buttonBox">
  102. <property name="orientation">
  103. <enum>Qt::Horizontal</enum>
  104. </property>
  105. <property name="standardButtons">
  106. <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
  107. </property>
  108. </widget>
  109. </item>
  110. </layout>
  111. </widget>
  112. </widget>
  113. <resources>
  114. <include location="bb7.qrc"/>
  115. </resources>
  116. <connections>
  117. <connection>
  118. <sender>buttonBox</sender>
  119. <signal>rejected()</signal>
  120. <receiver>LoginDialog</receiver>
  121. <slot>reject()</slot>
  122. <hints>
  123. <hint type="sourcelabel">
  124. <x>249</x>
  125. <y>240</y>
  126. </hint>
  127. <hint type="destinationlabel">
  128. <x>157</x>
  129. <y>274</y>
  130. </hint>
  131. </hints>
  132. </connection>
  133. </connections>
  134. </ui>
Add Comment
Please, Sign In to add comment