You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dialogchat.ui 947B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>DialogChat</class>
  4. <widget class="QWidget" name="DialogChat">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>400</width>
  10. <height>268</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Chat</string>
  15. </property>
  16. <property name="styleSheet">
  17. <string notr="true">QWidget
  18. {
  19. color: white;
  20. background-color: black;
  21. }
  22. QLineEdit
  23. {
  24. border: 1px solid white;
  25. border-radius: 2px;
  26. }</string>
  27. </property>
  28. <layout class="QVBoxLayout" name="verticalLayout">
  29. <item>
  30. <widget class="QTextEdit" name="textChat">
  31. <property name="focusPolicy">
  32. <enum>Qt::NoFocus</enum>
  33. </property>
  34. <property name="readOnly">
  35. <bool>true</bool>
  36. </property>
  37. </widget>
  38. </item>
  39. <item>
  40. <widget class="QLineEdit" name="lineChat"/>
  41. </item>
  42. </layout>
  43. </widget>
  44. <resources/>
  45. <connections/>
  46. </ui>