DocDiff application: basic functionality, opening documents

This commit is contained in:
Jakub Melka
2021-09-05 18:13:06 +02:00
parent ba13871a9c
commit e354a03564
13 changed files with 1088 additions and 16 deletions

View File

@ -81,6 +81,9 @@
<property name="title">
<string>File</string>
</property>
<addaction name="actionOpen_Left"/>
<addaction name="actionOpen_Right"/>
<addaction name="actionClose"/>
</widget>
<widget class="QMenu" name="menuHelp">
<property name="title">
@ -94,15 +97,22 @@
<string>Toolbars</string>
</property>
</widget>
<widget class="QMenu" name="menuCompare">
<property name="title">
<string>Compare</string>
</property>
<addaction name="actionCompare"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuCompare"/>
<addaction name="menuToolbars"/>
<addaction name="menuHelp"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionGet_Source">
<property name="icon">
<iconset>
<normaloff>:/pdfdocpage/resources/get-source.svg</normaloff>:/pdfdocpage/resources/get-source.svg</iconset>
<iconset resource="resources.qrc">
<normaloff>:/pdfdocdiff/resources/get-source.svg</normaloff>:/pdfdocdiff/resources/get-source.svg</iconset>
</property>
<property name="text">
<string>Get Source</string>
@ -110,8 +120,8 @@
</action>
<action name="actionAbout">
<property name="icon">
<iconset>
<normaloff>:/pdfdocpage/resources/about.svg</normaloff>:/pdfdocpage/resources/about.svg</iconset>
<iconset resource="resources.qrc">
<normaloff>:/pdfdocdiff/resources/about.svg</normaloff>:/pdfdocdiff/resources/about.svg</iconset>
</property>
<property name="text">
<string>About</string>
@ -120,7 +130,51 @@
<string>F1</string>
</property>
</action>
<action name="actionOpen_Left">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/pdfdocdiff/resources/open-left.svg</normaloff>:/pdfdocdiff/resources/open-left.svg</iconset>
</property>
<property name="text">
<string>Open Left</string>
</property>
</action>
<action name="actionOpen_Right">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/pdfdocdiff/resources/open-right.svg</normaloff>:/pdfdocdiff/resources/open-right.svg</iconset>
</property>
<property name="text">
<string>Open Right</string>
</property>
</action>
<action name="actionCompare">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/pdfdocdiff/resources/compare.svg</normaloff>:/pdfdocdiff/resources/compare.svg</iconset>
</property>
<property name="text">
<string>Compare</string>
</property>
<property name="shortcut">
<string>F5</string>
</property>
</action>
<action name="actionClose">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/pdfdocdiff/resources/close.svg</normaloff>:/pdfdocdiff/resources/close.svg</iconset>
</property>
<property name="text">
<string>Close</string>
</property>
<property name="shortcut">
<string>Ctrl+F4</string>
</property>
</action>
</widget>
<resources/>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>