simplenotepad.ui 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>simplenotepad</class>
  4. <widget class="QMainWindow" name="simplenotepad">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>600</width>
  10. <height>600</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>simplenotepad</string>
  15. </property>
  16. <widget class="QWidget" name="centralwidget">
  17. <layout class="QHBoxLayout" name="horizontalLayout">
  18. <item>
  19. <widget class="QTextEdit" name="textEdit"/>
  20. </item>
  21. </layout>
  22. </widget>
  23. <widget class="QStatusBar" name="statusbar"/>
  24. <widget class="QMenuBar" name="menubar">
  25. <property name="geometry">
  26. <rect>
  27. <x>0</x>
  28. <y>0</y>
  29. <width>600</width>
  30. <height>20</height>
  31. </rect>
  32. </property>
  33. <widget class="QMenu" name="menuFile">
  34. <property name="title">
  35. <string>File</string>
  36. </property>
  37. <addaction name="actionNew"/>
  38. <addaction name="actionOpen"/>
  39. <addaction name="actionSave_as"/>
  40. </widget>
  41. <widget class="QMenu" name="menuEdit">
  42. <property name="title">
  43. <string>Edit</string>
  44. </property>
  45. <addaction name="actionCopy"/>
  46. <addaction name="actionPaste"/>
  47. <addaction name="separator"/>
  48. <addaction name="actionGo_to_begin"/>
  49. <addaction name="actionGo_to_end"/>
  50. </widget>
  51. <addaction name="menuFile"/>
  52. <addaction name="menuEdit"/>
  53. </widget>
  54. <action name="actionSave_as">
  55. <property name="text">
  56. <string>Save as</string>
  57. </property>
  58. </action>
  59. <action name="actionOpen">
  60. <property name="text">
  61. <string>Open</string>
  62. </property>
  63. </action>
  64. <action name="actionCopy">
  65. <property name="text">
  66. <string>Copy</string>
  67. </property>
  68. </action>
  69. <action name="actionPaste">
  70. <property name="text">
  71. <string>Paste</string>
  72. </property>
  73. </action>
  74. <action name="actionNew">
  75. <property name="text">
  76. <string>New</string>
  77. </property>
  78. </action>
  79. <action name="actionGo_to_begin">
  80. <property name="text">
  81. <string>Go to begin</string>
  82. </property>
  83. </action>
  84. <action name="actionGo_to_end">
  85. <property name="text">
  86. <string>Go to end</string>
  87. </property>
  88. </action>
  89. </widget>
  90. <resources/>
  91. <connections/>
  92. </ui>