Skip to content

Commit

Permalink
registerfilecheckboxform
Browse files Browse the repository at this point in the history
  • Loading branch information
surfzoid committed Aug 22, 2023
1 parent f6f1521 commit c780b62
Show file tree
Hide file tree
Showing 7 changed files with 995 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

599 changes: 599 additions & 0 deletions QtVsPlayer.pro.user

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>OpenFileCheckBoxForm</class>
<widget class="QWidget" name="OpenFileCheckBoxForm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QCheckBox" name="OpenRegisteredFileCheckBox">
<property name="text">
<string>Open registered file based on suffix: </string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
4 changes: 4 additions & 0 deletions windeploy/packages/com.surfzoid.QtVsPlayer/meta/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@
</Licenses>
<Default>true</Default>
<Script>installscript.qs</Script>
<UserInterfaces>
<UserInterface>registerfilecheckboxform.ui</UserInterface>
<UserInterface>openfilecheckboxform.ui</UserInterface>
</UserInterfaces>
</Package>
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RegisterFileCheckBoxForm</class>
<widget class="QWidget" name="RegisterFileCheckBoxForm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QCheckBox" name="RegisterFileCheckBox">
<property name="text">
<string>Register file extension: </string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
13 changes: 13 additions & 0 deletions windeploy/registerfileextension.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
TEMPLATE = aux

INSTALLER = installer

INPUT = $$PWD/config/config.xml $$PWD/packages
example.input = INPUT
example.output = $$INSTALLER
example.commands = ../../bin/binarycreator -c $$PWD/config/config.xml -p $$PWD/packages ${QMAKE_FILE_OUT}
example.CONFIG += target_predeps no_link combine

QMAKE_EXTRA_COMPILERS += example

OTHER_FILES = README
317 changes: 317 additions & 0 deletions windeploy/registerfileextension.pro.user

Large diffs are not rendered by default.

0 comments on commit c780b62

Please sign in to comment.