mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-21 08:20:25 +00:00
285 lines
8 KiB
XML
285 lines
8 KiB
XML
<?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>638</width>
|
|
<height>533</height>
|
|
</rect>
|
|
</property>
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
<horstretch>0</horstretch>
|
|
<verstretch>0</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>LinkChecker</string>
|
|
</property>
|
|
<property name="windowIcon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/app.png</normaloff>:/icons/app.png</iconset>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string/>
|
|
</property>
|
|
<widget class="QWidget" name="centralwidget">
|
|
<layout class="QGridLayout" name="gridLayout">
|
|
<property name="horizontalSpacing">
|
|
<number>-1</number>
|
|
</property>
|
|
<property name="verticalSpacing">
|
|
<number>3</number>
|
|
</property>
|
|
<property name="margin">
|
|
<number>4</number>
|
|
</property>
|
|
<item row="0" column="1">
|
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
<item>
|
|
<widget class="QLabel" name="label">
|
|
<property name="text">
|
|
<string>URL</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>urlinput</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<spacer name="horizontalSpacer_2">
|
|
<property name="orientation">
|
|
<enum>Qt::Horizontal</enum>
|
|
</property>
|
|
<property name="sizeHint" stdset="0">
|
|
<size>
|
|
<width>4</width>
|
|
<height>20</height>
|
|
</size>
|
|
</property>
|
|
</spacer>
|
|
</item>
|
|
<item>
|
|
<widget class="QLineEdit" name="urlinput">
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
|
<horstretch>1</horstretch>
|
|
<verstretch>0</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="maxLength">
|
|
<number>2048</number>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<spacer name="horizontalSpacer">
|
|
<property name="orientation">
|
|
<enum>Qt::Horizontal</enum>
|
|
</property>
|
|
<property name="sizeHint" stdset="0">
|
|
<size>
|
|
<width>10</width>
|
|
<height>20</height>
|
|
</size>
|
|
</property>
|
|
</spacer>
|
|
</item>
|
|
<item>
|
|
<widget class="QPushButton" name="controlButton">
|
|
<property name="toolTip">
|
|
<string>Start checking the given URL.</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string/>
|
|
</property>
|
|
<property name="text">
|
|
<string comment="Start checking URL">Start</string>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/start.png</normaloff>:/icons/start.png</iconset>
|
|
</property>
|
|
<property name="default">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</item>
|
|
<item row="1" column="0" colspan="2">
|
|
<widget class="QTreeView" name="treeView">
|
|
<property name="contextMenuPolicy">
|
|
<enum>Qt::CustomContextMenu</enum>
|
|
</property>
|
|
<property name="editTriggers">
|
|
<set>QAbstractItemView::NoEditTriggers</set>
|
|
</property>
|
|
<property name="alternatingRowColors">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="uniformRowHeights">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="itemsExpandable">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="sortingEnabled">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="allColumnsShowFocus">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="expandsOnDoubleClick">
|
|
<bool>false</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QMenuBar" name="menubar">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>638</width>
|
|
<height>21</height>
|
|
</rect>
|
|
</property>
|
|
<widget class="QMenu" name="menuLinkChecka">
|
|
<property name="title">
|
|
<string>File</string>
|
|
</property>
|
|
<addaction name="actionQuit"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuEdit">
|
|
<property name="title">
|
|
<string>Edit</string>
|
|
</property>
|
|
<addaction name="actionOptions"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuHelp">
|
|
<property name="title">
|
|
<string>Help</string>
|
|
</property>
|
|
<addaction name="actionAbout"/>
|
|
<addaction name="actionHelp"/>
|
|
<addaction name="actionDebug"/>
|
|
</widget>
|
|
<addaction name="menuLinkChecka"/>
|
|
<addaction name="menuEdit"/>
|
|
<addaction name="menuHelp"/>
|
|
</widget>
|
|
<widget class="QStatusBar" name="statusBar"/>
|
|
<action name="actionQuit">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/exit.png</normaloff>:/icons/exit.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Quit</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+Q</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionAbout">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/about.png</normaloff>:/icons/about.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>About</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionHelp">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/help.png</normaloff>:/icons/help.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Help</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionViewOnline">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/online.png</normaloff>:/icons/online.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>View online</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>View URL online</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionOptions">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/preferences.png</normaloff>:/icons/preferences.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Options</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionCopyToClipboard">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/copy.png</normaloff>:/icons/copy.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Copy to clipboard</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Copy URL to clipboard</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+C</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionViewParentOnline">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/online.png</normaloff>:/icons/online.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>View parent online</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>View parent URL online</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionViewParentSource">
|
|
<property name="icon">
|
|
<iconset resource="../rc/linkchecker.qrc">
|
|
<normaloff>:/icons/online.png</normaloff>:/icons/online.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>View parent source</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>View parent URL source</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionDebug">
|
|
<property name="text">
|
|
<string>Debug</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionViewProperties">
|
|
<property name="text">
|
|
<string>View properties</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>View URL properties</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<resources>
|
|
<include location="../rc/linkchecker.qrc"/>
|
|
</resources>
|
|
<connections/>
|
|
</ui>
|