123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>800</width>
- <height>480</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>MainWindow</string>
- </property>
- <widget class="QWidget" name="centralWidget">
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QLineEdit" name="lineEdit"/>
- </item>
- <item row="0" column="1">
- <widget class="QPushButton" name="pushButton">
- <property name="text">
- <string>PushButton</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0" colspan="2">
- <widget class="QWebView" name="webView">
- <property name="url">
- <url>
- <string>about:blank</string>
- </url>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menuBar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>800</width>
- <height>23</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuTest">
- <property name="title">
- <string>test</string>
- </property>
- <addaction name="actionTest2"/>
- <addaction name="separator"/>
- <addaction name="separator"/>
- <addaction name="actionTest3"/>
- </widget>
- <widget class="QMenu" name="menuLol">
- <property name="title">
- <string>lol</string>
- </property>
- <addaction name="actionLol1"/>
- </widget>
- <addaction name="menuTest"/>
- <addaction name="menuLol"/>
- </widget>
- <action name="actionTest2">
- <property name="text">
- <string>test2</string>
- </property>
- </action>
- <action name="actionTest3">
- <property name="text">
- <string>test3</string>
- </property>
- </action>
- <action name="actionLol1">
- <property name="text">
- <string>lol1</string>
- </property>
- </action>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <customwidgets>
- <customwidget>
- <class>QWebView</class>
- <extends>QWidget</extends>
- <header>QtWebKit/QWebView</header>
- </customwidget>
- </customwidgets>
- <resources/>
- <connections/>
- </ui>
|