- Removed unused actionViewStash FossilOrigin-Name: 999f57bd1e05e99c67a921c09f782da170ae827c
112 lines
2.9 KiB
XML
112 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>BrowserWidget</class>
|
|
<widget class="QWidget" name="BrowserWidget">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>400</width>
|
|
<height>300</height>
|
|
</rect>
|
|
</property>
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
<property name="spacing">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="leftMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="topMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="rightMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="bottomMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<item>
|
|
<widget class="QToolBar" name="toolBar">
|
|
<property name="windowTitle">
|
|
<string/>
|
|
</property>
|
|
<property name="iconSize">
|
|
<size>
|
|
<width>24</width>
|
|
<height>24</height>
|
|
</size>
|
|
</property>
|
|
<addaction name="actionBrowserBack"/>
|
|
<addaction name="actionBrowserForward"/>
|
|
<addaction name="actionBrowserRefresh"/>
|
|
<addaction name="actionBrowserStop"/>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QLineEdit" name="txtUrl"/>
|
|
</item>
|
|
<item>
|
|
<widget class="CustomWebView" name="webView" native="true"/>
|
|
</item>
|
|
</layout>
|
|
<action name="actionBrowserBack">
|
|
<property name="icon">
|
|
<iconset resource="../rsrc/resources.qrc">
|
|
<normaloff>:/icons/icon-action-previous</normaloff>:/icons/icon-action-previous</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Back</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Back</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionBrowserForward">
|
|
<property name="icon">
|
|
<iconset resource="../rsrc/resources.qrc">
|
|
<normaloff>:/icons/icon-action-next</normaloff>:/icons/icon-action-next</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Forward</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Forward</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionBrowserRefresh">
|
|
<property name="icon">
|
|
<iconset resource="../rsrc/resources.qrc">
|
|
<normaloff>:/icons/icon-action-refresh</normaloff>:/icons/icon-action-refresh</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Refresh</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Refresh</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionBrowserStop">
|
|
<property name="icon">
|
|
<iconset resource="../rsrc/resources.qrc">
|
|
<normaloff>:/icons/icon-action-stop</normaloff>:/icons/icon-action-stop</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Stop</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<customwidgets>
|
|
<customwidget>
|
|
<class>CustomWebView</class>
|
|
<extends>QWidget</extends>
|
|
<header>CustomWebView.h</header>
|
|
<container>1</container>
|
|
</customwidget>
|
|
</customwidgets>
|
|
<resources>
|
|
<include location="../rsrc/resources.qrc"/>
|
|
</resources>
|
|
<connections/>
|
|
</ui>
|