├── .clang-format ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── to-do.md ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── img ├── icon.ico ├── icon.png └── winico.rc ├── res └── icons.qrc └── src ├── constants.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── qfileslistdraganddrop.cpp └── qfileslistdraganddrop.h /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | 3 | BreakBeforeInheritanceComma: true 4 | 5 | BreakConstructorInitializersBeforeComma: true 6 | 7 | ColumnLimit: 256 8 | 9 | CommentPragmas: "^!|^:" 10 | 11 | SpaceAfterTemplateKeyword: false 12 | 13 | BreakBeforeBinaryOperators: NonAssignment 14 | 15 | BreakBeforeBraces: Custom 16 | 17 | BraceWrapping: 18 | AfterClass: true 19 | AfterControlStatement: true 20 | AfterEnum: true 21 | AfterFunction: true 22 | AfterNamespace: false 23 | AfterObjCDeclaration: false 24 | AfterStruct: true 25 | AfterUnion: true 26 | BeforeCatch: true 27 | BeforeElse: true 28 | BeforeLambdaBody: true 29 | IndentBraces: false 30 | 31 | ConstructorInitializerIndentWidth: 4 32 | 33 | ContinuationIndentWidth: 4 34 | 35 | NamespaceIndentation: None 36 | 37 | AlignAfterOpenBracket: DontAlign 38 | 39 | AlwaysBreakTemplateDeclarations: Yes 40 | 41 | AllowShortFunctionsOnASingleLine: Inline 42 | 43 | SortIncludes: false 44 | 45 | ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCHMARK, QBENCHMARK_ONCE ] 46 | 47 | BreakConstructorInitializers: BeforeColon 48 | 49 | IndentCaseLabels: true 50 | 51 | IndentWidth: 4 52 | 53 | Cpp11BracedListStyle: false 54 | 55 | SpaceBeforeCpp11BracedList: true 56 | 57 | # http://www.stroustrup.com/bs_faq2.html#whitespace 58 | PointerAlignment: Left 59 | PointerBindsToType: true 60 | 61 | AccessModifierOffset: -4 62 | 63 | ... 64 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | patreon: GlitchedPolygons 4 | custom: ['glitchedpolygons.com/donate', 'paypal.me/RaphaelBeck'] 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "[BUG]" 5 | labels: bug 6 | assignees: GlitchedPolygons 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: "[FEATURE] " 5 | labels: enhancement, feature 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/to-do.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: To do 3 | about: Add a simple to-do type of issue (something small that needs to be done) 4 | title: "[TODO] " 5 | labels: todo 6 | assignees: '' 7 | 8 | --- 9 | 10 | # What 11 | 12 | # Why 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | *.slo 3 | *.lo 4 | *.o 5 | *.a 6 | *.la 7 | *.lai 8 | *.so 9 | *.so.* 10 | *.dll 11 | *.dylib 12 | 13 | # Qt-es 14 | object_script.*.Release 15 | object_script.*.Debug 16 | *_plugin_import.cpp 17 | /.qmake.cache 18 | /.qmake.stash 19 | *.pro.user 20 | *.pro.user.* 21 | *.qbs.user 22 | *.qbs.user.* 23 | *.moc 24 | moc_*.cpp 25 | moc_*.h 26 | qrc_*.cpp 27 | ui_*.h 28 | *.qmlc 29 | *.jsc 30 | Makefile* 31 | *build-* 32 | *.qm 33 | *.prl 34 | 35 | # Qt unit tests 36 | target_wrapper.* 37 | 38 | # QtCreator 39 | *.autosave 40 | 41 | # QtCreator Qml 42 | *.qmlproject.user 43 | *.qmlproject.user.* 44 | 45 | # QtCreator CMake 46 | CMakeLists.txt.user* 47 | 48 | # QtCreator 4.8< compilation database 49 | compile_commands.json 50 | 51 | # QtCreator local machine specific files for imported projects 52 | *creator.user* 53 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.5) 2 | 3 | project(signtoolgui VERSION 0.1 LANGUAGES CXX) 4 | 5 | set(CMAKE_INCLUDE_CURRENT_DIR ON) 6 | 7 | set(CMAKE_AUTOUIC ON) 8 | set(CMAKE_AUTOMOC ON) 9 | set(CMAKE_AUTORCC ON) 10 | 11 | set(CMAKE_CXX_STANDARD 20) 12 | set(CMAKE_CXX_STANDARD_REQUIRED ON) 13 | 14 | find_package(QT NAMES Qt6 Qt5 COMPONENTS Widgets REQUIRED) 15 | find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED) 16 | 17 | set(PROJECT_SOURCES 18 | ${CMAKE_CURRENT_LIST_DIR}/res/icons.qrc 19 | ${CMAKE_CURRENT_LIST_DIR}/src/main.cpp 20 | ${CMAKE_CURRENT_LIST_DIR}/src/qfileslistdraganddrop.cpp 21 | ${CMAKE_CURRENT_LIST_DIR}/src/qfileslistdraganddrop.h 22 | ${CMAKE_CURRENT_LIST_DIR}/src/mainwindow.cpp 23 | ${CMAKE_CURRENT_LIST_DIR}/src/mainwindow.h 24 | ${CMAKE_CURRENT_LIST_DIR}/src/mainwindow.ui 25 | ) 26 | 27 | # Windows Icon 28 | set(APP_ICON_RESOURCE_WINDOWS "${CMAKE_CURRENT_LIST_DIR}/img/winico.rc") 29 | 30 | if(${QT_VERSION_MAJOR} GREATER_EQUAL 6) 31 | qt_add_executable(signtoolgui 32 | MANUAL_FINALIZATION 33 | ${PROJECT_SOURCES} 34 | ${APP_ICON_RESOURCE_WINDOWS} 35 | ) 36 | # Define target properties for Android with Qt 6 as: 37 | # set_property(TARGET signtoolgui APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR 38 | # ${CMAKE_CURRENT_SOURCE_DIR}/android) 39 | # For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation 40 | else() 41 | if(ANDROID) 42 | add_library(signtoolgui SHARED 43 | ${PROJECT_SOURCES} 44 | ) 45 | # Define properties for Android with Qt 5 after find_package() calls as: 46 | # set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android") 47 | else() 48 | add_executable(signtoolgui 49 | ${PROJECT_SOURCES} 50 | ${APP_ICON_RESOURCE_WINDOWS} 51 | ) 52 | endif() 53 | endif() 54 | 55 | target_link_libraries(signtoolgui PRIVATE Qt${QT_VERSION_MAJOR}::Widgets) 56 | 57 | set_target_properties(signtoolgui PROPERTIES 58 | WIN32_EXECUTABLE true 59 | MACOSX_BUNDLE_GUI_IDENTIFIER signtoolgui.glitchedpolygons.com 60 | MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} 61 | MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} 62 | ) 63 | 64 | if(QT_VERSION_MAJOR EQUAL 6) 65 | qt_finalize_executable(signtoolgui) 66 | endif() 67 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Signtool GUI 2 | 3 | This is a [Qt](https://www.qt.io) GUI that wraps [signtool.exe](https://docs.microsoft.com/en-us/dotnet/framework/tools/signtool-exe) with an easy drag & drop approach. 4 | 5 | Manually signing your binaries on Windows (automating it would be even better tho) was never as pleasant as dragging and dropping them into a visual user interface and selecting the code signing certificate + password and hit a button. Isn't that smooth af? 6 | 7 | **Before using this, make sure to have [signtool.exe](https://docs.microsoft.com/en-us/dotnet/framework/tools/signtool-exe) installed on your system and available in your `$PATH`** 8 | 9 | There is also a "verify" tab: in there you can drag & drop binaries into the list field and verify their signatures (instead of using `signtool.exe verify /pa {FILE_PATH}` or, even worse, executing them and checking if the Windows SmartScreen goes brr...). 10 | 11 | --- 12 | 13 | ![Signtool GUI Screenshots](https://api.files.glitchedpolygons.com/api/v1/files/2porakb5izmfdtx3) 14 | 15 | --- 16 | 17 | This GUI's source code is [GPL-3.0 licensed](https://github.com/GlitchedPolygons/SigntoolGUI/blob/main/LICENSE) and available on [github.com/GlitchedPolygons/SigntoolGUI](https://github.com/GlitchedPolygons/SigntoolGUI) - but also available for purchase on [glitchedpolygons.com](https://glitchedpolygons.com) (ships with some cool, additional stuff, PDF files/manual, etc...). 18 | 19 | Please consider buying it from there to support the development of nifty tools like this :) 20 | 21 | --- 22 | 23 | Check out the official tutorial video on YouTube: 24 | 25 | https://youtube.com/watch?v=s-rts-YK9uM 26 | -------------------------------------------------------------------------------- /img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchedPolygons/SigntoolGUI/3b7ee1466c35c832bbc6b4bf74987d09779dd954/img/icon.ico -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchedPolygons/SigntoolGUI/3b7ee1466c35c832bbc6b4bf74987d09779dd954/img/icon.png -------------------------------------------------------------------------------- /img/winico.rc: -------------------------------------------------------------------------------- 1 | Win32Icon ICON "ICON.ICO" 2 | -------------------------------------------------------------------------------- /res/icons.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | ../img/icon.png 4 | ../img/icon.ico 5 | 6 | -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- 1 | #ifndef CONSTANTS_H 2 | #define CONSTANTS_H 3 | 4 | struct Constants 5 | { 6 | struct Settings 7 | { 8 | static inline const char* windowWidth = "WindowWidth"; 9 | static inline const char* windowHeight = "WindowHeight"; 10 | static inline const char* pfxFile = "PfxFile"; 11 | static inline const char* hashAlgo = "HashingAlgorithm"; 12 | static inline const char* timestampHashAlgo = "TimestampHashingAlgorithm"; 13 | static inline const char* timestampServerUrl = "TimestampServerUrl"; 14 | 15 | static inline const char* saveWindowSizeOnQuit = "SaveWindowSizeOnQuit"; 16 | static inline const char* saveHashAlgoOnQuit = "SaveHashingAlgorithmOnQuit"; 17 | static inline const char* saveTimestampHashAlgoOnQuit = "SaveTimestampHashingAlgorithmOnQuit"; 18 | static inline const char* savePfxFilePathOnQuit = "SavePfxFilePathOnQuit"; 19 | static inline const char* saveTimestampServerUrlOnQuit = "SaveTimestampServerUrlOnQuit"; 20 | 21 | 22 | struct DefaultValues 23 | { 24 | static inline bool saveWindowSizeOnQuit = false; 25 | static inline bool saveHashAlgoOnQuit = true; 26 | static inline bool saveTimestampHashAlgoOnQuit = true; 27 | static inline bool savePfxFilePathOnQuit = true; 28 | static inline bool saveTimestampServerUrlOnQuit = true; 29 | 30 | static inline const char* pfxFile = ""; 31 | static inline int hashAlgo = 2; 32 | static inline int timestampHashAlgo = 2; 33 | static inline const char* timestampServerUrl = "http://timestamp.digicert.com"; 34 | }; 35 | }; 36 | 37 | static inline const char* appName = "SigntoolGUI"; 38 | static inline const char* appVersion = "1.2.0"; 39 | static inline const char* orgName = "Glitched Polygons"; 40 | static inline const char* orgDomain = "glitchedpolygons.com"; 41 | 42 | }; 43 | 44 | #endif // CONSTANTS_H 45 | -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- 1 | #include "mainwindow.h" 2 | #include "constants.h" 3 | 4 | #include 5 | 6 | int main(int argc, char* argv[]) 7 | { 8 | QApplication::setApplicationName(Constants::appName); 9 | QApplication::setApplicationVersion(Constants::appVersion); 10 | QApplication::setApplicationDisplayName("Signtool GUI"); 11 | QApplication::setOrganizationName(Constants::orgName); 12 | QApplication::setOrganizationDomain(Constants::orgDomain); 13 | 14 | QApplication application(argc, argv); 15 | application.setWindowIcon(QIcon(":/img/icon.png")); 16 | 17 | MainWindow window; 18 | window.show(); 19 | 20 | return application.exec(); 21 | } 22 | -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- 1 | #include "mainwindow.h" 2 | #include "./ui_mainwindow.h" 3 | 4 | #include 5 | #include 6 | 7 | #include "constants.h" 8 | #include 9 | #include 10 | #include 11 | #include 12 | 13 | MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWindow) 14 | { 15 | ui->setupUi(this); 16 | 17 | QSettings::setDefaultFormat(QSettings::IniFormat); 18 | 19 | ui->buttonGroupHashAlgo->setId(ui->radioButtonHashAlgoSHA256, 0); 20 | ui->buttonGroupHashAlgo->setId(ui->radioButtonHashAlgoSHA384, 1); 21 | ui->buttonGroupHashAlgo->setId(ui->radioButtonHashAlgoSHA512, 2); 22 | 23 | ui->buttonGroupTimestampHashAlgo->setId(ui->radioButtonTimestampHashAlgoSHA256, 0); 24 | ui->buttonGroupTimestampHashAlgo->setId(ui->radioButtonTimestampHashAlgoSHA384, 1); 25 | ui->buttonGroupTimestampHashAlgo->setId(ui->radioButtonTimestampHashAlgoSHA512, 2); 26 | 27 | ui->labelAboutText->setText(QString("About Signtool GUI - v%1").arg(Constants::appVersion)); 28 | 29 | loadSettings(); 30 | } 31 | 32 | MainWindow::~MainWindow() 33 | { 34 | QSettings settings; 35 | 36 | const bool saveHashAlgo = ui->checkBoxSaveHashAlgoOnQuit->isChecked(); 37 | const bool saveWindowSize = ui->checkBoxSaveWindowSizeOnQuit->isChecked(); 38 | const bool savePfxFilePath = ui->checkBoxSavePfxFilePathOnQuit->isChecked(); 39 | const bool saveTimestampHashAlgo = ui->checkBoxSaveTimestampHashAlgoOnQuit->isChecked(); 40 | const bool saveTimestampServerUrl = ui->checkBoxSaveTimestampServerUrlOnQuit->isChecked(); 41 | 42 | settings.setValue(Constants::Settings::saveHashAlgoOnQuit, QVariant(saveHashAlgo)); 43 | settings.setValue(Constants::Settings::saveWindowSizeOnQuit, QVariant(saveWindowSize)); 44 | settings.setValue(Constants::Settings::savePfxFilePathOnQuit, QVariant(savePfxFilePath)); 45 | settings.setValue(Constants::Settings::saveTimestampHashAlgoOnQuit, QVariant(saveTimestampHashAlgo)); 46 | settings.setValue(Constants::Settings::saveTimestampServerUrlOnQuit, QVariant(saveTimestampServerUrl)); 47 | 48 | if (saveHashAlgo) 49 | { 50 | settings.setValue(Constants::Settings::hashAlgo, QVariant(ui->buttonGroupHashAlgo->checkedId())); 51 | } 52 | 53 | if (savePfxFilePath) 54 | { 55 | settings.setValue(Constants::Settings::pfxFile, QVariant(ui->lineEditPfxFile->text())); 56 | } 57 | 58 | if (saveTimestampHashAlgo) 59 | { 60 | settings.setValue(Constants::Settings::timestampHashAlgo, QVariant(ui->buttonGroupTimestampHashAlgo->checkedId())); 61 | } 62 | 63 | if (saveTimestampServerUrl) 64 | { 65 | settings.setValue(Constants::Settings::timestampServerUrl, QVariant(ui->lineEditTimestampServer->text())); 66 | } 67 | 68 | if (saveWindowSize) 69 | { 70 | settings.setValue(Constants::Settings::windowWidth, QVariant(width())); 71 | settings.setValue(Constants::Settings::windowHeight, QVariant(height())); 72 | } 73 | 74 | delete ui; 75 | } 76 | 77 | void MainWindow::loadSettings() 78 | { 79 | QSettings settings; 80 | 81 | const QString pfxFile = settings.value(Constants::Settings::pfxFile, QVariant("")).toString(); 82 | const bool saveWindowSize = settings.value(Constants::Settings::saveWindowSizeOnQuit, QVariant(Constants::Settings::DefaultValues::saveWindowSizeOnQuit)).toBool(); 83 | const bool saveHashAlgo = settings.value(Constants::Settings::saveHashAlgoOnQuit, QVariant(Constants::Settings::DefaultValues::saveHashAlgoOnQuit)).toBool(); 84 | const bool savePfxFilePath = settings.value(Constants::Settings::savePfxFilePathOnQuit, QVariant(Constants::Settings::DefaultValues::savePfxFilePathOnQuit)).toBool(); 85 | const bool saveTimestampHashAlgo = settings.value(Constants::Settings::saveTimestampHashAlgoOnQuit, QVariant(Constants::Settings::DefaultValues::saveTimestampHashAlgoOnQuit)).toBool(); 86 | const bool saveTimestampServerUrl = settings.value(Constants::Settings::saveTimestampServerUrlOnQuit, QVariant(Constants::Settings::DefaultValues::saveTimestampServerUrlOnQuit)).toBool(); 87 | 88 | ui->checkBoxSaveHashAlgoOnQuit->setChecked(saveHashAlgo); 89 | ui->checkBoxSavePfxFilePathOnQuit->setChecked(savePfxFilePath); 90 | ui->checkBoxSaveWindowSizeOnQuit->setChecked(saveWindowSize); 91 | ui->checkBoxSaveTimestampHashAlgoOnQuit->setChecked(saveTimestampHashAlgo); 92 | ui->checkBoxSaveTimestampServerUrlOnQuit->setChecked(saveTimestampServerUrl); 93 | 94 | if (saveHashAlgo) 95 | { 96 | switch (settings.value(Constants::Settings::hashAlgo, QVariant(Constants::Settings::DefaultValues::hashAlgo)).toInt()) 97 | { 98 | default: 99 | ui->radioButtonHashAlgoSHA256->setChecked(true); 100 | break; 101 | case 1: 102 | ui->radioButtonHashAlgoSHA384->setChecked(true); 103 | break; 104 | case 2: 105 | ui->radioButtonHashAlgoSHA512->setChecked(true); 106 | break; 107 | } 108 | } 109 | 110 | if (saveTimestampHashAlgo) 111 | { 112 | switch (settings.value(Constants::Settings::timestampHashAlgo, QVariant(Constants::Settings::DefaultValues::timestampHashAlgo)).toInt()) 113 | { 114 | default: 115 | ui->radioButtonTimestampHashAlgoSHA256->setChecked(true); 116 | break; 117 | case 1: 118 | ui->radioButtonTimestampHashAlgoSHA384->setChecked(true); 119 | break; 120 | case 2: 121 | ui->radioButtonTimestampHashAlgoSHA512->setChecked(true); 122 | break; 123 | } 124 | } 125 | 126 | if (savePfxFilePath) 127 | { 128 | ui->lineEditPfxFile->setText(settings.value(Constants::Settings::pfxFile, QVariant(Constants::Settings::DefaultValues::pfxFile)).toString()); 129 | } 130 | 131 | if (saveTimestampServerUrl) 132 | { 133 | ui->lineEditTimestampServer->setText(settings.value(Constants::Settings::timestampServerUrl, QVariant(Constants::Settings::DefaultValues::timestampServerUrl)).toString()); 134 | } 135 | 136 | if (saveWindowSize) 137 | { 138 | const int w = settings.value(Constants::Settings::windowWidth, QVariant(minimumSize().width())).toInt(); 139 | const int h = settings.value(Constants::Settings::windowHeight, QVariant(minimumSize().height())).toInt(); 140 | 141 | this->resize(w > 0 ? w : -w, h > 0 ? h : -h); 142 | } 143 | } 144 | 145 | void MainWindow::on_pushButtonBrowsePfxFile_clicked() 146 | { 147 | const QString fileName = QFileDialog::getOpenFileName(this, "Select .pfx/.p12 file for signing", "", "PFX/P12 Signing File (*.p12 *.pfx)"); 148 | 149 | if (fileName.isEmpty()) 150 | { 151 | return; 152 | } 153 | 154 | if (!QFile::exists(fileName)) [[unlikely]] 155 | { 156 | QMessageBox msgBox; 157 | msgBox.setText("File does not exist or access to it failed."); 158 | msgBox.exec(); 159 | return; 160 | } 161 | 162 | ui->lineEditPfxFile->setText(fileName); 163 | } 164 | 165 | void MainWindow::on_pushButtonShowPfxFilePassword_pressed() 166 | { 167 | ui->lineEditPfxFilePassword->setEchoMode(QLineEdit::EchoMode::Normal); 168 | ui->pushButtonShowPfxFilePassword->setText("Hide"); 169 | } 170 | 171 | void MainWindow::on_pushButtonShowPfxFilePassword_released() 172 | { 173 | ui->lineEditPfxFilePassword->setEchoMode(QLineEdit::EchoMode::Password); 174 | ui->pushButtonShowPfxFilePassword->setText("Show"); 175 | } 176 | 177 | static inline const QString hashAlgoStringFromId(const int id) 178 | { 179 | switch (id) 180 | { 181 | default: 182 | return QString("SHA256"); 183 | case 1: 184 | return QString("SHA384"); 185 | case 2: 186 | return QString("SHA512"); 187 | } 188 | } 189 | 190 | void MainWindow::on_pushButtonSign_clicked() 191 | { 192 | if (busy) 193 | { 194 | return; 195 | } 196 | 197 | busy = true; 198 | 199 | if (ui->lineEditTimestampServer->text().isEmpty()) 200 | ui->lineEditTimestampServer->setText(Constants::Settings::DefaultValues::timestampServerUrl); 201 | 202 | const QString pfxFilePath = ui->lineEditPfxFile->text(); 203 | const QString timestampServer = ui->lineEditTimestampServer->text(); 204 | 205 | if (pfxFilePath.isEmpty()) 206 | { 207 | ui->textEditSignOutput->setText("No .pfx/.p12 file selected... Please provide a valid file to use for signing!\n\nUse the \"Browse\" button above and select the code signing certificate to use!"); 208 | busy = false; 209 | return; 210 | } 211 | 212 | const bool useSHA1 = !QFile::exists(pfxFilePath) && pfxFilePath.length() == 40; 213 | 214 | if (!QFile::exists(pfxFilePath) && !useSHA1) [[unlikely]] 215 | { 216 | ui->textEditSignOutput->setText("The specified .pfx/.p12 file does not exist or access to it failed."); 217 | busy = false; 218 | return; 219 | } 220 | 221 | if (ui->listWidgetFilesToSign->count() == 0) 222 | { 223 | ui->textEditSignOutput->setText("No files to sign.\n\nPlease drag & drop one or more binaries into the list above to proceed!"); 224 | busy = false; 225 | return; 226 | } 227 | 228 | ui->textEditSignOutput->setText("Signing above specified files..."); 229 | repaint(); 230 | 231 | QString cmdBase = 232 | 233 | useSHA1 234 | ? 235 | QString("signtool.exe sign /sha1 \"%1\" /tr \"%2\" /td \"%3\" /fd \"%4\" ") 236 | .arg 237 | ( 238 | pfxFilePath, 239 | timestampServer, 240 | hashAlgoStringFromId(ui->buttonGroupTimestampHashAlgo->checkedId()), 241 | hashAlgoStringFromId(ui->buttonGroupHashAlgo->checkedId()) 242 | ) 243 | : 244 | QString("signtool.exe sign /fd \"%1\" /td \"%2\" /tr \"%3\" /f \"%4\" /p \"%5\" ") 245 | .arg 246 | ( 247 | hashAlgoStringFromId(ui->buttonGroupHashAlgo->checkedId()), 248 | hashAlgoStringFromId(ui->buttonGroupTimestampHashAlgo->checkedId()), 249 | timestampServer, 250 | pfxFilePath, 251 | ui->lineEditPfxFilePassword->text() 252 | ); 253 | 254 | QString output; 255 | output.reserve(1024); 256 | 257 | int failures = 0; 258 | 259 | for (int i = 0; i < ui->listWidgetFilesToSign->count(); ++i) 260 | { 261 | const QListWidgetItem* fileToSign = ui->listWidgetFilesToSign->item(i); 262 | const QString filePath = fileToSign->text(); 263 | 264 | QString cmd; 265 | cmd.reserve(512); 266 | cmd.append(cmdBase); 267 | cmd.append(QString("\"%1\"").arg(filePath)); 268 | 269 | STARTUPINFOW startupInfo; 270 | memset(&startupInfo, 0x00, sizeof(startupInfo)); 271 | startupInfo.cb = sizeof(startupInfo); 272 | 273 | PROCESS_INFORMATION processInformation; 274 | memset(&processInformation, 0x00, sizeof(processInformation)); 275 | 276 | BOOL success = CreateProcessW(NULL, const_cast(cmd.toStdWString().c_str()), NULL, NULL, TRUE, NORMAL_PRIORITY_CLASS | CREATE_NO_WINDOW, NULL, NULL, &startupInfo, &processInformation); 277 | 278 | DWORD error = 0; 279 | if (success) 280 | { 281 | // Wait until process completes. 282 | WaitForSingleObject(processInformation.hProcess, 1024 * 64); 283 | 284 | // Check process exit code. 285 | GetExitCodeProcess(processInformation.hProcess, &error); 286 | 287 | // Avoid memory leak by closing process handle. 288 | CloseHandle(processInformation.hProcess); 289 | 290 | if (error == 0) 291 | { 292 | output.append(QString("✅ Signed \"%1\" successfully! \n").arg(filePath)); 293 | } 294 | else 295 | { 296 | ++failures; 297 | output.append(QString("❌ Failed to sign \"%1\" \n").arg(filePath)); 298 | } 299 | 300 | ui->textEditSignOutput->setText(output); 301 | repaint(); 302 | } 303 | else 304 | { 305 | ++failures; 306 | error = GetLastError(); 307 | 308 | output.append(QString("❌ Failed to sign \"%1\" - Error %2\nPlease make sure that you have signtool.exe installed and available in your $PATH\n").arg(filePath).arg(error)); 309 | 310 | ui->textEditSignOutput->setText(output); 311 | repaint(); 312 | } 313 | } 314 | 315 | output.append(QString("----------------------------------------------------------------------\n Signed %1 / %2 files successfully! \n\n").arg(ui->listWidgetFilesToSign->count() - failures).arg(ui->listWidgetFilesToSign->count())); 316 | 317 | ui->textEditSignOutput->setText(output); 318 | repaint(); 319 | 320 | busy = false; 321 | } 322 | 323 | void MainWindow::on_pushButtonClearFilesToSignList_clicked() 324 | { 325 | ui->listWidgetFilesToSign->clear(); 326 | } 327 | 328 | void MainWindow::on_pushButtonVerifyFiles_clicked() 329 | { 330 | if (busy) 331 | { 332 | return; 333 | } 334 | 335 | busy = true; 336 | 337 | if (ui->listWidgetFilesToVerify->count() == 0) 338 | { 339 | ui->textEditFilesVerificationOutput->setText("No files to verify.\n\nPlease drag & drop one or more binaries into the list above to proceed!"); 340 | busy = false; 341 | return; 342 | } 343 | 344 | QString cmdBase = "signtool.exe verify /pa "; 345 | 346 | QString output; 347 | output.reserve(1024); 348 | 349 | int failures = 0; 350 | 351 | for (int i = 0; i < ui->listWidgetFilesToVerify->count(); ++i) 352 | { 353 | const QListWidgetItem* fileToVerify = ui->listWidgetFilesToVerify->item(i); 354 | const QString filePath = fileToVerify->text(); 355 | 356 | QString cmd; 357 | cmd.reserve(512); 358 | cmd.append(cmdBase); 359 | cmd.append(QString("\"%1\"").arg(filePath)); 360 | 361 | STARTUPINFOW startupInfo; 362 | memset(&startupInfo, 0x00, sizeof(startupInfo)); 363 | startupInfo.cb = sizeof(startupInfo); 364 | 365 | PROCESS_INFORMATION processInformation; 366 | memset(&processInformation, 0x00, sizeof(processInformation)); 367 | 368 | BOOL success = CreateProcessW(NULL, const_cast(cmd.toStdWString().c_str()), NULL, NULL, TRUE, NORMAL_PRIORITY_CLASS | CREATE_NO_WINDOW, NULL, NULL, &startupInfo, &processInformation); 369 | 370 | DWORD error = 0; 371 | if (success) 372 | { 373 | WaitForSingleObject(processInformation.hProcess, 1024 * 64); 374 | GetExitCodeProcess(processInformation.hProcess, &error); 375 | CloseHandle(processInformation.hProcess); 376 | 377 | if (error == 0) 378 | { 379 | output.append(QString("✅ \"%1\" \n").arg(filePath)); 380 | } 381 | else 382 | { 383 | ++failures; 384 | output.append(QString("❌ \"%1\" \n").arg(filePath)); 385 | } 386 | 387 | ui->textEditFilesVerificationOutput->setText(output); 388 | repaint(); 389 | } 390 | else 391 | { 392 | ++failures; 393 | error = GetLastError(); 394 | 395 | output.append(QString("❌ \"%1\" - Error %2\nPlease make sure that you have signtool.exe installed and available in your $PATH\n").arg(filePath).arg(error)); 396 | 397 | ui->textEditFilesVerificationOutput->setText(output); 398 | repaint(); 399 | } 400 | } 401 | 402 | output.append(QString("----------------------------------------------------------------------\n %1 / %2 files verified successfully! \n\n").arg(ui->listWidgetFilesToVerify->count() - failures).arg(ui->listWidgetFilesToVerify->count())); 403 | 404 | ui->textEditFilesVerificationOutput->setText(output); 405 | repaint(); 406 | 407 | busy = false; 408 | } 409 | 410 | void MainWindow::on_pushButtonClearFilesToVerifyList_clicked() 411 | { 412 | ui->listWidgetFilesToVerify->clear(); 413 | } 414 | 415 | void MainWindow::on_pushButtonPasteDigiCertTimestampServer_clicked() 416 | { 417 | ui->lineEditTimestampServer->setText("http://timestamp.digicert.com"); 418 | } 419 | 420 | void MainWindow::on_pushButtonPasteSectigoTimestampServer_clicked() 421 | { 422 | ui->lineEditTimestampServer->setText("http://timestamp.sectigo.com"); 423 | } 424 | 425 | void MainWindow::on_pushButtonPasteGlobalSignTimestampServer_clicked() 426 | { 427 | ui->lineEditTimestampServer->setText("http://timestamp.globalsign.com/tsa/r6advanced1"); 428 | } 429 | 430 | void MainWindow::on_pushButtonPasteCertumTimestampServer_clicked() 431 | { 432 | ui->lineEditTimestampServer->setText("http://time.certum.pl"); 433 | } 434 | 435 | void MainWindow::on_pushButtonRevertAllSettingsToDefaultValues_clicked() 436 | { 437 | QMessageBox msgBox; 438 | msgBox.setText("Are you absolutely sure?"); 439 | msgBox.setInformativeText("This action is irreversible! Do you really want to revert all settings to their default values?\n\nThis also clears the .pfx/.p12 file path and password fields."); 440 | msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No); 441 | msgBox.setDefaultButton(QMessageBox::No); 442 | 443 | const int r = msgBox.exec(); 444 | if (r != QMessageBox::Yes) 445 | { 446 | return; 447 | } 448 | 449 | ui->checkBoxSaveHashAlgoOnQuit->setChecked(true); 450 | ui->checkBoxSavePfxFilePathOnQuit->setChecked(true); 451 | ui->checkBoxSaveTimestampHashAlgoOnQuit->setChecked(true); 452 | ui->checkBoxSaveTimestampServerUrlOnQuit->setChecked(true); 453 | ui->checkBoxSaveWindowSizeOnQuit->setChecked(false); 454 | 455 | ui->radioButtonHashAlgoSHA512->setChecked(true); 456 | ui->radioButtonTimestampHashAlgoSHA512->setChecked(true); 457 | 458 | ui->lineEditTimestampServer->setText(Constants::Settings::DefaultValues::timestampServerUrl); 459 | 460 | ui->lineEditPfxFile->clear(); 461 | ui->lineEditPfxFilePassword->clear(); 462 | 463 | resize(minimumWidth(), minimumHeight()); 464 | } 465 | -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | 6 | QT_BEGIN_NAMESPACE 7 | namespace Ui { 8 | class MainWindow; 9 | } 10 | QT_END_NAMESPACE 11 | 12 | class MainWindow : public QMainWindow 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | MainWindow(QWidget* parent = nullptr); 18 | ~MainWindow(); 19 | 20 | private slots: 21 | void on_pushButtonBrowsePfxFile_clicked(); 22 | 23 | void on_pushButtonShowPfxFilePassword_pressed(); 24 | 25 | void on_pushButtonShowPfxFilePassword_released(); 26 | 27 | void on_pushButtonSign_clicked(); 28 | 29 | void on_pushButtonClearFilesToSignList_clicked(); 30 | 31 | void on_pushButtonVerifyFiles_clicked(); 32 | 33 | void on_pushButtonClearFilesToVerifyList_clicked(); 34 | 35 | void on_pushButtonPasteDigiCertTimestampServer_clicked(); 36 | 37 | void on_pushButtonPasteSectigoTimestampServer_clicked(); 38 | 39 | void on_pushButtonPasteGlobalSignTimestampServer_clicked(); 40 | 41 | void on_pushButtonPasteCertumTimestampServer_clicked(); 42 | 43 | void on_pushButtonRevertAllSettingsToDefaultValues_clicked(); 44 | 45 | private: 46 | Ui::MainWindow* ui; 47 | bool busy = false; 48 | void loadSettings(); 49 | }; 50 | #endif // MAINWINDOW_H 51 | -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 420 10 | 630 11 | 12 | 13 | 14 | 15 | 420 16 | 630 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 0 28 | 29 | 30 | 31 | Sign 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | PFX/P12 File or SHA1 Thumbprint 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | true 49 | 50 | 51 | false 52 | 53 | 54 | Please select the code signing certificate to use for signing 55 | 56 | 57 | true 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 80 66 | 16777215 67 | 68 | 69 | 70 | Select your code signing certificate file to use for signing here! 71 | 72 | 73 | Browse 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | Password 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | QLineEdit::Password 96 | 97 | 98 | If above file is protected, enter the password here 99 | 100 | 101 | true 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 80 110 | 16777215 111 | 112 | 113 | 114 | Show 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | Files to sign (*.exe, *.msi, *.dll, *.cab, *.cat, *.appx, *.vbs, *.ps1) 126 | 127 | 128 | 129 | 130 | 131 | 132 | true 133 | 134 | 135 | true 136 | 137 | 138 | QAbstractItemView::DragDrop 139 | 140 | 141 | true 142 | 143 | 144 | QAbstractItemView::MultiSelection 145 | 146 | 147 | false 148 | 149 | 150 | 151 | 152 | 153 | 154 | 8 155 | 156 | 157 | 8 158 | 159 | 160 | 8 161 | 162 | 163 | 164 | 165 | Sign all 166 | 167 | 168 | 169 | 170 | 171 | 172 | Clear list 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | Output 182 | 183 | 184 | 185 | 186 | 187 | 188 | true 189 | 190 | 191 | false 192 | 193 | 194 | true 195 | 196 | 197 | Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | Verify 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | Files to verify (*.exe, *.msi, *.dll, *.cab, *.cat, *.appx, *.vbs, *.ps1) 214 | 215 | 216 | 217 | 218 | 219 | 220 | true 221 | 222 | 223 | true 224 | 225 | 226 | QAbstractItemView::DragDrop 227 | 228 | 229 | QAbstractItemView::MultiSelection 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 8 239 | 240 | 241 | 8 242 | 243 | 244 | 245 | 246 | Verify all 247 | 248 | 249 | 250 | 251 | 252 | 253 | Clear list 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | Output 265 | 266 | 267 | 268 | 269 | 270 | 271 | true 272 | 273 | 274 | false 275 | 276 | 277 | true 278 | 279 | 280 | Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | Settings 291 | 292 | 293 | 294 | 295 | 296 | Should the last selected .pfx/.p12 file be saved between sessions? 297 | 298 | 299 | Save .pfx/.p12 file on quit 300 | 301 | 302 | true 303 | 304 | 305 | 306 | 307 | 308 | 309 | Should the hashing algorithm setting below be saved between sessions? 310 | 311 | 312 | Save hashing algorithm on quit 313 | 314 | 315 | true 316 | 317 | 318 | 319 | 320 | 321 | 322 | Should the timestamp hashing algorithm setting below be saved between sessions? 323 | 324 | 325 | Save timestamp hashing algorithm on quit 326 | 327 | 328 | true 329 | 330 | 331 | 332 | 333 | 334 | 335 | Should the timestamp server url below be saved between sessions? 336 | 337 | 338 | Save timestamp server url on quit 339 | 340 | 341 | true 342 | 343 | 344 | 345 | 346 | 347 | 348 | Save window size on quit 349 | 350 | 351 | 352 | 353 | 354 | 355 | 4 356 | 357 | 358 | 359 | 360 | Hashing algorithm 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | SHA256 370 | 371 | 372 | false 373 | 374 | 375 | buttonGroupHashAlgo 376 | 377 | 378 | 379 | 380 | 381 | 382 | SHA384 383 | 384 | 385 | buttonGroupHashAlgo 386 | 387 | 388 | 389 | 390 | 391 | 392 | SHA512 393 | 394 | 395 | true 396 | 397 | 398 | buttonGroupHashAlgo 399 | 400 | 401 | 402 | 403 | 404 | 405 | Qt::Horizontal 406 | 407 | 408 | 409 | 40 410 | 20 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 4 423 | 424 | 425 | 426 | 427 | The digest algorithm to use by the RFC 3161 timestamp server (this is no guarantee: some servers ignore this parameter entirely). 428 | 429 | 430 | Timestamp hashing algorithm 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | SHA256 440 | 441 | 442 | false 443 | 444 | 445 | buttonGroupTimestampHashAlgo 446 | 447 | 448 | 449 | 450 | 451 | 452 | SHA384 453 | 454 | 455 | buttonGroupTimestampHashAlgo 456 | 457 | 458 | 459 | 460 | 461 | 462 | SHA512 463 | 464 | 465 | true 466 | 467 | 468 | buttonGroupTimestampHashAlgo 469 | 470 | 471 | 472 | 473 | 474 | 475 | Qt::Horizontal 476 | 477 | 478 | 479 | 40 480 | 20 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 4 493 | 494 | 495 | 496 | 497 | Timestamp server 498 | 499 | 500 | 501 | 502 | 503 | 504 | http://timestamp.digicert.com 505 | 506 | 507 | http://timestamp.digicert.com 508 | 509 | 510 | true 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 4 520 | 521 | 522 | 523 | 524 | Commonly used timestamp servers 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | DigiCert 534 | 535 | 536 | 537 | 538 | 539 | 540 | Sectigo 541 | 542 | 543 | 544 | 545 | 546 | 547 | GlobalSign 548 | 549 | 550 | 551 | 552 | 553 | 554 | Certum 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | Qt::Vertical 566 | 567 | 568 | 569 | 20 570 | 303 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | This button reverts all the above settings to their default values. 579 | 580 | 581 | Restore all default settings 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | About 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | About Signtool GUI 598 | 599 | 600 | 601 | 602 | 603 | 604 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> 605 | <html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> 606 | p, li { white-space: pre-wrap; } 607 | hr { height: 1px; border-width: 0; } 608 | li.unchecked::marker { content: "\2610"; } 609 | li.checked::marker { content: "\2612"; } 610 | </style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> 611 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Signtool GUI</span> is an easy, minimal and user friendly graphical user interface around the Windows SDK CLI &quot;<span style=" font-family:'Courier New'; font-weight:700;">signtool.exe</span>&quot;. It provides a straightforward visualization of it, nothing more.</p> 612 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 613 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">It's very handy for signing your binaries without using a command line interface.</p> 614 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 615 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Select your code signing certificate (a <span style=" font-family:'Courier New';">.pfx</span> or <span style=" font-family:'Courier New';">.p12</span> file), enter its password, drag &amp; drop the binaries you wish to sign into the list field and hit &quot;Sign all&quot;. Done! No big deal.</p> 616 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 617 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Using a YubiKey/Physical SmartCard for code signing? No problem! Just enter your code signing certificate's SHA1 thumbprint into the file path field.</p> 618 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 619 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This GUI's source code is <a href="https://github.com/GlitchedPolygons/Argon2GUI/blob/main/LICENSE"><span style=" text-decoration: underline; color:#007af4;">GPL-3.0</span></a> licensed and available on <a href="https://github.com/GlitchedPolygons/SigntoolGUI"><span style=" text-decoration: underline; color:#007af4;">github.com/GlitchedPolygons/SigntoolGUI</span></a> - but also available for purchase on <a href="https://glitchedpolygons.com"><span style=" text-decoration: underline; color:#007af4;">glitchedpolygons.com</span></a> (ships with some cool, additional stuff, PDF files/manual, etc...). </p> 620 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 621 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Please consider buying it from there to support the development of nifty tools like this :)</p> 622 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 623 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Copyright (C) 2022-2024<br />Raphael Beck | <a href="https://glitchedpolygons.com"><span style=" text-decoration: underline; color:#007af4;">Glitched Polygons GmbH</span></a></p></body></html> 624 | 625 | 626 | true 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | Qt | Legal notice 638 | 639 | 640 | 641 | 642 | 643 | 644 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> 645 | <html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> 646 | p, li { white-space: pre-wrap; } 647 | hr { height: 1px; border-width: 0; } 648 | li.unchecked::marker { content: "\2610"; } 649 | li.checked::marker { content: "\2612"; } 650 | </style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> 651 | <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Signtool GUI - Legal Notice</span></p> 652 | <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This project makes use of the following components, which are, at the time of writing, open-source and freely available under their respective licenses:</p> 653 | <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"> 654 | <li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://www.qt.io"><span style=" text-decoration: underline; color:#007af4;">Qt</span></a> 655 | <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 2;"> 656 | <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">License: LGPL-3.0</li></ul></li></ul> 657 | <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 2;"> 658 | <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Copyright: The Qt Company</li></ul> 659 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 660 | <hr /> 661 | <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">License texts:</p> 662 | <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Qt:</span></p> 663 | <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">GNU LESSER GENERAL PUBLIC LICENSE</span></p> 664 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Version 3, 29 June 2007</span></p> 665 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 666 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Copyright (C) 2007 Free Software Foundation, Inc. &lt;http://fsf.org/&gt;</span></p> 667 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Everyone is permitted to copy and distribute verbatim copies</span></p> 668 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> of this license document, but changing it is not allowed.</span></p> 669 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 670 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> This version of the GNU Lesser General Public License incorporates</span></p> 671 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">the terms and conditions of version 3 of the GNU General Public</span></p> 672 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">License, supplemented by the additional permissions listed below.</span></p> 673 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 674 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 0. Additional Definitions.</span></p> 675 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 676 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> As used herein, &quot;this License&quot; refers to version 3 of the GNU Lesser</span></p> 677 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">General Public License, and the &quot;GNU GPL&quot; refers to version 3 of the GNU</span></p> 678 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">General Public License.</span></p> 679 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 680 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> &quot;The Library&quot; refers to a covered work governed by this License,</span></p> 681 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">other than an Application or a Combined Work as defined below.</span></p> 682 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 683 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> An &quot;Application&quot; is any work that makes use of an interface provided</span></p> 684 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">by the Library, but which is not otherwise based on the Library.</span></p> 685 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Defining a subclass of a class defined by the Library is deemed a mode</span></p> 686 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">of using an interface provided by the Library.</span></p> 687 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 688 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> A &quot;Combined Work&quot; is a work produced by combining or linking an</span></p> 689 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Application with the Library. The particular version of the Library</span></p> 690 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">with which the Combined Work was made is also called the &quot;Linked</span></p> 691 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Version&quot;.</span></p> 692 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 693 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> The &quot;Minimal Corresponding Source&quot; for a Combined Work means the</span></p> 694 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Corresponding Source for the Combined Work, excluding any source code</span></p> 695 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">for portions of the Combined Work that, considered in isolation, are</span></p> 696 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">based on the Application, and not on the Linked Version.</span></p> 697 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 698 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> The &quot;Corresponding Application Code&quot; for a Combined Work means the</span></p> 699 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">object code and/or source code for the Application, including any data</span></p> 700 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">and utility programs needed for reproducing the Combined Work from the</span></p> 701 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Application, but excluding the System Libraries of the Combined Work.</span></p> 702 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 703 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 1. Exception to Section 3 of the GNU GPL.</span></p> 704 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 705 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> You may convey a covered work under sections 3 and 4 of this License</span></p> 706 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">without being bound by section 3 of the GNU GPL.</span></p> 707 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 708 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 2. Conveying Modified Versions.</span></p> 709 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 710 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> If you modify a copy of the Library, and, in your modifications, a</span></p> 711 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">facility refers to a function or data to be supplied by an Application</span></p> 712 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">that uses the facility (other than as an argument passed when the</span></p> 713 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">facility is invoked), then you may convey a copy of the modified</span></p> 714 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">version:</span></p> 715 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 716 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> a) under this License, provided that you make a good faith effort to</span></p> 717 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> ensure that, in the event an Application does not supply the</span></p> 718 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> function or data, the facility still operates, and performs</span></p> 719 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> whatever part of its purpose remains meaningful, or</span></p> 720 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 721 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> b) under the GNU GPL, with none of the additional permissions of</span></p> 722 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> this License applicable to that copy.</span></p> 723 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 724 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 3. Object Code Incorporating Material from Library Header Files.</span></p> 725 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 726 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> The object code form of an Application may incorporate material from</span></p> 727 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">a header file that is part of the Library. You may convey such object</span></p> 728 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">code under terms of your choice, provided that, if the incorporated</span></p> 729 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">material is not limited to numerical parameters, data structure</span></p> 730 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">layouts and accessors, or small macros, inline functions and templates</span></p> 731 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">(ten or fewer lines in length), you do both of the following:</span></p> 732 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 733 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> a) Give prominent notice with each copy of the object code that the</span></p> 734 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Library is used in it and that the Library and its use are</span></p> 735 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> covered by this License.</span></p> 736 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 737 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> b) Accompany the object code with a copy of the GNU GPL and this license</span></p> 738 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> document.</span></p> 739 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 740 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 4. Combined Works.</span></p> 741 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 742 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> You may convey a Combined Work under terms of your choice that,</span></p> 743 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">taken together, effectively do not restrict modification of the</span></p> 744 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">portions of the Library contained in the Combined Work and reverse</span></p> 745 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">engineering for debugging such modifications, if you also do each of</span></p> 746 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">the following:</span></p> 747 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 748 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> a) Give prominent notice with each copy of the Combined Work that</span></p> 749 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> the Library is used in it and that the Library and its use are</span></p> 750 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> covered by this License.</span></p> 751 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 752 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> b) Accompany the Combined Work with a copy of the GNU GPL and this license</span></p> 753 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> document.</span></p> 754 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 755 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> c) For a Combined Work that displays copyright notices during</span></p> 756 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> execution, include the copyright notice for the Library among</span></p> 757 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> these notices, as well as a reference directing the user to the</span></p> 758 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> copies of the GNU GPL and this license document.</span></p> 759 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 760 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> d) Do one of the following:</span></p> 761 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 762 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 0) Convey the Minimal Corresponding Source under the terms of this</span></p> 763 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> License, and the Corresponding Application Code in a form</span></p> 764 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> suitable for, and under terms that permit, the user to</span></p> 765 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> recombine or relink the Application with a modified version of</span></p> 766 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> the Linked Version to produce a modified Combined Work, in the</span></p> 767 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> manner specified by section 6 of the GNU GPL for conveying</span></p> 768 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Corresponding Source.</span></p> 769 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 770 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 1) Use a suitable shared library mechanism for linking with the</span></p> 771 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Library. A suitable mechanism is one that (a) uses at run time</span></p> 772 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> a copy of the Library already present on the user's computer</span></p> 773 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> system, and (b) will operate properly with a modified version</span></p> 774 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> of the Library that is interface-compatible with the Linked</span></p> 775 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Version.</span></p> 776 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 777 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> e) Provide Installation Information, but only if you would otherwise</span></p> 778 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> be required to provide such information under section 6 of the</span></p> 779 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> GNU GPL, and only to the extent that such information is</span></p> 780 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> necessary to install and execute a modified version of the</span></p> 781 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Combined Work produced by recombining or relinking the</span></p> 782 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Application with a modified version of the Linked Version. (If</span></p> 783 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> you use option 4d0, the Installation Information must accompany</span></p> 784 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> the Minimal Corresponding Source and Corresponding Application</span></p> 785 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Code. If you use option 4d1, you must provide the Installation</span></p> 786 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Information in the manner specified by section 6 of the GNU GPL</span></p> 787 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> for conveying Corresponding Source.)</span></p> 788 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 789 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 5. Combined Libraries.</span></p> 790 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 791 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> You may place library facilities that are a work based on the</span></p> 792 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Library side by side in a single library together with other library</span></p> 793 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">facilities that are not Applications and are not covered by this</span></p> 794 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">License, and convey such a combined library under terms of your</span></p> 795 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">choice, if you do both of the following:</span></p> 796 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 797 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> a) Accompany the combined library with a copy of the same work based</span></p> 798 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> on the Library, uncombined with any other library facilities,</span></p> 799 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> conveyed under the terms of this License.</span></p> 800 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 801 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> b) Give prominent notice with the combined library that part of it</span></p> 802 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> is a work based on the Library, and explaining where to find the</span></p> 803 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> accompanying uncombined form of the same work.</span></p> 804 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 805 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> 6. Revised Versions of the GNU Lesser General Public License.</span></p> 806 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 807 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> The Free Software Foundation may publish revised and/or new versions</span></p> 808 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">of the GNU Lesser General Public License from time to time. Such new</span></p> 809 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">versions will be similar in spirit to the present version, but may</span></p> 810 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">differ in detail to address new problems or concerns.</span></p> 811 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 812 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> Each version is given a distinguishing version number. If the</span></p> 813 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Library as you received it specifies that a certain numbered version</span></p> 814 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">of the GNU Lesser General Public License &quot;or any later version&quot;</span></p> 815 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">applies to it, you have the option of following the terms and</span></p> 816 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">conditions either of that published version or of any later version</span></p> 817 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">published by the Free Software Foundation. If the Library as you</span></p> 818 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">received it does not specify a version number of the GNU Lesser</span></p> 819 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">General Public License, you may choose any version of the GNU Lesser</span></p> 820 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">General Public License ever published by the Free Software Foundation.</span></p> 821 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; font-size:8pt;"><br /></p> 822 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;"> If the Library as you received it specifies that a proxy can decide</span></p> 823 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">whether future versions of the GNU Lesser General Public License shall</span></p> 824 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">apply, that proxy's public statement of acceptance of any version is</span></p> 825 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">permanent authorization for you to choose that version for the</span></p> 826 | <p style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; font-size:8pt;">Library.</span></p> 827 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> 828 | <hr /></body></html> 829 | 830 | 831 | true 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 0 847 | 0 848 | 420 849 | 17 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | QFilesListDragAndDrop 858 | QListWidget 859 |
qfileslistdraganddrop.h
860 |
861 |
862 | 863 | 864 | 865 | 866 | 867 | 868 |
869 | -------------------------------------------------------------------------------- /src/qfileslistdraganddrop.cpp: -------------------------------------------------------------------------------- 1 | #include "qfileslistdraganddrop.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | 11 | QFilesListDragAndDrop::QFilesListDragAndDrop(QWidget* parent) : QListWidget { parent } 12 | { 13 | setSelectionMode(QAbstractItemView::SingleSelection); 14 | setMouseTracking(true); 15 | setAcceptDrops(true); 16 | setDragEnabled(true); 17 | setDragDropMode(QAbstractItemView::DragDrop); 18 | setDropIndicatorShown(true); 19 | viewport()->setAcceptDrops(true); 20 | 21 | } 22 | 23 | static const inline bool isValidFileExtension(const QUrl& url) 24 | { 25 | if (url.toLocalFile().endsWith(".exe", Qt::CaseInsensitive) 26 | || url.toLocalFile().endsWith(".msi", Qt::CaseInsensitive) 27 | || url.toLocalFile().endsWith(".dll", Qt::CaseInsensitive) 28 | || url.toLocalFile().endsWith(".cab", Qt::CaseInsensitive) 29 | || url.toLocalFile().endsWith(".cat", Qt::CaseInsensitive) 30 | || url.toLocalFile().endsWith(".vbs", Qt::CaseInsensitive) 31 | || url.toLocalFile().endsWith(".ps1", Qt::CaseInsensitive) 32 | || url.toLocalFile().endsWith(".appx", Qt::CaseInsensitive)) 33 | { 34 | return true; 35 | } 36 | 37 | return false; 38 | } 39 | 40 | void QFilesListDragAndDrop::dragEnterEvent(QDragEnterEvent* event) 41 | { 42 | if (!event->mimeData()->hasUrls()) 43 | { 44 | event->ignore(); 45 | return; 46 | } 47 | 48 | bool valid = false; 49 | 50 | for (const QUrl& url : event->mimeData()->urls()) 51 | { 52 | if (isValidFileExtension(url)) 53 | { 54 | valid = true; 55 | break; 56 | } 57 | } 58 | 59 | if (!valid) 60 | { 61 | event->ignore(); 62 | return; 63 | } 64 | 65 | event->setDropAction(Qt::DropAction::CopyAction); 66 | event->accept(); 67 | } 68 | 69 | void QFilesListDragAndDrop::dragMoveEvent(QDragMoveEvent* event) 70 | { 71 | if (!event->mimeData()->hasUrls()) 72 | { 73 | event->ignore(); 74 | return; 75 | } 76 | 77 | event->setDropAction(Qt::DropAction::CopyAction); 78 | event->accept(); 79 | } 80 | 81 | void QFilesListDragAndDrop::dropEvent(QDropEvent* event) 82 | { 83 | if (!event->mimeData()->hasUrls()) 84 | { 85 | event->setAccepted(false); 86 | return; 87 | } 88 | 89 | for (const QUrl& url : event->mimeData()->urls()) 90 | { 91 | if (!isValidFileExtension(url)) 92 | { 93 | continue; 94 | } 95 | 96 | const QString filePath = url.toLocalFile(); 97 | const QFileInfo fileInfo(filePath); 98 | 99 | if (!fileInfo.exists() || fileInfo.isDir() || !findItems(filePath, Qt::MatchFixedString).empty()) 100 | { 101 | continue; 102 | } 103 | 104 | this->addItem(filePath); 105 | } 106 | 107 | event->setAccepted(true); 108 | } 109 | 110 | void QFilesListDragAndDrop::keyPressEvent(QKeyEvent* event) 111 | { 112 | if (event->key() == Qt::Key::Key_Delete) 113 | { 114 | for (QListWidgetItem* selectedItem : this->selectedItems()) 115 | { 116 | delete this->takeItem(this->row(selectedItem)); 117 | } 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /src/qfileslistdraganddrop.h: -------------------------------------------------------------------------------- 1 | #ifndef QFILESLISTDRAGANDDROP_H 2 | #define QFILESLISTDRAGANDDROP_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | class QFilesListDragAndDrop : public QListWidget 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | explicit QFilesListDragAndDrop(QWidget* parent = nullptr); 14 | 15 | protected: 16 | void keyPressEvent(QKeyEvent* event) override; 17 | void dragEnterEvent(QDragEnterEvent*) override; 18 | void dragMoveEvent(QDragMoveEvent*) override; 19 | void dropEvent(QDropEvent*) override; 20 | }; 21 | 22 | #endif // QFILESLISTDRAGANDDROP_H 23 | --------------------------------------------------------------------------------