diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-02-10 17:08:51 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-02-10 17:08:51 -0500 |
| commit | ddde8a4aa12b24b3d2d6419e326be195435d69b9 (patch) | |
| tree | 0586ecee5600592be258e05317b8058fdcffb72a /mainbrowser.ui | |
| download | AleeBrowser-ddde8a4aa12b24b3d2d6419e326be195435d69b9.tar.gz AleeBrowser-ddde8a4aa12b24b3d2d6419e326be195435d69b9.tar.bz2 AleeBrowser-ddde8a4aa12b24b3d2d6419e326be195435d69b9.zip | |
Inital commit
Diffstat (limited to 'mainbrowser.ui')
| -rw-r--r-- | mainbrowser.ui | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/mainbrowser.ui b/mainbrowser.ui new file mode 100644 index 0000000..92e32f1 --- /dev/null +++ b/mainbrowser.ui @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>mainbrowser</class> + <widget class="QMainWindow" name="mainbrowser"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>925</width> + <height>610</height> + </rect> + </property> + <property name="windowTitle"> + <string>AleeBrowser</string> + </property> + <widget class="QWidget" name="centralwidget"> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="2"> + <widget class="QPushButton" name="searchButton"> + <property name="text"> + <string>Search</string> + </property> + </widget> + </item> + <item row="2" column="0" colspan="3"> + <widget class="QWebView" name="webView"> + <property name="url"> + <url> + <string>about:blank</string> + </url> + </property> + </widget> + </item> + <item row="0" column="0" colspan="2"> + <widget class="QLineEdit" name="lineEdit"> + <property name="text"> + <string>https://www.google.com</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> + <widget class="QMenuBar" name="menubar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>925</width> + <height>23</height> + </rect> + </property> + <widget class="QMenu" name="menuFile"> + <property name="title"> + <string>File</string> + </property> + <addaction name="actionAbout"/> + <addaction name="actionQuit"/> + </widget> + <addaction name="menuFile"/> + </widget> + <widget class="QStatusBar" name="statusbar"/> + <action name="actionQuit"> + <property name="text"> + <string>Quit</string> + </property> + </action> + <action name="actionAbout"> + <property name="text"> + <string>About</string> + </property> + </action> + </widget> + <customwidgets> + <customwidget> + <class>QWebView</class> + <extends>QWidget</extends> + <header location="global">QtWebKitWidgets/QWebView</header> + </customwidget> + </customwidgets> + <resources/> + <connections/> +</ui> |
