diff --git a/CMakeLists.txt b/CMakeLists.txt index 386bfae..c0bd174 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. cmake_minimum_required(VERSION 3.16) diff --git a/CodeGenerator/CMakeLists.txt b/CodeGenerator/CMakeLists.txt index aa63def..b095c4c 100644 --- a/CodeGenerator/CMakeLists.txt +++ b/CodeGenerator/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(CodeGenerator codegenerator.cpp diff --git a/CodeGenerator/codegenerator.cpp b/CodeGenerator/codegenerator.cpp index 5500b3e..0288a63 100644 --- a/CodeGenerator/codegenerator.cpp +++ b/CodeGenerator/codegenerator.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "codegenerator.h" diff --git a/CodeGenerator/codegenerator.h b/CodeGenerator/codegenerator.h index a6f926f..4793ee2 100644 --- a/CodeGenerator/codegenerator.h +++ b/CodeGenerator/codegenerator.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef CODEGENERATOR_H #define CODEGENERATOR_H diff --git a/CodeGenerator/generatormainwindow.cpp b/CodeGenerator/generatormainwindow.cpp index 5f487ff..177d3f1 100644 --- a/CodeGenerator/generatormainwindow.cpp +++ b/CodeGenerator/generatormainwindow.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "generatormainwindow.h" #include "ui_generatormainwindow.h" diff --git a/CodeGenerator/generatormainwindow.h b/CodeGenerator/generatormainwindow.h index 2828b24..a13461a 100644 --- a/CodeGenerator/generatormainwindow.h +++ b/CodeGenerator/generatormainwindow.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef GENERATORMAINWINDOW_H #define GENERATORMAINWINDOW_H diff --git a/CodeGenerator/main.cpp b/CodeGenerator/main.cpp index def279b..0af6f37 100644 --- a/CodeGenerator/main.cpp +++ b/CodeGenerator/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "generatormainwindow.h" diff --git a/JBIG2_Viewer/CMakeLists.txt b/JBIG2_Viewer/CMakeLists.txt index 2bfc14b..085f5e1 100644 --- a/JBIG2_Viewer/CMakeLists.txt +++ b/JBIG2_Viewer/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(JBIG2_VIEWER mainwindow.ui diff --git a/JBIG2_Viewer/main.cpp b/JBIG2_Viewer/main.cpp index 97190a8..71be933 100644 --- a/JBIG2_Viewer/main.cpp +++ b/JBIG2_Viewer/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "mainwindow.h" diff --git a/JBIG2_Viewer/mainwindow.cpp b/JBIG2_Viewer/mainwindow.cpp index 21f8a5d..54af00c 100644 --- a/JBIG2_Viewer/mainwindow.cpp +++ b/JBIG2_Viewer/mainwindow.cpp @@ -1,3 +1,25 @@ +// MIT License +// +// Copyright (c) 2018-2025 Jakub Melka and Contributors +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + #include "mainwindow.h" #include "ui_mainwindow.h" diff --git a/LICENSE b/LICENSE index 85443da..0955e65 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2025 Jakub Melka +Copyright (c) 2018-2025 Jakub Melka and Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Pdf4QtDiff/CMakeLists.txt b/Pdf4QtDiff/CMakeLists.txt index c4bcd93..5dcf06e 100644 --- a/Pdf4QtDiff/CMakeLists.txt +++ b/Pdf4QtDiff/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2024 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(Pdf4QtDiff aboutdialog.cpp diff --git a/Pdf4QtDiff/aboutdialog.cpp b/Pdf4QtDiff/aboutdialog.cpp index 34ca4dc..95e3ac2 100644 --- a/Pdf4QtDiff/aboutdialog.cpp +++ b/Pdf4QtDiff/aboutdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "aboutdialog.h" #include "ui_aboutdialog.h" diff --git a/Pdf4QtDiff/aboutdialog.h b/Pdf4QtDiff/aboutdialog.h index 3316d96..71d8be5 100644 --- a/Pdf4QtDiff/aboutdialog.h +++ b/Pdf4QtDiff/aboutdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_PDFABOUTDIALOG_H #define PDFDIFF_PDFABOUTDIALOG_H diff --git a/Pdf4QtDiff/differencesdockwidget.cpp b/Pdf4QtDiff/differencesdockwidget.cpp index 6f05183..b8d254f 100644 --- a/Pdf4QtDiff/differencesdockwidget.cpp +++ b/Pdf4QtDiff/differencesdockwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "differencesdockwidget.h" #include "ui_differencesdockwidget.h" diff --git a/Pdf4QtDiff/differencesdockwidget.h b/Pdf4QtDiff/differencesdockwidget.h index c696110..dd97efd 100644 --- a/Pdf4QtDiff/differencesdockwidget.h +++ b/Pdf4QtDiff/differencesdockwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_DIFFERENCESDOCKWIDGET_H #define PDFDIFF_DIFFERENCESDOCKWIDGET_H diff --git a/Pdf4QtDiff/main.cpp b/Pdf4QtDiff/main.cpp index 7aee28d..2110a20 100644 --- a/Pdf4QtDiff/main.cpp +++ b/Pdf4QtDiff/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfconstants.h" #include "pdfdocumentreader.h" diff --git a/Pdf4QtDiff/mainwindow.cpp b/Pdf4QtDiff/mainwindow.cpp index ed88f23..e5d7c49 100644 --- a/Pdf4QtDiff/mainwindow.cpp +++ b/Pdf4QtDiff/mainwindow.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "mainwindow.h" #include "ui_mainwindow.h" diff --git a/Pdf4QtDiff/mainwindow.h b/Pdf4QtDiff/mainwindow.h index 21dd3e7..85fefbc 100644 --- a/Pdf4QtDiff/mainwindow.h +++ b/Pdf4QtDiff/mainwindow.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_MAINWINDOW_H #define PDFDIFF_MAINWINDOW_H diff --git a/Pdf4QtDiff/settings.h b/Pdf4QtDiff/settings.h index f7ef481..0e191cd 100644 --- a/Pdf4QtDiff/settings.h +++ b/Pdf4QtDiff/settings.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_SETTINGS_H #define PDFDIFF_SETTINGS_H diff --git a/Pdf4QtDiff/settingsdockwidget.cpp b/Pdf4QtDiff/settingsdockwidget.cpp index 6785049..6bb5d45 100644 --- a/Pdf4QtDiff/settingsdockwidget.cpp +++ b/Pdf4QtDiff/settingsdockwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "settingsdockwidget.h" #include "ui_settingsdockwidget.h" diff --git a/Pdf4QtDiff/settingsdockwidget.h b/Pdf4QtDiff/settingsdockwidget.h index 0768b0b..f140fc7 100644 --- a/Pdf4QtDiff/settingsdockwidget.h +++ b/Pdf4QtDiff/settingsdockwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_SETTINGSDOCKWIDGET_H #define PDFDIFF_SETTINGSDOCKWIDGET_H diff --git a/Pdf4QtDiff/utils.cpp b/Pdf4QtDiff/utils.cpp index c436911..c63889b 100644 --- a/Pdf4QtDiff/utils.cpp +++ b/Pdf4QtDiff/utils.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "utils.h" #include "pdfutils.h" diff --git a/Pdf4QtDiff/utils.h b/Pdf4QtDiff/utils.h index 6f43869..a369da5 100644 --- a/Pdf4QtDiff/utils.h +++ b/Pdf4QtDiff/utils.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_UTILS_H #define PDFDIFF_UTILS_H diff --git a/Pdf4QtEditor/CMakeLists.txt b/Pdf4QtEditor/CMakeLists.txt index 814afcc..99abd77 100644 --- a/Pdf4QtEditor/CMakeLists.txt +++ b/Pdf4QtEditor/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2024 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(Pdf4QtEditor main.cpp diff --git a/Pdf4QtEditor/main.cpp b/Pdf4QtEditor/main.cpp index 720d892..7e3d752 100644 --- a/Pdf4QtEditor/main.cpp +++ b/Pdf4QtEditor/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfeditormainwindow.h" #include "pdfconstants.h" diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/AudioBookPlugin/CMakeLists.txt index b696d78..765d73c 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(AudioBookPlugin SHARED audiobookcreator.cpp diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp index 146f5e9..4a48af9 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "audiobookcreator.h" diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.h b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.h index 7d762e0..ae32f0b 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.h +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef AUDIOBOOKCREATOR_H #define AUDIOBOOKCREATOR_H diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.cpp b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.cpp index 43e3f4a..ce00695 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.cpp +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "audiobookplugin.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.h b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.h index 6b38b29..d793216 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.h +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef AUDIOBOOKPLUGIN_H #define AUDIOBOOKPLUGIN_H diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.cpp b/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.cpp index eddcf05..e1f1619 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.cpp +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "audiotextstreameditordockwidget.h" #include "ui_audiotextstreameditordockwidget.h" diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.h b/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.h index f6aa216..1ab0c59 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.h +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiotextstreameditordockwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef AUDIOTEXTSTREAMEDITORDOCKWIDGET_H #define AUDIOTEXTSTREAMEDITORDOCKWIDGET_H diff --git a/Pdf4QtEditorPlugins/CMakeLists.txt b/Pdf4QtEditorPlugins/CMakeLists.txt index 177f01c..33019ca 100644 --- a/Pdf4QtEditorPlugins/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. if(PDF4QT_LINUX) set(PDF4QT_PLUGINS_DIR ${PDF4QT_INSTALL_LIB_DIR}/pdf4qt) diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/DimensionsPlugin/CMakeLists.txt index 7fb4947..aeaf438 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(DimensionsPlugin SHARED dimensionsplugin.cpp diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.cpp b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.cpp index 8a72b2f..80aff03 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.cpp +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "dimensionsplugin.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.h b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.h index bd00523..45e42a6 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.h +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensionsplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef DIMENSIONSPLUGIN_H #define DIMENSIONSPLUGIN_H diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.cpp b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.cpp index 2dc4848..5e1191c 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.cpp +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "dimensiontool.h" #include "pdfwidgetutils.h" diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.h b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.h index e2112f1..ca427cc 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.h +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/dimensiontool.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef DIMENSIONTOOL_H #define DIMENSIONTOOL_H diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.cpp b/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.cpp index 658ab5d..50748a1 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.cpp +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "settingsdialog.h" #include "ui_settingsdialog.h" diff --git a/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.h b/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.h index 51f8d8b..242479f 100644 --- a/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.h +++ b/Pdf4QtEditorPlugins/DimensionsPlugin/settingsdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef SETTINGSDIALOG_H #define SETTINGSDIALOG_H diff --git a/Pdf4QtEditorPlugins/EditorPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/EditorPlugin/CMakeLists.txt index 3e38b82..31988ac 100644 --- a/Pdf4QtEditorPlugins/EditorPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/EditorPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(EditorPlugin SHARED editorplugin.cpp diff --git a/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp b/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp index b85f29b..04643e8 100644 --- a/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp +++ b/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "editorplugin.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.h b/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.h index 394c128..8335f70 100644 --- a/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.h +++ b/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef EDITORSPLUGIN_H #define EDITORSPLUGIN_H diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/CMakeLists.txt index a3c8435..4451a5b 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(ObjectInspectorPlugin SHARED objectinspectordialog.cpp diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.cpp b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.cpp index 0714475..14ecded 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.cpp +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "objectinspectordialog.h" #include "ui_objectinspectordialog.h" diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.h b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.h index b20444f..67fddaa 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.h +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectordialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OBJECTINSPECTORDIALOG_H #define OBJECTINSPECTORDIALOG_H diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.cpp b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.cpp index 97169a4..b80766d 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.cpp +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "objectinspectorplugin.h" diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.h b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.h index 4858203..e774f1a 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.h +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectinspectorplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OBJECTINSPECTORPLUGIN_H #define OBJECTINSPECTORPLUGIN_H diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.cpp b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.cpp index 339bfd6..222d813 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.cpp +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "objectstatisticsdialog.h" #include "ui_objectstatisticsdialog.h" diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.h b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.h index 76c2c14..29bc63a 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.h +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectstatisticsdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OBJECTSTATISTICSDIALOG_H #define OBJECTSTATISTICSDIALOG_H diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.cpp b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.cpp index b54b994..552fa17 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.cpp +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "objectviewerwidget.h" #include "ui_objectviewerwidget.h" diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.h b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.h index 74b928b..9d93c56 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.h +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/objectviewerwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OBJECTVIEWERWIDGET_H #define OBJECTVIEWERWIDGET_H diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.cpp b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.cpp index 14a55ce..b9b7756 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.cpp +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfobjectinspectortreeitemmodel.h" #include "pdfdocument.h" diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.h b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.h index 102127d..c4739f7 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.h +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/pdfobjectinspectortreeitemmodel.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOBJECTINSPECTORTREEITEMMODEL_H #define PDFOBJECTINSPECTORTREEITEMMODEL_H diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.cpp b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.cpp index a4c29da..d2690f0 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.cpp +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "statisticsgraphwidget.h" #include "ui_statisticsgraphwidget.h" diff --git a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.h b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.h index ac3fe43..4303d20 100644 --- a/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.h +++ b/Pdf4QtEditorPlugins/ObjectInspectorPlugin/statisticsgraphwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef STATISTICSGRAPHWIDGET_H #define STATISTICSGRAPHWIDGET_H diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/OutputPreviewPlugin/CMakeLists.txt index b28aae3..15e6295 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(OutputPreviewPlugin SHARED inkcoveragedialog.cpp diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.cpp b/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.cpp index 292bb92..33d8d59 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.cpp +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "inkcoveragedialog.h" #include "ui_inkcoveragedialog.h" diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.h b/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.h index ef62cff..bb8162a 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.h +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/inkcoveragedialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef INKCOVERAGEDIALOG_H #define INKCOVERAGEDIALOG_H diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.cpp b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.cpp index 953546d..8471263 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.cpp +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "outputpreviewdialog.h" #include "ui_outputpreviewdialog.h" diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.h b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.h index 4e6037c..d48b08b 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.h +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OUTPUTPREVIEWDIALOG_H #define OUTPUTPREVIEWDIALOG_H diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.cpp b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.cpp index ebc85f1..c36f45d 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.cpp +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "outputpreviewplugin.h" #include "outputpreviewdialog.h" diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.h b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.h index 4028c5b..2edf1b2 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.h +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OUTPUTPREVIEWPLUGIN_H #define OUTPUTPREVIEWPLUGIN_H diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.cpp b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.cpp index 193d1d0..5062d90 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.cpp +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "outputpreviewwidget.h" diff --git a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.h b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.h index 059a002..29169da 100644 --- a/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.h +++ b/Pdf4QtEditorPlugins/OutputPreviewPlugin/outputpreviewwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef OUTPUTPREVIEWWIDGET_H #define OUTPUTPREVIEWWIDGET_H diff --git a/Pdf4QtEditorPlugins/RedactPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/RedactPlugin/CMakeLists.txt index 9acfac1..ac1bb5f 100644 --- a/Pdf4QtEditorPlugins/RedactPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/RedactPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(RedactPlugin SHARED createredacteddocumentdialog.cpp diff --git a/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.cpp b/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.cpp index dbfe472..5ccbc90 100644 --- a/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.cpp +++ b/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "createredacteddocumentdialog.h" #include "ui_createredacteddocumentdialog.h" diff --git a/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.h b/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.h index f3ef71a..b276559 100644 --- a/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.h +++ b/Pdf4QtEditorPlugins/RedactPlugin/createredacteddocumentdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef CREATEREDACTEDDOCUMENTDIALOG_H #define CREATEREDACTEDDOCUMENTDIALOG_H diff --git a/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.cpp b/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.cpp index 19473e6..d568c64 100644 --- a/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.cpp +++ b/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "redactplugin.h" #include "createredacteddocumentdialog.h" diff --git a/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.h b/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.h index 87b34a3..5715697 100644 --- a/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.h +++ b/Pdf4QtEditorPlugins/RedactPlugin/redactplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef REDACTPLUGIN_H #define REDACTPLUGIN_H diff --git a/Pdf4QtEditorPlugins/SignaturePlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/SignaturePlugin/CMakeLists.txt index c6650e0..81ea952 100644 --- a/Pdf4QtEditorPlugins/SignaturePlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/SignaturePlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(SignaturePlugin SHARED signatureplugin.cpp diff --git a/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.cpp b/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.cpp index ead6585..456b793 100644 --- a/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.cpp +++ b/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "signatureplugin.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.h b/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.h index 45167c3..76a9cf1 100644 --- a/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.h +++ b/Pdf4QtEditorPlugins/SignaturePlugin/signatureplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef SIGNATURESPLUGIN_H #define SIGNATURESPLUGIN_H diff --git a/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.cpp b/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.cpp index 7ab2876..82c1d48 100644 --- a/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.cpp +++ b/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "signdialog.h" #include "ui_signdialog.h" diff --git a/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.h b/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.h index e6734dd..3697a95 100644 --- a/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.h +++ b/Pdf4QtEditorPlugins/SignaturePlugin/signdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef SIGNDIALOG_H #define SIGNDIALOG_H diff --git a/Pdf4QtEditorPlugins/SoftProofingPlugin/CMakeLists.txt b/Pdf4QtEditorPlugins/SoftProofingPlugin/CMakeLists.txt index ea24c1c..43ac769 100644 --- a/Pdf4QtEditorPlugins/SoftProofingPlugin/CMakeLists.txt +++ b/Pdf4QtEditorPlugins/SoftProofingPlugin/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(SoftProofingPlugin SHARED softproofingplugin.cpp diff --git a/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.cpp b/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.cpp index c3ef089..ac9b390 100644 --- a/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.cpp +++ b/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "settingsdialog.h" #include "ui_settingsdialog.h" diff --git a/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.h b/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.h index 6d67693..932df5e 100644 --- a/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.h +++ b/Pdf4QtEditorPlugins/SoftProofingPlugin/settingsdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef SETTINGSDIALOG_H #define SETTINGSDIALOG_H diff --git a/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.cpp b/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.cpp index 1b53765..f1ceb0d 100644 --- a/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.cpp +++ b/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "softproofingplugin.h" #include "settingsdialog.h" diff --git a/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.h b/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.h index 692a2a7..44adfd1 100644 --- a/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.h +++ b/Pdf4QtEditorPlugins/SoftProofingPlugin/softproofingplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef SOFTPROOFINGPLUGIN_H #define SOFTPROOFINGPLUGIN_H diff --git a/Pdf4QtLaunchPad/CMakeLists.txt b/Pdf4QtLaunchPad/CMakeLists.txt index 83cb669..13021c3 100644 --- a/Pdf4QtLaunchPad/CMakeLists.txt +++ b/Pdf4QtLaunchPad/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2024 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(Pdf4QtLaunchPad main.cpp diff --git a/Pdf4QtLaunchPad/launchapplicationwidget.cpp b/Pdf4QtLaunchPad/launchapplicationwidget.cpp index c9c56db..cf0b2ae 100644 --- a/Pdf4QtLaunchPad/launchapplicationwidget.cpp +++ b/Pdf4QtLaunchPad/launchapplicationwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "launchapplicationwidget.h" #include "ui_launchapplicationwidget.h" diff --git a/Pdf4QtLaunchPad/launchapplicationwidget.h b/Pdf4QtLaunchPad/launchapplicationwidget.h index 61883c9..1669d1a 100644 --- a/Pdf4QtLaunchPad/launchapplicationwidget.h +++ b/Pdf4QtLaunchPad/launchapplicationwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef LAUNCHAPPLICATIONWIDGET_H #define LAUNCHAPPLICATIONWIDGET_H diff --git a/Pdf4QtLaunchPad/launchdialog.cpp b/Pdf4QtLaunchPad/launchdialog.cpp index eb09f27..0818108 100644 --- a/Pdf4QtLaunchPad/launchdialog.cpp +++ b/Pdf4QtLaunchPad/launchdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "launchdialog.h" #include "launchapplicationwidget.h" diff --git a/Pdf4QtLaunchPad/launchdialog.h b/Pdf4QtLaunchPad/launchdialog.h index 0245151..bbc8947 100644 --- a/Pdf4QtLaunchPad/launchdialog.h +++ b/Pdf4QtLaunchPad/launchdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef LAUNCHDIALOG_H #define LAUNCHDIALOG_H diff --git a/Pdf4QtLaunchPad/main.cpp b/Pdf4QtLaunchPad/main.cpp index f6fe252..64168c6 100644 --- a/Pdf4QtLaunchPad/main.cpp +++ b/Pdf4QtLaunchPad/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "launchdialog.h" diff --git a/Pdf4QtLibCore/CMakeLists.txt b/Pdf4QtLibCore/CMakeLists.txt index b531532..f3436e0 100644 --- a/Pdf4QtLibCore/CMakeLists.txt +++ b/Pdf4QtLibCore/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(Pdf4QtLibCore SHARED sources/pdfglobal.h diff --git a/Pdf4QtLibCore/sources/pdfaction.cpp b/Pdf4QtLibCore/sources/pdfaction.cpp index 3be3982..062bfee 100644 --- a/Pdf4QtLibCore/sources/pdfaction.cpp +++ b/Pdf4QtLibCore/sources/pdfaction.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfaction.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfaction.h b/Pdf4QtLibCore/sources/pdfaction.h index ef55c6a..d0878ef 100644 --- a/Pdf4QtLibCore/sources/pdfaction.h +++ b/Pdf4QtLibCore/sources/pdfaction.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFACTION_H #define PDFACTION_H diff --git a/Pdf4QtLibCore/sources/pdfalgorithmlcs.cpp b/Pdf4QtLibCore/sources/pdfalgorithmlcs.cpp index ee992e5..1787cf0 100644 --- a/Pdf4QtLibCore/sources/pdfalgorithmlcs.cpp +++ b/Pdf4QtLibCore/sources/pdfalgorithmlcs.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfalgorithmlcs.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfalgorithmlcs.h b/Pdf4QtLibCore/sources/pdfalgorithmlcs.h index bff6be9..08bfd80 100644 --- a/Pdf4QtLibCore/sources/pdfalgorithmlcs.h +++ b/Pdf4QtLibCore/sources/pdfalgorithmlcs.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFALGORITHMLCS_H #define PDFALGORITHMLCS_H diff --git a/Pdf4QtLibCore/sources/pdfannotation.cpp b/Pdf4QtLibCore/sources/pdfannotation.cpp index 26e9ce6..66e7fd3 100644 --- a/Pdf4QtLibCore/sources/pdfannotation.cpp +++ b/Pdf4QtLibCore/sources/pdfannotation.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfannotation.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfannotation.h b/Pdf4QtLibCore/sources/pdfannotation.h index 7e28d6e..616829d 100644 --- a/Pdf4QtLibCore/sources/pdfannotation.h +++ b/Pdf4QtLibCore/sources/pdfannotation.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFANNOTATION_H #define PDFANNOTATION_H diff --git a/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp b/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp index 40c8f96..89707f3 100644 --- a/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp +++ b/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2025-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfapplicationtranslator.h" diff --git a/Pdf4QtLibCore/sources/pdfapplicationtranslator.h b/Pdf4QtLibCore/sources/pdfapplicationtranslator.h index a290b10..682dfc7 100644 --- a/Pdf4QtLibCore/sources/pdfapplicationtranslator.h +++ b/Pdf4QtLibCore/sources/pdfapplicationtranslator.h @@ -1,19 +1,24 @@ -// Copyright (C) 2025-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFAPPLICATIONTRANSLATOR_H #define PDFAPPLICATIONTRANSLATOR_H diff --git a/Pdf4QtLibCore/sources/pdfblendfunction.cpp b/Pdf4QtLibCore/sources/pdfblendfunction.cpp index f16fa95..9548ca4 100644 --- a/Pdf4QtLibCore/sources/pdfblendfunction.cpp +++ b/Pdf4QtLibCore/sources/pdfblendfunction.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfblendfunction.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfblendfunction.h b/Pdf4QtLibCore/sources/pdfblendfunction.h index 590c213..09db739 100644 --- a/Pdf4QtLibCore/sources/pdfblendfunction.h +++ b/Pdf4QtLibCore/sources/pdfblendfunction.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFBLENDFUNCTION_H #define PDFBLENDFUNCTION_H diff --git a/Pdf4QtLibCore/sources/pdfblpainter.cpp b/Pdf4QtLibCore/sources/pdfblpainter.cpp index 007c39b..6ccedc6 100644 --- a/Pdf4QtLibCore/sources/pdfblpainter.cpp +++ b/Pdf4QtLibCore/sources/pdfblpainter.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfblpainter.h" #include "pdffont.h" diff --git a/Pdf4QtLibCore/sources/pdfblpainter.h b/Pdf4QtLibCore/sources/pdfblpainter.h index 5d65682..65a526c 100644 --- a/Pdf4QtLibCore/sources/pdfblpainter.h +++ b/Pdf4QtLibCore/sources/pdfblpainter.h @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFBLPAINTER_H #define PDFBLPAINTER_H diff --git a/Pdf4QtLibCore/sources/pdfcatalog.cpp b/Pdf4QtLibCore/sources/pdfcatalog.cpp index babb184..25bc784 100644 --- a/Pdf4QtLibCore/sources/pdfcatalog.cpp +++ b/Pdf4QtLibCore/sources/pdfcatalog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcatalog.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfcatalog.h b/Pdf4QtLibCore/sources/pdfcatalog.h index a90a011..fc9a1a9 100644 --- a/Pdf4QtLibCore/sources/pdfcatalog.h +++ b/Pdf4QtLibCore/sources/pdfcatalog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCATALOG_H #define PDFCATALOG_H diff --git a/Pdf4QtLibCore/sources/pdfccittfaxdecoder.cpp b/Pdf4QtLibCore/sources/pdfccittfaxdecoder.cpp index c170499..3750601 100644 --- a/Pdf4QtLibCore/sources/pdfccittfaxdecoder.cpp +++ b/Pdf4QtLibCore/sources/pdfccittfaxdecoder.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfccittfaxdecoder.h" #include "pdfexception.h" diff --git a/Pdf4QtLibCore/sources/pdfccittfaxdecoder.h b/Pdf4QtLibCore/sources/pdfccittfaxdecoder.h index 54f0338..16ac8f6 100644 --- a/Pdf4QtLibCore/sources/pdfccittfaxdecoder.h +++ b/Pdf4QtLibCore/sources/pdfccittfaxdecoder.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCCITTFAXDECODER_H #define PDFCCITTFAXDECODER_H diff --git a/Pdf4QtLibCore/sources/pdfcertificatemanager.cpp b/Pdf4QtLibCore/sources/pdfcertificatemanager.cpp index 1cc5fa2..f357e83 100644 --- a/Pdf4QtLibCore/sources/pdfcertificatemanager.cpp +++ b/Pdf4QtLibCore/sources/pdfcertificatemanager.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcertificatemanager.h" diff --git a/Pdf4QtLibCore/sources/pdfcertificatemanager.h b/Pdf4QtLibCore/sources/pdfcertificatemanager.h index c463737..c12af00 100644 --- a/Pdf4QtLibCore/sources/pdfcertificatemanager.h +++ b/Pdf4QtLibCore/sources/pdfcertificatemanager.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCERTIFICATEMANAGER_H #define PDFCERTIFICATEMANAGER_H diff --git a/Pdf4QtLibCore/sources/pdfcertificatestore.cpp b/Pdf4QtLibCore/sources/pdfcertificatestore.cpp index db47169..9ead12c 100644 --- a/Pdf4QtLibCore/sources/pdfcertificatestore.cpp +++ b/Pdf4QtLibCore/sources/pdfcertificatestore.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcertificatestore.h" #include "pdfutils.h" diff --git a/Pdf4QtLibCore/sources/pdfcertificatestore.h b/Pdf4QtLibCore/sources/pdfcertificatestore.h index 98054c4..0d7129e 100644 --- a/Pdf4QtLibCore/sources/pdfcertificatestore.h +++ b/Pdf4QtLibCore/sources/pdfcertificatestore.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCERTIFICATESTORE_H #define PDFCERTIFICATESTORE_H diff --git a/Pdf4QtLibCore/sources/pdfcms.cpp b/Pdf4QtLibCore/sources/pdfcms.cpp index b7518f1..da84d83 100644 --- a/Pdf4QtLibCore/sources/pdfcms.cpp +++ b/Pdf4QtLibCore/sources/pdfcms.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcms.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfcms.h b/Pdf4QtLibCore/sources/pdfcms.h index 49992f2..70eb8d6 100644 --- a/Pdf4QtLibCore/sources/pdfcms.h +++ b/Pdf4QtLibCore/sources/pdfcms.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCMS_H #define PDFCMS_H diff --git a/Pdf4QtLibCore/sources/pdfcolorconvertor.cpp b/Pdf4QtLibCore/sources/pdfcolorconvertor.cpp index befa815..b18c9ea 100644 --- a/Pdf4QtLibCore/sources/pdfcolorconvertor.cpp +++ b/Pdf4QtLibCore/sources/pdfcolorconvertor.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcolorconvertor.h" #include "pdfimageconversion.h" diff --git a/Pdf4QtLibCore/sources/pdfcolorconvertor.h b/Pdf4QtLibCore/sources/pdfcolorconvertor.h index a6fa5a8..2389087 100644 --- a/Pdf4QtLibCore/sources/pdfcolorconvertor.h +++ b/Pdf4QtLibCore/sources/pdfcolorconvertor.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCOLORCONVERTOR_H #define PDFCOLORCONVERTOR_H diff --git a/Pdf4QtLibCore/sources/pdfcolorspaces.cpp b/Pdf4QtLibCore/sources/pdfcolorspaces.cpp index c441871..67eede2 100644 --- a/Pdf4QtLibCore/sources/pdfcolorspaces.cpp +++ b/Pdf4QtLibCore/sources/pdfcolorspaces.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcolorspaces.h" #include "pdfobject.h" diff --git a/Pdf4QtLibCore/sources/pdfcolorspaces.h b/Pdf4QtLibCore/sources/pdfcolorspaces.h index a6cf56c..a9c30af 100644 --- a/Pdf4QtLibCore/sources/pdfcolorspaces.h +++ b/Pdf4QtLibCore/sources/pdfcolorspaces.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCOLORSPACES_H #define PDFCOLORSPACES_H diff --git a/Pdf4QtLibCore/sources/pdfconstants.h b/Pdf4QtLibCore/sources/pdfconstants.h index c4e6218..b31d847 100644 --- a/Pdf4QtLibCore/sources/pdfconstants.h +++ b/Pdf4QtLibCore/sources/pdfconstants.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCONSTANTS_H #define PDFCONSTANTS_H diff --git a/Pdf4QtLibCore/sources/pdfdbgheap.h b/Pdf4QtLibCore/sources/pdfdbgheap.h index 337df55..3f6dbfb 100644 --- a/Pdf4QtLibCore/sources/pdfdbgheap.h +++ b/Pdf4QtLibCore/sources/pdfdbgheap.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDBGHEAP_H #define PDFDBGHEAP_H diff --git a/Pdf4QtLibCore/sources/pdfdiff.cpp b/Pdf4QtLibCore/sources/pdfdiff.cpp index 23143d2..5c98992 100644 --- a/Pdf4QtLibCore/sources/pdfdiff.cpp +++ b/Pdf4QtLibCore/sources/pdfdiff.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdiff.h" #include "pdfrenderer.h" diff --git a/Pdf4QtLibCore/sources/pdfdiff.h b/Pdf4QtLibCore/sources/pdfdiff.h index 99be934..882b076 100644 --- a/Pdf4QtLibCore/sources/pdfdiff.h +++ b/Pdf4QtLibCore/sources/pdfdiff.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDIFF_H #define PDFDIFF_H diff --git a/Pdf4QtLibCore/sources/pdfdocument.cpp b/Pdf4QtLibCore/sources/pdfdocument.cpp index 202cbdf..2b8ad80 100644 --- a/Pdf4QtLibCore/sources/pdfdocument.cpp +++ b/Pdf4QtLibCore/sources/pdfdocument.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocument.h" #include "pdfencoding.h" diff --git a/Pdf4QtLibCore/sources/pdfdocument.h b/Pdf4QtLibCore/sources/pdfdocument.h index be96d65..a7b70a6 100644 --- a/Pdf4QtLibCore/sources/pdfdocument.h +++ b/Pdf4QtLibCore/sources/pdfdocument.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENT_H #define PDFDOCUMENT_H diff --git a/Pdf4QtLibCore/sources/pdfdocumentbuilder.cpp b/Pdf4QtLibCore/sources/pdfdocumentbuilder.cpp index 24de4ad..35e4d82 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentbuilder.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumentbuilder.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumentbuilder.h" #include "pdfencoding.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumentbuilder.h b/Pdf4QtLibCore/sources/pdfdocumentbuilder.h index 276e4b7..1d4cde1 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentbuilder.h +++ b/Pdf4QtLibCore/sources/pdfdocumentbuilder.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTBUILDER_H #define PDFDOCUMENTBUILDER_H diff --git a/Pdf4QtLibCore/sources/pdfdocumentmanipulator.cpp b/Pdf4QtLibCore/sources/pdfdocumentmanipulator.cpp index 4841369..567171b 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentmanipulator.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumentmanipulator.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumentmanipulator.h" #include "pdfdocumentbuilder.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumentmanipulator.h b/Pdf4QtLibCore/sources/pdfdocumentmanipulator.h index 559c20a..73caf84 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentmanipulator.h +++ b/Pdf4QtLibCore/sources/pdfdocumentmanipulator.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTMANIPULATOR_H #define PDFDOCUMENTMANIPULATOR_H diff --git a/Pdf4QtLibCore/sources/pdfdocumentreader.cpp b/Pdf4QtLibCore/sources/pdfdocumentreader.cpp index 7078c65..229c88f 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentreader.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumentreader.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumentreader.h" #include "pdfconstants.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumentreader.h b/Pdf4QtLibCore/sources/pdfdocumentreader.h index a768567..16fb723 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentreader.h +++ b/Pdf4QtLibCore/sources/pdfdocumentreader.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTREADER_H #define PDFDOCUMENTREADER_H diff --git a/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp b/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp index 7166c10..823780e 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumentsanitizer.h" #include "pdfvisitor.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumentsanitizer.h b/Pdf4QtLibCore/sources/pdfdocumentsanitizer.h index 828822a..c3bc73d 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentsanitizer.h +++ b/Pdf4QtLibCore/sources/pdfdocumentsanitizer.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTSANITIZER_H #define PDFDOCUMENTSANITIZER_H diff --git a/Pdf4QtLibCore/sources/pdfdocumenttextflow.cpp b/Pdf4QtLibCore/sources/pdfdocumenttextflow.cpp index 81ebf81..b27d2aa 100644 --- a/Pdf4QtLibCore/sources/pdfdocumenttextflow.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumenttextflow.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumenttextflow.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumenttextflow.h b/Pdf4QtLibCore/sources/pdfdocumenttextflow.h index fc964c6..dd97a1d 100644 --- a/Pdf4QtLibCore/sources/pdfdocumenttextflow.h +++ b/Pdf4QtLibCore/sources/pdfdocumenttextflow.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTTEXTFLOW_H #define PDFDOCUMENTTEXTFLOW_H diff --git a/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.cpp b/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.cpp index 3b17bd3..6588963 100644 --- a/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumenttextfloweditormodel.h" #include "pdfdocumenttextflow.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.h b/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.h index fb7a852..3756fac 100644 --- a/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.h +++ b/Pdf4QtLibCore/sources/pdfdocumenttextfloweditormodel.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTTEXTFLOWEDITORMODEL_H #define PDFDOCUMENTTEXTFLOWEDITORMODEL_H diff --git a/Pdf4QtLibCore/sources/pdfdocumentwriter.cpp b/Pdf4QtLibCore/sources/pdfdocumentwriter.cpp index 9ccbd32..f38547b 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentwriter.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumentwriter.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumentwriter.h" #include "pdfconstants.h" diff --git a/Pdf4QtLibCore/sources/pdfdocumentwriter.h b/Pdf4QtLibCore/sources/pdfdocumentwriter.h index e51ca9b..924b9cc 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentwriter.h +++ b/Pdf4QtLibCore/sources/pdfdocumentwriter.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTWRITER_H #define PDFDOCUMENTWRITER_H diff --git a/Pdf4QtLibCore/sources/pdfencoding.cpp b/Pdf4QtLibCore/sources/pdfencoding.cpp index 92e0aa5..d50df0f 100644 --- a/Pdf4QtLibCore/sources/pdfencoding.cpp +++ b/Pdf4QtLibCore/sources/pdfencoding.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfencoding.h" diff --git a/Pdf4QtLibCore/sources/pdfencoding.h b/Pdf4QtLibCore/sources/pdfencoding.h index 8e74bbf..553ba94 100644 --- a/Pdf4QtLibCore/sources/pdfencoding.h +++ b/Pdf4QtLibCore/sources/pdfencoding.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFENCODING_H #define PDFENCODING_H diff --git a/Pdf4QtLibCore/sources/pdfexception.h b/Pdf4QtLibCore/sources/pdfexception.h index d3ef59a..91c7033 100644 --- a/Pdf4QtLibCore/sources/pdfexception.h +++ b/Pdf4QtLibCore/sources/pdfexception.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFEXCEPTION_H #define PDFEXCEPTION_H diff --git a/Pdf4QtLibCore/sources/pdfexecutionpolicy.cpp b/Pdf4QtLibCore/sources/pdfexecutionpolicy.cpp index 399fdd0..721fe8b 100644 --- a/Pdf4QtLibCore/sources/pdfexecutionpolicy.cpp +++ b/Pdf4QtLibCore/sources/pdfexecutionpolicy.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfexecutionpolicy.h" diff --git a/Pdf4QtLibCore/sources/pdfexecutionpolicy.h b/Pdf4QtLibCore/sources/pdfexecutionpolicy.h index 4e21c61..389ea16 100644 --- a/Pdf4QtLibCore/sources/pdfexecutionpolicy.h +++ b/Pdf4QtLibCore/sources/pdfexecutionpolicy.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFEXECUTIONPOLICY_H #define PDFEXECUTIONPOLICY_H diff --git a/Pdf4QtLibCore/sources/pdffile.cpp b/Pdf4QtLibCore/sources/pdffile.cpp index 9a7bfed..168af59 100644 --- a/Pdf4QtLibCore/sources/pdffile.cpp +++ b/Pdf4QtLibCore/sources/pdffile.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdffile.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdffile.h b/Pdf4QtLibCore/sources/pdffile.h index 5cdfd7e..f72a4eb 100644 --- a/Pdf4QtLibCore/sources/pdffile.h +++ b/Pdf4QtLibCore/sources/pdffile.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFFILE_H #define PDFFILE_H diff --git a/Pdf4QtLibCore/sources/pdfflatarray.h b/Pdf4QtLibCore/sources/pdfflatarray.h index 8f1a0c4..4bbd6fa 100644 --- a/Pdf4QtLibCore/sources/pdfflatarray.h +++ b/Pdf4QtLibCore/sources/pdfflatarray.h @@ -1,20 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFFLATARRAY_H #define PDFFLATARRAY_H diff --git a/Pdf4QtLibCore/sources/pdfflatmap.h b/Pdf4QtLibCore/sources/pdfflatmap.h index 2732ed2..3b85f72 100644 --- a/Pdf4QtLibCore/sources/pdfflatmap.h +++ b/Pdf4QtLibCore/sources/pdfflatmap.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFFLATMAP_H #define PDFFLATMAP_H diff --git a/Pdf4QtLibCore/sources/pdffont.cpp b/Pdf4QtLibCore/sources/pdffont.cpp index 164e711..0110e02 100644 --- a/Pdf4QtLibCore/sources/pdffont.cpp +++ b/Pdf4QtLibCore/sources/pdffont.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdffont.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdffont.h b/Pdf4QtLibCore/sources/pdffont.h index 716ff81..4776248 100644 --- a/Pdf4QtLibCore/sources/pdffont.h +++ b/Pdf4QtLibCore/sources/pdffont.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFFONT_H #define PDFFONT_H diff --git a/Pdf4QtLibCore/sources/pdfform.cpp b/Pdf4QtLibCore/sources/pdfform.cpp index a6c5423..2a33992 100644 --- a/Pdf4QtLibCore/sources/pdfform.cpp +++ b/Pdf4QtLibCore/sources/pdfform.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfform.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfform.h b/Pdf4QtLibCore/sources/pdfform.h index 71e1ac2..eceec8a 100644 --- a/Pdf4QtLibCore/sources/pdfform.h +++ b/Pdf4QtLibCore/sources/pdfform.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFFORM_H #define PDFFORM_H diff --git a/Pdf4QtLibCore/sources/pdffunction.cpp b/Pdf4QtLibCore/sources/pdffunction.cpp index 3de6d82..684f52d 100644 --- a/Pdf4QtLibCore/sources/pdffunction.cpp +++ b/Pdf4QtLibCore/sources/pdffunction.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdffunction.h" #include "pdfflatarray.h" diff --git a/Pdf4QtLibCore/sources/pdffunction.h b/Pdf4QtLibCore/sources/pdffunction.h index 659bed3..de37895 100644 --- a/Pdf4QtLibCore/sources/pdffunction.h +++ b/Pdf4QtLibCore/sources/pdffunction.h @@ -1,20 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFFUNCTION_H #define PDFFUNCTION_H diff --git a/Pdf4QtLibCore/sources/pdfglobal.h b/Pdf4QtLibCore/sources/pdfglobal.h index 9f428a0..af6db6b 100644 --- a/Pdf4QtLibCore/sources/pdfglobal.h +++ b/Pdf4QtLibCore/sources/pdfglobal.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFGLOBAL_H #define PDFGLOBAL_H diff --git a/Pdf4QtLibCore/sources/pdficontheme.cpp b/Pdf4QtLibCore/sources/pdficontheme.cpp index d33c202..e3a37c3 100644 --- a/Pdf4QtLibCore/sources/pdficontheme.cpp +++ b/Pdf4QtLibCore/sources/pdficontheme.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdficontheme.h" diff --git a/Pdf4QtLibCore/sources/pdficontheme.h b/Pdf4QtLibCore/sources/pdficontheme.h index 57a584d..c3e77b5 100644 --- a/Pdf4QtLibCore/sources/pdficontheme.h +++ b/Pdf4QtLibCore/sources/pdficontheme.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFICONTHEME_H #define PDFICONTHEME_H diff --git a/Pdf4QtLibCore/sources/pdfimage.cpp b/Pdf4QtLibCore/sources/pdfimage.cpp index 888f015..3d2dff2 100644 --- a/Pdf4QtLibCore/sources/pdfimage.cpp +++ b/Pdf4QtLibCore/sources/pdfimage.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfimage.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfimage.h b/Pdf4QtLibCore/sources/pdfimage.h index aba9972..4684c5f 100644 --- a/Pdf4QtLibCore/sources/pdfimage.h +++ b/Pdf4QtLibCore/sources/pdfimage.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFIMAGE_H #define PDFIMAGE_H diff --git a/Pdf4QtLibCore/sources/pdfimageconversion.h b/Pdf4QtLibCore/sources/pdfimageconversion.h index 6874f75..2d20c65 100644 --- a/Pdf4QtLibCore/sources/pdfimageconversion.h +++ b/Pdf4QtLibCore/sources/pdfimageconversion.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFIMAGECONVERSION_H #define PDFIMAGECONVERSION_H diff --git a/Pdf4QtLibCore/sources/pdfjavascriptscanner.cpp b/Pdf4QtLibCore/sources/pdfjavascriptscanner.cpp index bd97bfc..26043c9 100644 --- a/Pdf4QtLibCore/sources/pdfjavascriptscanner.cpp +++ b/Pdf4QtLibCore/sources/pdfjavascriptscanner.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfjavascriptscanner.h" #include "pdfaction.h" diff --git a/Pdf4QtLibCore/sources/pdfjavascriptscanner.h b/Pdf4QtLibCore/sources/pdfjavascriptscanner.h index 4a06b83..8508655 100644 --- a/Pdf4QtLibCore/sources/pdfjavascriptscanner.h +++ b/Pdf4QtLibCore/sources/pdfjavascriptscanner.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFJAVASCRIPTSCANNER_H #define PDFJAVASCRIPTSCANNER_H diff --git a/Pdf4QtLibCore/sources/pdfjbig2decoder.cpp b/Pdf4QtLibCore/sources/pdfjbig2decoder.cpp index 3263563..99682bd 100644 --- a/Pdf4QtLibCore/sources/pdfjbig2decoder.cpp +++ b/Pdf4QtLibCore/sources/pdfjbig2decoder.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfjbig2decoder.h" #include "pdfexception.h" diff --git a/Pdf4QtLibCore/sources/pdfjbig2decoder.h b/Pdf4QtLibCore/sources/pdfjbig2decoder.h index 3c3cd4e..1ec2ff0 100644 --- a/Pdf4QtLibCore/sources/pdfjbig2decoder.h +++ b/Pdf4QtLibCore/sources/pdfjbig2decoder.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFJBIG2DECODER_H #define PDFJBIG2DECODER_H diff --git a/Pdf4QtLibCore/sources/pdfmeshqualitysettings.h b/Pdf4QtLibCore/sources/pdfmeshqualitysettings.h index 0f542d7..5f1a3f4 100644 --- a/Pdf4QtLibCore/sources/pdfmeshqualitysettings.h +++ b/Pdf4QtLibCore/sources/pdfmeshqualitysettings.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFMESHQUALITYSETTINGS_H #define PDFMESHQUALITYSETTINGS_H diff --git a/Pdf4QtLibCore/sources/pdfmultimedia.cpp b/Pdf4QtLibCore/sources/pdfmultimedia.cpp index d160d59..0f06006 100644 --- a/Pdf4QtLibCore/sources/pdfmultimedia.cpp +++ b/Pdf4QtLibCore/sources/pdfmultimedia.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfmultimedia.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfmultimedia.h b/Pdf4QtLibCore/sources/pdfmultimedia.h index bfdea06..95cefb3 100644 --- a/Pdf4QtLibCore/sources/pdfmultimedia.h +++ b/Pdf4QtLibCore/sources/pdfmultimedia.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFMULTIMEDIA_H #define PDFMULTIMEDIA_H diff --git a/Pdf4QtLibCore/sources/pdfnametounicode.cpp b/Pdf4QtLibCore/sources/pdfnametounicode.cpp index ebdc5df..cd3ff8f 100644 --- a/Pdf4QtLibCore/sources/pdfnametounicode.cpp +++ b/Pdf4QtLibCore/sources/pdfnametounicode.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfnametounicode.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfnametounicode.h b/Pdf4QtLibCore/sources/pdfnametounicode.h index 73a9fce..99214ec 100644 --- a/Pdf4QtLibCore/sources/pdfnametounicode.h +++ b/Pdf4QtLibCore/sources/pdfnametounicode.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFNAMETOUNICODE_H #define PDFNAMETOUNICODE_H diff --git a/Pdf4QtLibCore/sources/pdfnametreeloader.h b/Pdf4QtLibCore/sources/pdfnametreeloader.h index 71c70e2..d351fec 100644 --- a/Pdf4QtLibCore/sources/pdfnametreeloader.h +++ b/Pdf4QtLibCore/sources/pdfnametreeloader.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFNAMETREELOADER_H #define PDFNAMETREELOADER_H diff --git a/Pdf4QtLibCore/sources/pdfnumbertreeloader.h b/Pdf4QtLibCore/sources/pdfnumbertreeloader.h index 52b9eb1..4df7859 100644 --- a/Pdf4QtLibCore/sources/pdfnumbertreeloader.h +++ b/Pdf4QtLibCore/sources/pdfnumbertreeloader.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFNUMBERTREELOADER_H #define PDFNUMBERTREELOADER_H diff --git a/Pdf4QtLibCore/sources/pdfobject.cpp b/Pdf4QtLibCore/sources/pdfobject.cpp index de89206..12ae94d 100644 --- a/Pdf4QtLibCore/sources/pdfobject.cpp +++ b/Pdf4QtLibCore/sources/pdfobject.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfobject.h" #include "pdfvisitor.h" diff --git a/Pdf4QtLibCore/sources/pdfobject.h b/Pdf4QtLibCore/sources/pdfobject.h index a55a27c..b1a1158 100644 --- a/Pdf4QtLibCore/sources/pdfobject.h +++ b/Pdf4QtLibCore/sources/pdfobject.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOBJECT_H #define PDFOBJECT_H diff --git a/Pdf4QtLibCore/sources/pdfobjecteditormodel.cpp b/Pdf4QtLibCore/sources/pdfobjecteditormodel.cpp index 8c572e3..9f96366 100644 --- a/Pdf4QtLibCore/sources/pdfobjecteditormodel.cpp +++ b/Pdf4QtLibCore/sources/pdfobjecteditormodel.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfobjecteditormodel.h" #include "pdfdocumentbuilder.h" diff --git a/Pdf4QtLibCore/sources/pdfobjecteditormodel.h b/Pdf4QtLibCore/sources/pdfobjecteditormodel.h index 43ef4f4..ecfd480 100644 --- a/Pdf4QtLibCore/sources/pdfobjecteditormodel.h +++ b/Pdf4QtLibCore/sources/pdfobjecteditormodel.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOBJECTEDITORABSTRACTMODEL_H #define PDFOBJECTEDITORABSTRACTMODEL_H diff --git a/Pdf4QtLibCore/sources/pdfobjectutils.cpp b/Pdf4QtLibCore/sources/pdfobjectutils.cpp index 9dc4a55..bd90699 100644 --- a/Pdf4QtLibCore/sources/pdfobjectutils.cpp +++ b/Pdf4QtLibCore/sources/pdfobjectutils.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfobjectutils.h" #include "pdfvisitor.h" diff --git a/Pdf4QtLibCore/sources/pdfobjectutils.h b/Pdf4QtLibCore/sources/pdfobjectutils.h index 9b93dcb..2963efc 100644 --- a/Pdf4QtLibCore/sources/pdfobjectutils.h +++ b/Pdf4QtLibCore/sources/pdfobjectutils.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOBJECTUTILS_H #define PDFOBJECTUTILS_H diff --git a/Pdf4QtLibCore/sources/pdfoperationcontrol.h b/Pdf4QtLibCore/sources/pdfoperationcontrol.h index 0b9855c..9d5d45b 100644 --- a/Pdf4QtLibCore/sources/pdfoperationcontrol.h +++ b/Pdf4QtLibCore/sources/pdfoperationcontrol.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOPERATIONCONTROL_H #define PDFOPERATIONCONTROL_H diff --git a/Pdf4QtLibCore/sources/pdfoptimizer.cpp b/Pdf4QtLibCore/sources/pdfoptimizer.cpp index 055da73..3eeac6b 100644 --- a/Pdf4QtLibCore/sources/pdfoptimizer.cpp +++ b/Pdf4QtLibCore/sources/pdfoptimizer.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfoptimizer.h" #include "pdfvisitor.h" diff --git a/Pdf4QtLibCore/sources/pdfoptimizer.h b/Pdf4QtLibCore/sources/pdfoptimizer.h index 5055084..dac31a1 100644 --- a/Pdf4QtLibCore/sources/pdfoptimizer.h +++ b/Pdf4QtLibCore/sources/pdfoptimizer.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOPTIMIZER_H #define PDFOPTIMIZER_H diff --git a/Pdf4QtLibCore/sources/pdfoptionalcontent.cpp b/Pdf4QtLibCore/sources/pdfoptionalcontent.cpp index e64e009..bfe35ec 100644 --- a/Pdf4QtLibCore/sources/pdfoptionalcontent.cpp +++ b/Pdf4QtLibCore/sources/pdfoptionalcontent.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfoptionalcontent.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfoptionalcontent.h b/Pdf4QtLibCore/sources/pdfoptionalcontent.h index 3a1dd0a..319a39c 100644 --- a/Pdf4QtLibCore/sources/pdfoptionalcontent.h +++ b/Pdf4QtLibCore/sources/pdfoptionalcontent.h @@ -1,20 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOPTIONALCONTENT_H #define PDFOPTIONALCONTENT_H diff --git a/Pdf4QtLibCore/sources/pdfoutline.cpp b/Pdf4QtLibCore/sources/pdfoutline.cpp index 06caba9..d670588 100644 --- a/Pdf4QtLibCore/sources/pdfoutline.cpp +++ b/Pdf4QtLibCore/sources/pdfoutline.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfoutline.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfoutline.h b/Pdf4QtLibCore/sources/pdfoutline.h index 0353e69..a74b65a 100644 --- a/Pdf4QtLibCore/sources/pdfoutline.h +++ b/Pdf4QtLibCore/sources/pdfoutline.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOUTLINE_H #define PDFOUTLINE_H diff --git a/Pdf4QtLibCore/sources/pdfpage.cpp b/Pdf4QtLibCore/sources/pdfpage.cpp index f25da44..fe9cf32 100644 --- a/Pdf4QtLibCore/sources/pdfpage.cpp +++ b/Pdf4QtLibCore/sources/pdfpage.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpage.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfpage.h b/Pdf4QtLibCore/sources/pdfpage.h index 20c8ae9..00576da 100644 --- a/Pdf4QtLibCore/sources/pdfpage.h +++ b/Pdf4QtLibCore/sources/pdfpage.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGE_H #define PDFPAGE_H diff --git a/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.cpp b/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.cpp index 86dd3d4..a13287f 100644 --- a/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.cpp +++ b/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontenteditorcontentstreambuilder.h" #include "pdfdocumentbuilder.h" diff --git a/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.h b/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.h index 9ee58e3..68db5f3 100644 --- a/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.h +++ b/Pdf4QtLibCore/sources/pdfpagecontenteditorcontentstreambuilder.h @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTEDITORCONTENTSTREAMBUILDER_H #define PDFPAGECONTENTEDITORCONTENTSTREAMBUILDER_H diff --git a/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.cpp b/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.cpp index 956c3bc..837bca0 100644 --- a/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.cpp +++ b/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontenteditorprocessor.h" diff --git a/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.h b/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.h index a26fd81..9473735 100644 --- a/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.h +++ b/Pdf4QtLibCore/sources/pdfpagecontenteditorprocessor.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTEDITORPROCESSOR_H #define PDFPAGECONTENTEDITORPROCESSOR_H diff --git a/Pdf4QtLibCore/sources/pdfpagecontentprocessor.cpp b/Pdf4QtLibCore/sources/pdfpagecontentprocessor.cpp index d66f108..217f35b 100644 --- a/Pdf4QtLibCore/sources/pdfpagecontentprocessor.cpp +++ b/Pdf4QtLibCore/sources/pdfpagecontentprocessor.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontentprocessor.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfpagecontentprocessor.h b/Pdf4QtLibCore/sources/pdfpagecontentprocessor.h index aa0a4a7..86fbf05 100644 --- a/Pdf4QtLibCore/sources/pdfpagecontentprocessor.h +++ b/Pdf4QtLibCore/sources/pdfpagecontentprocessor.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTPROCESSOR_H #define PDFPAGECONTENTPROCESSOR_H diff --git a/Pdf4QtLibCore/sources/pdfpagenavigation.cpp b/Pdf4QtLibCore/sources/pdfpagenavigation.cpp index c6ab620..cd73eb3 100644 --- a/Pdf4QtLibCore/sources/pdfpagenavigation.cpp +++ b/Pdf4QtLibCore/sources/pdfpagenavigation.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagenavigation.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfpagenavigation.h b/Pdf4QtLibCore/sources/pdfpagenavigation.h index 0c49aac..9898e60 100644 --- a/Pdf4QtLibCore/sources/pdfpagenavigation.h +++ b/Pdf4QtLibCore/sources/pdfpagenavigation.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGENAVIGATION_H #define PDFPAGENAVIGATION_H diff --git a/Pdf4QtLibCore/sources/pdfpagetransition.cpp b/Pdf4QtLibCore/sources/pdfpagetransition.cpp index 71ac3ea..90ae103 100644 --- a/Pdf4QtLibCore/sources/pdfpagetransition.cpp +++ b/Pdf4QtLibCore/sources/pdfpagetransition.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagetransition.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfpagetransition.h b/Pdf4QtLibCore/sources/pdfpagetransition.h index 161a3e9..b981533 100644 --- a/Pdf4QtLibCore/sources/pdfpagetransition.h +++ b/Pdf4QtLibCore/sources/pdfpagetransition.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGETRANSITION_H #define PDFPAGETRANSITION_H diff --git a/Pdf4QtLibCore/sources/pdfpainter.cpp b/Pdf4QtLibCore/sources/pdfpainter.cpp index a079d11..3ccbcf4 100644 --- a/Pdf4QtLibCore/sources/pdfpainter.cpp +++ b/Pdf4QtLibCore/sources/pdfpainter.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpainter.h" #include "pdfpattern.h" diff --git a/Pdf4QtLibCore/sources/pdfpainter.h b/Pdf4QtLibCore/sources/pdfpainter.h index 0ca55ef..03be9a7 100644 --- a/Pdf4QtLibCore/sources/pdfpainter.h +++ b/Pdf4QtLibCore/sources/pdfpainter.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAINTER_H #define PDFPAINTER_H diff --git a/Pdf4QtLibCore/sources/pdfpainterutils.cpp b/Pdf4QtLibCore/sources/pdfpainterutils.cpp index 80c3b3b..e639ac9 100644 --- a/Pdf4QtLibCore/sources/pdfpainterutils.cpp +++ b/Pdf4QtLibCore/sources/pdfpainterutils.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpainterutils.h" #include "pdfpagecontentprocessor.h" diff --git a/Pdf4QtLibCore/sources/pdfpainterutils.h b/Pdf4QtLibCore/sources/pdfpainterutils.h index 008a5ed..a74ab26 100644 --- a/Pdf4QtLibCore/sources/pdfpainterutils.h +++ b/Pdf4QtLibCore/sources/pdfpainterutils.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAINTERUTILS_H #define PDFPAINTERUTILS_H diff --git a/Pdf4QtLibCore/sources/pdfparser.cpp b/Pdf4QtLibCore/sources/pdfparser.cpp index 014de9c..bf60ffd 100644 --- a/Pdf4QtLibCore/sources/pdfparser.cpp +++ b/Pdf4QtLibCore/sources/pdfparser.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfparser.h" #include "pdfconstants.h" diff --git a/Pdf4QtLibCore/sources/pdfparser.h b/Pdf4QtLibCore/sources/pdfparser.h index abcfd16..798c083 100644 --- a/Pdf4QtLibCore/sources/pdfparser.h +++ b/Pdf4QtLibCore/sources/pdfparser.h @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPARSER_H #define PDFPARSER_H diff --git a/Pdf4QtLibCore/sources/pdfpattern.cpp b/Pdf4QtLibCore/sources/pdfpattern.cpp index ee7d1ac..51c911d 100644 --- a/Pdf4QtLibCore/sources/pdfpattern.cpp +++ b/Pdf4QtLibCore/sources/pdfpattern.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpattern.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfpattern.h b/Pdf4QtLibCore/sources/pdfpattern.h index a50d4ab..419ec83 100644 --- a/Pdf4QtLibCore/sources/pdfpattern.h +++ b/Pdf4QtLibCore/sources/pdfpattern.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPATTERN_H #define PDFPATTERN_H diff --git a/Pdf4QtLibCore/sources/pdfplugin.cpp b/Pdf4QtLibCore/sources/pdfplugin.cpp index 7851c64..cee57ef 100644 --- a/Pdf4QtLibCore/sources/pdfplugin.cpp +++ b/Pdf4QtLibCore/sources/pdfplugin.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfplugin.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfplugin.h b/Pdf4QtLibCore/sources/pdfplugin.h index c90a8a8..cf85b52 100644 --- a/Pdf4QtLibCore/sources/pdfplugin.h +++ b/Pdf4QtLibCore/sources/pdfplugin.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPLUGIN_H #define PDFPLUGIN_H diff --git a/Pdf4QtLibCore/sources/pdfprogress.cpp b/Pdf4QtLibCore/sources/pdfprogress.cpp index ef26d0f..85bd58d 100644 --- a/Pdf4QtLibCore/sources/pdfprogress.cpp +++ b/Pdf4QtLibCore/sources/pdfprogress.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfprogress.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfprogress.h b/Pdf4QtLibCore/sources/pdfprogress.h index b5b38e3..6483bd5 100644 --- a/Pdf4QtLibCore/sources/pdfprogress.h +++ b/Pdf4QtLibCore/sources/pdfprogress.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPROGRESS_H #define PDFPROGRESS_H diff --git a/Pdf4QtLibCore/sources/pdfredact.cpp b/Pdf4QtLibCore/sources/pdfredact.cpp index 47f0ee8..f8252b3 100644 --- a/Pdf4QtLibCore/sources/pdfredact.cpp +++ b/Pdf4QtLibCore/sources/pdfredact.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfredact.h" #include "pdfpainter.h" diff --git a/Pdf4QtLibCore/sources/pdfredact.h b/Pdf4QtLibCore/sources/pdfredact.h index d6016d1..b999a3b 100644 --- a/Pdf4QtLibCore/sources/pdfredact.h +++ b/Pdf4QtLibCore/sources/pdfredact.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFREDACT_H #define PDFREDACT_H diff --git a/Pdf4QtLibCore/sources/pdfrenderer.cpp b/Pdf4QtLibCore/sources/pdfrenderer.cpp index ce565af..366a85d 100644 --- a/Pdf4QtLibCore/sources/pdfrenderer.cpp +++ b/Pdf4QtLibCore/sources/pdfrenderer.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfrenderer.h" #include "pdfpainter.h" diff --git a/Pdf4QtLibCore/sources/pdfrenderer.h b/Pdf4QtLibCore/sources/pdfrenderer.h index fa925b1..17a0c37 100644 --- a/Pdf4QtLibCore/sources/pdfrenderer.h +++ b/Pdf4QtLibCore/sources/pdfrenderer.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFRENDERER_H #define PDFRENDERER_H diff --git a/Pdf4QtLibCore/sources/pdfsecurityhandler.cpp b/Pdf4QtLibCore/sources/pdfsecurityhandler.cpp index 97d8d93..4107c7d 100644 --- a/Pdf4QtLibCore/sources/pdfsecurityhandler.cpp +++ b/Pdf4QtLibCore/sources/pdfsecurityhandler.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfsecurityhandler.h" #include "pdfexception.h" diff --git a/Pdf4QtLibCore/sources/pdfsecurityhandler.h b/Pdf4QtLibCore/sources/pdfsecurityhandler.h index f6e990d..d4b828c 100644 --- a/Pdf4QtLibCore/sources/pdfsecurityhandler.h +++ b/Pdf4QtLibCore/sources/pdfsecurityhandler.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSECURITYHANDLER_H #define PDFSECURITYHANDLER_H diff --git a/Pdf4QtLibCore/sources/pdfsignaturehandler.cpp b/Pdf4QtLibCore/sources/pdfsignaturehandler.cpp index 693a6b6..c00a44e 100644 --- a/Pdf4QtLibCore/sources/pdfsignaturehandler.cpp +++ b/Pdf4QtLibCore/sources/pdfsignaturehandler.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfsignaturehandler.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfsignaturehandler.h b/Pdf4QtLibCore/sources/pdfsignaturehandler.h index 32f071a..0b0d45b 100644 --- a/Pdf4QtLibCore/sources/pdfsignaturehandler.h +++ b/Pdf4QtLibCore/sources/pdfsignaturehandler.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSIGNATUREHANDLER_H #define PDFSIGNATUREHANDLER_H diff --git a/Pdf4QtLibCore/sources/pdfsignaturehandler_impl.h b/Pdf4QtLibCore/sources/pdfsignaturehandler_impl.h index 7e8ad28..28f84a0 100644 --- a/Pdf4QtLibCore/sources/pdfsignaturehandler_impl.h +++ b/Pdf4QtLibCore/sources/pdfsignaturehandler_impl.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSIGNATUREHANDLER_IMPL_H #define PDFSIGNATUREHANDLER_IMPL_H diff --git a/Pdf4QtLibCore/sources/pdfsnapper.cpp b/Pdf4QtLibCore/sources/pdfsnapper.cpp index 514818c..b16da2d 100644 --- a/Pdf4QtLibCore/sources/pdfsnapper.cpp +++ b/Pdf4QtLibCore/sources/pdfsnapper.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfsnapper.h" #include "pdfutils.h" diff --git a/Pdf4QtLibCore/sources/pdfsnapper.h b/Pdf4QtLibCore/sources/pdfsnapper.h index 267be5f..62b2f31 100644 --- a/Pdf4QtLibCore/sources/pdfsnapper.h +++ b/Pdf4QtLibCore/sources/pdfsnapper.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSNAPPER_H #define PDFSNAPPER_H diff --git a/Pdf4QtLibCore/sources/pdfstreamfilters.cpp b/Pdf4QtLibCore/sources/pdfstreamfilters.cpp index 203b036..c9e9117 100644 --- a/Pdf4QtLibCore/sources/pdfstreamfilters.cpp +++ b/Pdf4QtLibCore/sources/pdfstreamfilters.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfstreamfilters.h" #include "pdfexception.h" diff --git a/Pdf4QtLibCore/sources/pdfstreamfilters.h b/Pdf4QtLibCore/sources/pdfstreamfilters.h index 46f3e0a..fcf68c9 100644 --- a/Pdf4QtLibCore/sources/pdfstreamfilters.h +++ b/Pdf4QtLibCore/sources/pdfstreamfilters.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSTREAMFILTERS_H #define PDFSTREAMFILTERS_H diff --git a/Pdf4QtLibCore/sources/pdfstructuretree.cpp b/Pdf4QtLibCore/sources/pdfstructuretree.cpp index 4ecf678..697406c 100644 --- a/Pdf4QtLibCore/sources/pdfstructuretree.cpp +++ b/Pdf4QtLibCore/sources/pdfstructuretree.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfstructuretree.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdfstructuretree.h b/Pdf4QtLibCore/sources/pdfstructuretree.h index a323f91..26c9be7 100644 --- a/Pdf4QtLibCore/sources/pdfstructuretree.h +++ b/Pdf4QtLibCore/sources/pdfstructuretree.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSTRUCTURETREE_H #define PDFSTRUCTURETREE_H diff --git a/Pdf4QtLibCore/sources/pdftextlayout.cpp b/Pdf4QtLibCore/sources/pdftextlayout.cpp index 9a62701..f17a51d 100644 --- a/Pdf4QtLibCore/sources/pdftextlayout.cpp +++ b/Pdf4QtLibCore/sources/pdftextlayout.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftextlayout.h" #include "pdfutils.h" diff --git a/Pdf4QtLibCore/sources/pdftextlayout.h b/Pdf4QtLibCore/sources/pdftextlayout.h index b0cdc7e..3dc7542 100644 --- a/Pdf4QtLibCore/sources/pdftextlayout.h +++ b/Pdf4QtLibCore/sources/pdftextlayout.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTEXTLAYOUT_H #define PDFTEXTLAYOUT_H diff --git a/Pdf4QtLibCore/sources/pdftextlayoutgenerator.cpp b/Pdf4QtLibCore/sources/pdftextlayoutgenerator.cpp index 2335d14..5d0e796 100644 --- a/Pdf4QtLibCore/sources/pdftextlayoutgenerator.cpp +++ b/Pdf4QtLibCore/sources/pdftextlayoutgenerator.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftextlayoutgenerator.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdftextlayoutgenerator.h b/Pdf4QtLibCore/sources/pdftextlayoutgenerator.h index 5c7be37..4d4a5e7 100644 --- a/Pdf4QtLibCore/sources/pdftextlayoutgenerator.h +++ b/Pdf4QtLibCore/sources/pdftextlayoutgenerator.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontentprocessor.h" diff --git a/Pdf4QtLibCore/sources/pdftransparencyrenderer.cpp b/Pdf4QtLibCore/sources/pdftransparencyrenderer.cpp index 2130e82..99539ef 100644 --- a/Pdf4QtLibCore/sources/pdftransparencyrenderer.cpp +++ b/Pdf4QtLibCore/sources/pdftransparencyrenderer.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftransparencyrenderer.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibCore/sources/pdftransparencyrenderer.h b/Pdf4QtLibCore/sources/pdftransparencyrenderer.h index 5eeb5f9..128b3b2 100644 --- a/Pdf4QtLibCore/sources/pdftransparencyrenderer.h +++ b/Pdf4QtLibCore/sources/pdftransparencyrenderer.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTRANSPARENCYRENDERER_H #define PDFTRANSPARENCYRENDERER_H diff --git a/Pdf4QtLibCore/sources/pdfutils.cpp b/Pdf4QtLibCore/sources/pdfutils.cpp index 6adf40a..af599db 100644 --- a/Pdf4QtLibCore/sources/pdfutils.cpp +++ b/Pdf4QtLibCore/sources/pdfutils.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfutils.h" #include "pdfexception.h" diff --git a/Pdf4QtLibCore/sources/pdfutils.h b/Pdf4QtLibCore/sources/pdfutils.h index 2458a02..f7bca37 100644 --- a/Pdf4QtLibCore/sources/pdfutils.h +++ b/Pdf4QtLibCore/sources/pdfutils.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFUTILS_H #define PDFUTILS_H diff --git a/Pdf4QtLibCore/sources/pdfvisitor.cpp b/Pdf4QtLibCore/sources/pdfvisitor.cpp index e575eb3..e16ecba 100644 --- a/Pdf4QtLibCore/sources/pdfvisitor.cpp +++ b/Pdf4QtLibCore/sources/pdfvisitor.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfvisitor.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfvisitor.h b/Pdf4QtLibCore/sources/pdfvisitor.h index 7abe0fe..2fd5cc8 100644 --- a/Pdf4QtLibCore/sources/pdfvisitor.h +++ b/Pdf4QtLibCore/sources/pdfvisitor.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFVISITOR_H #define PDFVISITOR_H diff --git a/Pdf4QtLibCore/sources/pdfwidgetsnapshot.cpp b/Pdf4QtLibCore/sources/pdfwidgetsnapshot.cpp index eb1a7b0..89d0424 100644 --- a/Pdf4QtLibCore/sources/pdfwidgetsnapshot.cpp +++ b/Pdf4QtLibCore/sources/pdfwidgetsnapshot.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfwidgetsnapshot.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibCore/sources/pdfwidgetsnapshot.h b/Pdf4QtLibCore/sources/pdfwidgetsnapshot.h index cc945c4..af9a93a 100644 --- a/Pdf4QtLibCore/sources/pdfwidgetsnapshot.h +++ b/Pdf4QtLibCore/sources/pdfwidgetsnapshot.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfglobal.h" diff --git a/Pdf4QtLibCore/sources/pdfxfaengine.cpp b/Pdf4QtLibCore/sources/pdfxfaengine.cpp index d8ed0c7..cfeb54c 100644 --- a/Pdf4QtLibCore/sources/pdfxfaengine.cpp +++ b/Pdf4QtLibCore/sources/pdfxfaengine.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfxfaengine.h" #include "pdfform.h" diff --git a/Pdf4QtLibCore/sources/pdfxfaengine.h b/Pdf4QtLibCore/sources/pdfxfaengine.h index 26ba3fc..68391b2 100644 --- a/Pdf4QtLibCore/sources/pdfxfaengine.h +++ b/Pdf4QtLibCore/sources/pdfxfaengine.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFXFAENGINE_H #define PDFXFAENGINE_H diff --git a/Pdf4QtLibCore/sources/pdfxreftable.cpp b/Pdf4QtLibCore/sources/pdfxreftable.cpp index 83f34f0..f441b70 100644 --- a/Pdf4QtLibCore/sources/pdfxreftable.cpp +++ b/Pdf4QtLibCore/sources/pdfxreftable.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfxreftable.h" #include "pdfconstants.h" diff --git a/Pdf4QtLibCore/sources/pdfxreftable.h b/Pdf4QtLibCore/sources/pdfxreftable.h index abfa71a..76cab23 100644 --- a/Pdf4QtLibCore/sources/pdfxreftable.h +++ b/Pdf4QtLibCore/sources/pdfxreftable.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFXREFTABLE_H #define PDFXREFTABLE_H diff --git a/Pdf4QtLibGui/CMakeLists.txt b/Pdf4QtLibGui/CMakeLists.txt index 8e7354e..e05e5b0 100644 --- a/Pdf4QtLibGui/CMakeLists.txt +++ b/Pdf4QtLibGui/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2024 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(Pdf4QtLibGui SHARED pdfaboutdialog.cpp diff --git a/Pdf4QtLibGui/main.cpp b/Pdf4QtLibGui/main.cpp index 7690a46..631aa71 100644 --- a/Pdf4QtLibGui/main.cpp +++ b/Pdf4QtLibGui/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2020 Jakub Melka +// MIT License // -// This file is part of Pdf4Qt. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// Pdf4Qt is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// Pdf4Qt is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with Pdf4Qt. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfviewermainwindow.h" diff --git a/Pdf4QtLibGui/pdfaboutdialog.cpp b/Pdf4QtLibGui/pdfaboutdialog.cpp index 87898b7..244019a 100644 --- a/Pdf4QtLibGui/pdfaboutdialog.cpp +++ b/Pdf4QtLibGui/pdfaboutdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfaboutdialog.h" #include "ui_pdfaboutdialog.h" diff --git a/Pdf4QtLibGui/pdfaboutdialog.h b/Pdf4QtLibGui/pdfaboutdialog.h index 439073f..69c1771 100644 --- a/Pdf4QtLibGui/pdfaboutdialog.h +++ b/Pdf4QtLibGui/pdfaboutdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFABOUTDIALOG_H #define PDFABOUTDIALOG_H diff --git a/Pdf4QtLibGui/pdfactioncombobox.cpp b/Pdf4QtLibGui/pdfactioncombobox.cpp index e3cc285..ab98546 100644 --- a/Pdf4QtLibGui/pdfactioncombobox.cpp +++ b/Pdf4QtLibGui/pdfactioncombobox.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfactioncombobox.h" #include "pdfwidgetutils.h" diff --git a/Pdf4QtLibGui/pdfactioncombobox.h b/Pdf4QtLibGui/pdfactioncombobox.h index 7c3a545..dbd49fe 100644 --- a/Pdf4QtLibGui/pdfactioncombobox.h +++ b/Pdf4QtLibGui/pdfactioncombobox.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFACTIONCOMBOBOX_H #define PDFACTIONCOMBOBOX_H diff --git a/Pdf4QtLibGui/pdfadvancedfindwidget.cpp b/Pdf4QtLibGui/pdfadvancedfindwidget.cpp index cbcfed7..139fa13 100644 --- a/Pdf4QtLibGui/pdfadvancedfindwidget.cpp +++ b/Pdf4QtLibGui/pdfadvancedfindwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfadvancedfindwidget.h" #include "ui_pdfadvancedfindwidget.h" diff --git a/Pdf4QtLibGui/pdfadvancedfindwidget.h b/Pdf4QtLibGui/pdfadvancedfindwidget.h index c2253b1..f68a715 100644 --- a/Pdf4QtLibGui/pdfadvancedfindwidget.h +++ b/Pdf4QtLibGui/pdfadvancedfindwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFADVANCEDFINDWIDGET_H #define PDFADVANCEDFINDWIDGET_H diff --git a/Pdf4QtLibGui/pdfbookmarkmanager.cpp b/Pdf4QtLibGui/pdfbookmarkmanager.cpp index 92844ce..2d20112 100644 --- a/Pdf4QtLibGui/pdfbookmarkmanager.cpp +++ b/Pdf4QtLibGui/pdfbookmarkmanager.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfbookmarkmanager.h" #include "pdfaction.h" diff --git a/Pdf4QtLibGui/pdfbookmarkmanager.h b/Pdf4QtLibGui/pdfbookmarkmanager.h index ac7fc99..8bbc0b5 100644 --- a/Pdf4QtLibGui/pdfbookmarkmanager.h +++ b/Pdf4QtLibGui/pdfbookmarkmanager.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFBOOKMARKMANAGER_H #define PDFBOOKMARKMANAGER_H diff --git a/Pdf4QtLibGui/pdfbookmarkui.cpp b/Pdf4QtLibGui/pdfbookmarkui.cpp index 48d52a0..067c2a7 100644 --- a/Pdf4QtLibGui/pdfbookmarkui.cpp +++ b/Pdf4QtLibGui/pdfbookmarkui.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfbookmarkui.h" #include "pdfwidgetutils.h" diff --git a/Pdf4QtLibGui/pdfbookmarkui.h b/Pdf4QtLibGui/pdfbookmarkui.h index 4aa8200..a4350db 100644 --- a/Pdf4QtLibGui/pdfbookmarkui.h +++ b/Pdf4QtLibGui/pdfbookmarkui.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFBOOKMARKUI_H #define PDFBOOKMARKUI_H diff --git a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp index 8a37718..1a336c0 100644 --- a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp +++ b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcreatebitonaldocumentdialog.h" #include "ui_pdfcreatebitonaldocumentdialog.h" diff --git a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h index 11f66f8..9c137d8 100644 --- a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h +++ b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCREATEBITONALDOCUMENTDIALOG_H #define PDFCREATEBITONALDOCUMENTDIALOG_H diff --git a/Pdf4QtLibGui/pdfdocumentpropertiesdialog.cpp b/Pdf4QtLibGui/pdfdocumentpropertiesdialog.cpp index 0beb5f5..fbb4973 100644 --- a/Pdf4QtLibGui/pdfdocumentpropertiesdialog.cpp +++ b/Pdf4QtLibGui/pdfdocumentpropertiesdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdocumentpropertiesdialog.h" #include "ui_pdfdocumentpropertiesdialog.h" diff --git a/Pdf4QtLibGui/pdfdocumentpropertiesdialog.h b/Pdf4QtLibGui/pdfdocumentpropertiesdialog.h index 30e7bba..727bb43 100644 --- a/Pdf4QtLibGui/pdfdocumentpropertiesdialog.h +++ b/Pdf4QtLibGui/pdfdocumentpropertiesdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTPROPERTIESDIALOG_H #define PDFDOCUMENTPROPERTIESDIALOG_H diff --git a/Pdf4QtLibGui/pdfeditormainwindow.cpp b/Pdf4QtLibGui/pdfeditormainwindow.cpp index 475e69b..d86b09b 100644 --- a/Pdf4QtLibGui/pdfeditormainwindow.cpp +++ b/Pdf4QtLibGui/pdfeditormainwindow.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfeditormainwindow.h" #include "ui_pdfeditormainwindow.h" diff --git a/Pdf4QtLibGui/pdfeditormainwindow.h b/Pdf4QtLibGui/pdfeditormainwindow.h index f410009..4031b57 100644 --- a/Pdf4QtLibGui/pdfeditormainwindow.h +++ b/Pdf4QtLibGui/pdfeditormainwindow.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFEDITORMAINWINDOW_H #define PDFEDITORMAINWINDOW_H diff --git a/Pdf4QtLibGui/pdfencryptionsettingsdialog.cpp b/Pdf4QtLibGui/pdfencryptionsettingsdialog.cpp index 493c78d..3a17b46 100644 --- a/Pdf4QtLibGui/pdfencryptionsettingsdialog.cpp +++ b/Pdf4QtLibGui/pdfencryptionsettingsdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfencryptionsettingsdialog.h" #include "ui_pdfencryptionsettingsdialog.h" diff --git a/Pdf4QtLibGui/pdfencryptionsettingsdialog.h b/Pdf4QtLibGui/pdfencryptionsettingsdialog.h index 76915f9..6b675aa 100644 --- a/Pdf4QtLibGui/pdfencryptionsettingsdialog.h +++ b/Pdf4QtLibGui/pdfencryptionsettingsdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFENCRYPTIONSETTINGSDIALOG_H #define PDFENCRYPTIONSETTINGSDIALOG_H diff --git a/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.cpp b/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.cpp index 2950d2a..964ec67 100644 --- a/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.cpp +++ b/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfencryptionstrengthhintwidget.h" #include "pdfwidgetutils.h" diff --git a/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.h b/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.h index ca6951e..2ffae7b 100644 --- a/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.h +++ b/Pdf4QtLibGui/pdfencryptionstrengthhintwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFENCRYPTIONSTRENGTHHINTWIDGET_H #define PDFENCRYPTIONSTRENGTHHINTWIDGET_H diff --git a/Pdf4QtLibGui/pdfoptimizedocumentdialog.cpp b/Pdf4QtLibGui/pdfoptimizedocumentdialog.cpp index 0bfb839..dd81013 100644 --- a/Pdf4QtLibGui/pdfoptimizedocumentdialog.cpp +++ b/Pdf4QtLibGui/pdfoptimizedocumentdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfoptimizedocumentdialog.h" #include "ui_pdfoptimizedocumentdialog.h" diff --git a/Pdf4QtLibGui/pdfoptimizedocumentdialog.h b/Pdf4QtLibGui/pdfoptimizedocumentdialog.h index dff4e70..abe8023 100644 --- a/Pdf4QtLibGui/pdfoptimizedocumentdialog.h +++ b/Pdf4QtLibGui/pdfoptimizedocumentdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOPTIMIZEDOCUMENTDIALOG_H #define PDFOPTIMIZEDOCUMENTDIALOG_H diff --git a/Pdf4QtLibGui/pdfprogramcontroller.cpp b/Pdf4QtLibGui/pdfprogramcontroller.cpp index 0d1cdb2..937b6f1 100644 --- a/Pdf4QtLibGui/pdfprogramcontroller.cpp +++ b/Pdf4QtLibGui/pdfprogramcontroller.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfprogramcontroller.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtLibGui/pdfprogramcontroller.h b/Pdf4QtLibGui/pdfprogramcontroller.h index 6a46c11..8f6e942 100644 --- a/Pdf4QtLibGui/pdfprogramcontroller.h +++ b/Pdf4QtLibGui/pdfprogramcontroller.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPROGRAMCONTROLLER_H #define PDFPROGRAMCONTROLLER_H diff --git a/Pdf4QtLibGui/pdfrecentfilemanager.cpp b/Pdf4QtLibGui/pdfrecentfilemanager.cpp index 1ce6312..e936c71 100644 --- a/Pdf4QtLibGui/pdfrecentfilemanager.cpp +++ b/Pdf4QtLibGui/pdfrecentfilemanager.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfrecentfilemanager.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibGui/pdfrecentfilemanager.h b/Pdf4QtLibGui/pdfrecentfilemanager.h index 3b415b0..d039e97 100644 --- a/Pdf4QtLibGui/pdfrecentfilemanager.h +++ b/Pdf4QtLibGui/pdfrecentfilemanager.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFRECENTFILEMANAGER_H #define PDFRECENTFILEMANAGER_H diff --git a/Pdf4QtLibGui/pdfrendertoimagesdialog.cpp b/Pdf4QtLibGui/pdfrendertoimagesdialog.cpp index 5c52958..83bc40f 100644 --- a/Pdf4QtLibGui/pdfrendertoimagesdialog.cpp +++ b/Pdf4QtLibGui/pdfrendertoimagesdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfrendertoimagesdialog.h" #include "ui_pdfrendertoimagesdialog.h" diff --git a/Pdf4QtLibGui/pdfrendertoimagesdialog.h b/Pdf4QtLibGui/pdfrendertoimagesdialog.h index 495dd58..4c6a877 100644 --- a/Pdf4QtLibGui/pdfrendertoimagesdialog.h +++ b/Pdf4QtLibGui/pdfrendertoimagesdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFRENDERTOIMAGESDIALOG_H #define PDFRENDERTOIMAGESDIALOG_H diff --git a/Pdf4QtLibGui/pdfsanitizedocumentdialog.cpp b/Pdf4QtLibGui/pdfsanitizedocumentdialog.cpp index 6470871..de9fcff 100644 --- a/Pdf4QtLibGui/pdfsanitizedocumentdialog.cpp +++ b/Pdf4QtLibGui/pdfsanitizedocumentdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfsanitizedocumentdialog.h" #include "ui_pdfsanitizedocumentdialog.h" diff --git a/Pdf4QtLibGui/pdfsanitizedocumentdialog.h b/Pdf4QtLibGui/pdfsanitizedocumentdialog.h index c85623c..b9e006a 100644 --- a/Pdf4QtLibGui/pdfsanitizedocumentdialog.h +++ b/Pdf4QtLibGui/pdfsanitizedocumentdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSANITIZEDOCUMENTDIALOG_H #define PDFSANITIZEDOCUMENTDIALOG_H diff --git a/Pdf4QtLibGui/pdfsendmail.cpp b/Pdf4QtLibGui/pdfsendmail.cpp index 3248df5..31c9d41 100644 --- a/Pdf4QtLibGui/pdfsendmail.cpp +++ b/Pdf4QtLibGui/pdfsendmail.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfsendmail.h" diff --git a/Pdf4QtLibGui/pdfsendmail.h b/Pdf4QtLibGui/pdfsendmail.h index cf8b491..5efd666 100644 --- a/Pdf4QtLibGui/pdfsendmail.h +++ b/Pdf4QtLibGui/pdfsendmail.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSENDMAIL_H #define PDFSENDMAIL_H diff --git a/Pdf4QtLibGui/pdfsidebarwidget.cpp b/Pdf4QtLibGui/pdfsidebarwidget.cpp index ea7c1f3..3f68c00 100644 --- a/Pdf4QtLibGui/pdfsidebarwidget.cpp +++ b/Pdf4QtLibGui/pdfsidebarwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfsidebarwidget.h" #include "ui_pdfsidebarwidget.h" diff --git a/Pdf4QtLibGui/pdfsidebarwidget.h b/Pdf4QtLibGui/pdfsidebarwidget.h index 778ee12..783d89a 100644 --- a/Pdf4QtLibGui/pdfsidebarwidget.h +++ b/Pdf4QtLibGui/pdfsidebarwidget.h @@ -1,20 +1,24 @@ -// Copyright (C) 2019-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSIDEBARWIDGET_H #define PDFSIDEBARWIDGET_H diff --git a/Pdf4QtLibGui/pdftexttospeech.cpp b/Pdf4QtLibGui/pdftexttospeech.cpp index 788f563..f3444c9 100644 --- a/Pdf4QtLibGui/pdftexttospeech.cpp +++ b/Pdf4QtLibGui/pdftexttospeech.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftexttospeech.h" #include "pdfviewersettings.h" diff --git a/Pdf4QtLibGui/pdftexttospeech.h b/Pdf4QtLibGui/pdftexttospeech.h index 7e19f82..d4ac089 100644 --- a/Pdf4QtLibGui/pdftexttospeech.h +++ b/Pdf4QtLibGui/pdftexttospeech.h @@ -1,20 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTEXTTOSPEECH_H #define PDFTEXTTOSPEECH_H diff --git a/Pdf4QtLibGui/pdfundoredomanager.cpp b/Pdf4QtLibGui/pdfundoredomanager.cpp index faca692..82827e9 100644 --- a/Pdf4QtLibGui/pdfundoredomanager.cpp +++ b/Pdf4QtLibGui/pdfundoredomanager.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfundoredomanager.h" #include "pdfdbgheap.h" diff --git a/Pdf4QtLibGui/pdfundoredomanager.h b/Pdf4QtLibGui/pdfundoredomanager.h index 45614f5..6b71e1b 100644 --- a/Pdf4QtLibGui/pdfundoredomanager.h +++ b/Pdf4QtLibGui/pdfundoredomanager.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFUNDOREDOMANAGER_H #define PDFUNDOREDOMANAGER_H diff --git a/Pdf4QtLibGui/pdfviewerglobal.h b/Pdf4QtLibGui/pdfviewerglobal.h index 4123bff..f0526b0 100644 --- a/Pdf4QtLibGui/pdfviewerglobal.h +++ b/Pdf4QtLibGui/pdfviewerglobal.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFVIEWERGLOBAL_H #define PDFVIEWERGLOBAL_H diff --git a/Pdf4QtLibGui/pdfviewermainwindow.cpp b/Pdf4QtLibGui/pdfviewermainwindow.cpp index 71b9810..bb88d5b 100644 --- a/Pdf4QtLibGui/pdfviewermainwindow.cpp +++ b/Pdf4QtLibGui/pdfviewermainwindow.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfviewermainwindow.h" #include "ui_pdfviewermainwindow.h" diff --git a/Pdf4QtLibGui/pdfviewermainwindow.h b/Pdf4QtLibGui/pdfviewermainwindow.h index 7db43d5..b2941c5 100644 --- a/Pdf4QtLibGui/pdfviewermainwindow.h +++ b/Pdf4QtLibGui/pdfviewermainwindow.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFVIEWERMAINWINDOW_H #define PDFVIEWERMAINWINDOW_H diff --git a/Pdf4QtLibGui/pdfviewersettings.cpp b/Pdf4QtLibGui/pdfviewersettings.cpp index 5072f9d..a13c9bc 100644 --- a/Pdf4QtLibGui/pdfviewersettings.cpp +++ b/Pdf4QtLibGui/pdfviewersettings.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfviewersettings.h" #include "pdfconstants.h" diff --git a/Pdf4QtLibGui/pdfviewersettings.h b/Pdf4QtLibGui/pdfviewersettings.h index f3dfad5..89703e0 100644 --- a/Pdf4QtLibGui/pdfviewersettings.h +++ b/Pdf4QtLibGui/pdfviewersettings.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFVIEWERSETTINGS_H #define PDFVIEWERSETTINGS_H diff --git a/Pdf4QtLibGui/pdfviewersettingsdialog.cpp b/Pdf4QtLibGui/pdfviewersettingsdialog.cpp index 1019481..8721a3a 100644 --- a/Pdf4QtLibGui/pdfviewersettingsdialog.cpp +++ b/Pdf4QtLibGui/pdfviewersettingsdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfviewersettingsdialog.h" #include "ui_pdfviewersettingsdialog.h" diff --git a/Pdf4QtLibGui/pdfviewersettingsdialog.h b/Pdf4QtLibGui/pdfviewersettingsdialog.h index 11d25f2..43edb83 100644 --- a/Pdf4QtLibGui/pdfviewersettingsdialog.h +++ b/Pdf4QtLibGui/pdfviewersettingsdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2025 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFVIEWERSETTINGSDIALOG_H #define PDFVIEWERSETTINGSDIALOG_H diff --git a/Pdf4QtLibGui/pdfwintaskbarprogress.cpp b/Pdf4QtLibGui/pdfwintaskbarprogress.cpp index 33dfc0c..54c0234 100644 --- a/Pdf4QtLibGui/pdfwintaskbarprogress.cpp +++ b/Pdf4QtLibGui/pdfwintaskbarprogress.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfwintaskbarprogress.h" diff --git a/Pdf4QtLibGui/pdfwintaskbarprogress.h b/Pdf4QtLibGui/pdfwintaskbarprogress.h index f75a9a2..90b25d6 100644 --- a/Pdf4QtLibGui/pdfwintaskbarprogress.h +++ b/Pdf4QtLibGui/pdfwintaskbarprogress.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFWINTASKBARPROGRESS_H #define PDFWINTASKBARPROGRESS_H diff --git a/Pdf4QtLibWidgets/CMakeLists.txt b/Pdf4QtLibWidgets/CMakeLists.txt index db2fcdd..019994e 100644 --- a/Pdf4QtLibWidgets/CMakeLists.txt +++ b/Pdf4QtLibWidgets/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2023 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_library(Pdf4QtLibWidgets SHARED sources/pdfadvancedtools.cpp diff --git a/Pdf4QtLibWidgets/sources/pdfadvancedtools.cpp b/Pdf4QtLibWidgets/sources/pdfadvancedtools.cpp index f81f976..d442a9d 100644 --- a/Pdf4QtLibWidgets/sources/pdfadvancedtools.cpp +++ b/Pdf4QtLibWidgets/sources/pdfadvancedtools.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfadvancedtools.h" #include "pdfdocumentbuilder.h" diff --git a/Pdf4QtLibWidgets/sources/pdfadvancedtools.h b/Pdf4QtLibWidgets/sources/pdfadvancedtools.h index eba6656..d466a97 100644 --- a/Pdf4QtLibWidgets/sources/pdfadvancedtools.h +++ b/Pdf4QtLibWidgets/sources/pdfadvancedtools.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFADVANCEDTOOLS_H #define PDFADVANCEDTOOLS_H diff --git a/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.cpp b/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.cpp index 593ef14..527ca1b 100644 --- a/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.cpp +++ b/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcertificatelisthelper.h" #include "pdfwidgetutils.h" diff --git a/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.h b/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.h index 301b4c5..6c2149b 100644 --- a/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.h +++ b/Pdf4QtLibWidgets/sources/pdfcertificatelisthelper.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCERTIFICATELISTHELPER_H #define PDFCERTIFICATELISTHELPER_H diff --git a/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.cpp b/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.cpp index 215313b..3ef3158 100644 --- a/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.cpp +++ b/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcertificatemanagerdialog.h" #include "ui_pdfcertificatemanagerdialog.h" diff --git a/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.h b/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.h index d94c12b..d098823 100644 --- a/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.h +++ b/Pdf4QtLibWidgets/sources/pdfcertificatemanagerdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCERTIFICATEMANAGERDIALOG_H #define PDFCERTIFICATEMANAGERDIALOG_H diff --git a/Pdf4QtLibWidgets/sources/pdfcompiler.cpp b/Pdf4QtLibWidgets/sources/pdfcompiler.cpp index 92edb63..ef47e7d 100644 --- a/Pdf4QtLibWidgets/sources/pdfcompiler.cpp +++ b/Pdf4QtLibWidgets/sources/pdfcompiler.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcompiler.h" #include "pdfcms.h" diff --git a/Pdf4QtLibWidgets/sources/pdfcompiler.h b/Pdf4QtLibWidgets/sources/pdfcompiler.h index 5613176..57913c7 100644 --- a/Pdf4QtLibWidgets/sources/pdfcompiler.h +++ b/Pdf4QtLibWidgets/sources/pdfcompiler.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCOMPILER_H #define PDFCOMPILER_H diff --git a/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.cpp b/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.cpp index 63a44b9..5ec570f 100644 --- a/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.cpp +++ b/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfcreatecertificatedialog.h" #include "ui_pdfcreatecertificatedialog.h" diff --git a/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.h b/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.h index 32c501d..d2d04d7 100644 --- a/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.h +++ b/Pdf4QtLibWidgets/sources/pdfcreatecertificatedialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFCREATECERTIFICATEDIALOG_H #define PDFCREATECERTIFICATEDIALOG_H diff --git a/Pdf4QtLibWidgets/sources/pdfdocumentdrawinterface.h b/Pdf4QtLibWidgets/sources/pdfdocumentdrawinterface.h index 9dd97fe..d4963a5 100644 --- a/Pdf4QtLibWidgets/sources/pdfdocumentdrawinterface.h +++ b/Pdf4QtLibWidgets/sources/pdfdocumentdrawinterface.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDOCUMENTDRAWINTERFACE_H #define PDFDOCUMENTDRAWINTERFACE_H diff --git a/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.cpp b/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.cpp index 8c5456a..16ba44e 100644 --- a/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.cpp +++ b/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdrawspacecontroller.h" #include "pdfrenderer.h" diff --git a/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.h b/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.h index ca10d8f..84d7e83 100644 --- a/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.h +++ b/Pdf4QtLibWidgets/sources/pdfdrawspacecontroller.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDRAWSPACECONTROLLER_H #define PDFDRAWSPACECONTROLLER_H diff --git a/Pdf4QtLibWidgets/sources/pdfdrawwidget.cpp b/Pdf4QtLibWidgets/sources/pdfdrawwidget.cpp index 5d41519..5018ddf 100644 --- a/Pdf4QtLibWidgets/sources/pdfdrawwidget.cpp +++ b/Pdf4QtLibWidgets/sources/pdfdrawwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfdrawwidget.h" #include "pdfdrawspacecontroller.h" diff --git a/Pdf4QtLibWidgets/sources/pdfdrawwidget.h b/Pdf4QtLibWidgets/sources/pdfdrawwidget.h index c10ae0a..6d20610 100644 --- a/Pdf4QtLibWidgets/sources/pdfdrawwidget.h +++ b/Pdf4QtLibWidgets/sources/pdfdrawwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFDRAWWIDGET_H #define PDFDRAWWIDGET_H diff --git a/Pdf4QtLibWidgets/sources/pdfitemmodels.cpp b/Pdf4QtLibWidgets/sources/pdfitemmodels.cpp index 9d353c7..19fe71e 100644 --- a/Pdf4QtLibWidgets/sources/pdfitemmodels.cpp +++ b/Pdf4QtLibWidgets/sources/pdfitemmodels.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfitemmodels.h" #include "pdfdocument.h" diff --git a/Pdf4QtLibWidgets/sources/pdfitemmodels.h b/Pdf4QtLibWidgets/sources/pdfitemmodels.h index aa6eb0f..b32db4f 100644 --- a/Pdf4QtLibWidgets/sources/pdfitemmodels.h +++ b/Pdf4QtLibWidgets/sources/pdfitemmodels.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFITEMMODELS_H #define PDFITEMMODELS_H diff --git a/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.cpp b/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.cpp index 90cb3cb..55ffa68 100644 --- a/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.cpp +++ b/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfobjecteditorwidget.h" #include "pdfobjecteditorwidget_impl.h" diff --git a/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.h b/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.h index 3c94d99..78277ba 100644 --- a/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.h +++ b/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOBJECTEDITORWIDGET_H #define PDFOBJECTEDITORWIDGET_H diff --git a/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget_impl.h b/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget_impl.h index dfa9974..556d0ff 100644 --- a/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget_impl.h +++ b/Pdf4QtLibWidgets/sources/pdfobjecteditorwidget_impl.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOBJECTEDITORWIDGET_IMPL_H #define PDFOBJECTEDITORWIDGET_IMPL_H diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.cpp b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.cpp index 7c9fe6b..bae5d92 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.cpp +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontenteditorediteditemsettings.h" #include "ui_pdfpagecontenteditorediteditemsettings.h" diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.h b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.h index 19a0248..220bcea 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.h +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorediteditemsettings.h @@ -1,19 +1,24 @@ -// Copyright (C) 2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTEDITOREDITEDITEMSETTINGS_H #define PDFPAGECONTENTEDITOREDITEDITEMSETTINGS_H diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.cpp b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.cpp index c7bbb1e..6f2148d 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.cpp +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontenteditorstylesettings.h" #include "ui_pdfpagecontenteditorstylesettings.h" diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.h b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.h index 8b3d380..f9e6f38 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.h +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorstylesettings.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTEDITORSTYLESETTINGS_H #define PDFPAGECONTENTEDITORSTYLESETTINGS_H diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.cpp b/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.cpp index eade854..70d8d2b 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.cpp +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontenteditortools.h" #include "pdfpagecontentelements.h" diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.h b/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.h index ecec0f3..99be821 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.h +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditortools.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTEDITORTOOLS_H #define PDFPAGECONTENTEDITORTOOLS_H diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.cpp b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.cpp index 57cb2a8..d4cac5b 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.cpp +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontenteditorwidget.h" #include "pdfpagecontenteditorstylesettings.h" diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.h b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.h index cf70661..80901bd 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.h +++ b/Pdf4QtLibWidgets/sources/pdfpagecontenteditorwidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTEDITORWIDGET_H #define PDFPAGECONTENTEDITORWIDGET_H diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontentelements.cpp b/Pdf4QtLibWidgets/sources/pdfpagecontentelements.cpp index 0fcd326..9aeba38 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontentelements.cpp +++ b/Pdf4QtLibWidgets/sources/pdfpagecontentelements.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfpagecontentelements.h" #include "pdfpainterutils.h" diff --git a/Pdf4QtLibWidgets/sources/pdfpagecontentelements.h b/Pdf4QtLibWidgets/sources/pdfpagecontentelements.h index ad3554b..c943c7b 100644 --- a/Pdf4QtLibWidgets/sources/pdfpagecontentelements.h +++ b/Pdf4QtLibWidgets/sources/pdfpagecontentelements.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGECONTENTELEMENTS_H #define PDFPAGECONTENTELEMENTS_H diff --git a/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.cpp b/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.cpp index 53c4a10..d37e5af 100644 --- a/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.cpp +++ b/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfrenderingerrorswidget.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.h b/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.h index 77beb19..50f0f53 100644 --- a/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.h +++ b/Pdf4QtLibWidgets/sources/pdfrenderingerrorswidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFRENDERINGERRORSWIDGET_H #define PDFRENDERINGERRORSWIDGET_H diff --git a/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.cpp b/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.cpp index ea7b3a9..543fe72 100644 --- a/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.cpp +++ b/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfselectpagesdialog.h" #include "ui_pdfselectpagesdialog.h" diff --git a/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.h b/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.h index 48117dc..3c1c8e9 100644 --- a/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.h +++ b/Pdf4QtLibWidgets/sources/pdfselectpagesdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFSELECTPAGESDIALOG_H #define PDFSELECTPAGESDIALOG_H diff --git a/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.cpp b/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.cpp index d84d687..b6f8864 100644 --- a/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.cpp +++ b/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftexteditpseudowidget.h" #include "pdfpainterutils.h" diff --git a/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.h b/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.h index 20e20f5..e289f96 100644 --- a/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.h +++ b/Pdf4QtLibWidgets/sources/pdftexteditpseudowidget.h @@ -1,19 +1,24 @@ -// Copyright (C) 2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTEXTEDITPSEUDOWIDGET_H #define PDFTEXTEDITPSEUDOWIDGET_H diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetannotation.cpp b/Pdf4QtLibWidgets/sources/pdfwidgetannotation.cpp index 9435d14..b2dc198 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetannotation.cpp +++ b/Pdf4QtLibWidgets/sources/pdfwidgetannotation.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfwidgetannotation.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetannotation.h b/Pdf4QtLibWidgets/sources/pdfwidgetannotation.h index e8e3cd8..66527d7 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetannotation.h +++ b/Pdf4QtLibWidgets/sources/pdfwidgetannotation.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFWIDGETANNOTATION_H #define PDFWIDGETANNOTATION_H diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.cpp b/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.cpp index 4c7b62b..952d279 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.cpp +++ b/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfwidgetformmanager.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.h b/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.h index 009ae31..c46794d 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.h +++ b/Pdf4QtLibWidgets/sources/pdfwidgetformmanager.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFWIDGETFORMMANAGER_H #define PDFWIDGETFORMMANAGER_H diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetsglobal.h b/Pdf4QtLibWidgets/sources/pdfwidgetsglobal.h index 25e9781..93a50f8 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetsglobal.h +++ b/Pdf4QtLibWidgets/sources/pdfwidgetsglobal.h @@ -1,19 +1,24 @@ -// Copyright (C) 2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFWIDGETSGLOBAL_H #define PDFWIDGETSGLOBAL_H diff --git a/Pdf4QtLibWidgets/sources/pdfwidgettool.cpp b/Pdf4QtLibWidgets/sources/pdfwidgettool.cpp index 362eb8a..5bfd6fb 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgettool.cpp +++ b/Pdf4QtLibWidgets/sources/pdfwidgettool.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfwidgettool.h" #include "pdfdrawwidget.h" diff --git a/Pdf4QtLibWidgets/sources/pdfwidgettool.h b/Pdf4QtLibWidgets/sources/pdfwidgettool.h index 1c3a919..cc0a60b 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgettool.h +++ b/Pdf4QtLibWidgets/sources/pdfwidgettool.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFWIDGETTOOL_H #define PDFWIDGETTOOL_H diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetutils.cpp b/Pdf4QtLibWidgets/sources/pdfwidgetutils.cpp index bf4fb3c..b8e6ee5 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetutils.cpp +++ b/Pdf4QtLibWidgets/sources/pdfwidgetutils.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2022 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfwidgetutils.h" #include "pdfcolorconvertor.h" diff --git a/Pdf4QtLibWidgets/sources/pdfwidgetutils.h b/Pdf4QtLibWidgets/sources/pdfwidgetutils.h index c48c053..e128034 100644 --- a/Pdf4QtLibWidgets/sources/pdfwidgetutils.h +++ b/Pdf4QtLibWidgets/sources/pdfwidgetutils.h @@ -1,19 +1,24 @@ -// Copyright (C) 2019-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFWIDGETUTILS_H #define PDFWIDGETUTILS_H diff --git a/Pdf4QtPageMaster/CMakeLists.txt b/Pdf4QtPageMaster/CMakeLists.txt index d705e7a..54b5a37 100644 --- a/Pdf4QtPageMaster/CMakeLists.txt +++ b/Pdf4QtPageMaster/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2024 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(Pdf4QtPageMaster aboutdialog.cpp diff --git a/Pdf4QtPageMaster/CMakeLists.txt.bak b/Pdf4QtPageMaster/CMakeLists.txt.bak deleted file mode 100644 index d705e7a..0000000 --- a/Pdf4QtPageMaster/CMakeLists.txt.bak +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright (C) 2022-2024 Jakub Melka -# -# This file is part of PDF4QT. -# -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. -# -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . - -add_executable(Pdf4QtPageMaster - aboutdialog.cpp - aboutdialog.h - assembleoutputsettingsdialog.cpp - assembleoutputsettingsdialog.h - main.cpp - mainwindow.cpp - mainwindow.h - pageitemdelegate.cpp - pageitemdelegate.h - pageitemmodel.cpp - pageitemmodel.h - selectoutlinetoregroupdialog.cpp - selectoutlinetoregroupdialog.h - aboutdialog.ui - assembleoutputsettingsdialog.ui - mainwindow.ui - selectoutlinetoregroupdialog.ui - resources.qrc - icon.rc - app.qrc -) - -target_link_libraries(Pdf4QtPageMaster PRIVATE Pdf4QtLibCore Pdf4QtLibWidgets Qt6::Core Qt6::Gui Qt6::Widgets) - -set_target_properties(Pdf4QtPageMaster PROPERTIES - WIN32_EXECUTABLE ON - MACOSX_BUNDLE ON - LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${PDF4QT_INSTALL_LIB_DIR} - RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${PDF4QT_INSTALL_BIN_DIR} -) - -install(TARGETS Pdf4QtPageMaster RUNTIME DESTINATION ${PDF4QT_INSTALL_BIN_DIR} LIBRARY DESTINATION ${PDF4QT_INSTALL_LIB_DIR}) diff --git a/Pdf4QtPageMaster/aboutdialog.cpp b/Pdf4QtPageMaster/aboutdialog.cpp index f19b827..6c16f08 100644 --- a/Pdf4QtPageMaster/aboutdialog.cpp +++ b/Pdf4QtPageMaster/aboutdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "aboutdialog.h" #include "ui_aboutdialog.h" diff --git a/Pdf4QtPageMaster/aboutdialog.h b/Pdf4QtPageMaster/aboutdialog.h index c957d1f..10bda72 100644 --- a/Pdf4QtPageMaster/aboutdialog.h +++ b/Pdf4QtPageMaster/aboutdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGEMASTER_PDFABOUTDIALOG_H #define PDFPAGEMASTER_PDFABOUTDIALOG_H diff --git a/Pdf4QtPageMaster/assembleoutputsettingsdialog.cpp b/Pdf4QtPageMaster/assembleoutputsettingsdialog.cpp index f982477..ca2d8cb 100644 --- a/Pdf4QtPageMaster/assembleoutputsettingsdialog.cpp +++ b/Pdf4QtPageMaster/assembleoutputsettingsdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "assembleoutputsettingsdialog.h" #include "ui_assembleoutputsettingsdialog.h" diff --git a/Pdf4QtPageMaster/assembleoutputsettingsdialog.h b/Pdf4QtPageMaster/assembleoutputsettingsdialog.h index 225d93b..b5b40b1 100644 --- a/Pdf4QtPageMaster/assembleoutputsettingsdialog.h +++ b/Pdf4QtPageMaster/assembleoutputsettingsdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGEMASTER_ASSEMBLEOUTPUTSETTINGSDIALOG_H #define PDFPAGEMASTER_ASSEMBLEOUTPUTSETTINGSDIALOG_H diff --git a/Pdf4QtPageMaster/main.cpp b/Pdf4QtPageMaster/main.cpp index 56dd5c3..eeed38f 100644 --- a/Pdf4QtPageMaster/main.cpp +++ b/Pdf4QtPageMaster/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfconstants.h" #include "pdfsecurityhandler.h" diff --git a/Pdf4QtPageMaster/mainwindow.cpp b/Pdf4QtPageMaster/mainwindow.cpp index e94f2db..b0ffc65 100644 --- a/Pdf4QtPageMaster/mainwindow.cpp +++ b/Pdf4QtPageMaster/mainwindow.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "mainwindow.h" #include "ui_mainwindow.h" diff --git a/Pdf4QtPageMaster/mainwindow.h b/Pdf4QtPageMaster/mainwindow.h index 57f1b88..6699ee9 100644 --- a/Pdf4QtPageMaster/mainwindow.h +++ b/Pdf4QtPageMaster/mainwindow.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGEMASTER_MAINWINDOW_H #define PDFPAGEMASTER_MAINWINDOW_H diff --git a/Pdf4QtPageMaster/pageitemdelegate.cpp b/Pdf4QtPageMaster/pageitemdelegate.cpp index 5d13215..02d3a4a 100644 --- a/Pdf4QtPageMaster/pageitemdelegate.cpp +++ b/Pdf4QtPageMaster/pageitemdelegate.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pageitemdelegate.h" #include "pageitemmodel.h" diff --git a/Pdf4QtPageMaster/pageitemdelegate.h b/Pdf4QtPageMaster/pageitemdelegate.h index 2741e2d..46373d5 100644 --- a/Pdf4QtPageMaster/pageitemdelegate.h +++ b/Pdf4QtPageMaster/pageitemdelegate.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGEMASTER_PAGEITEMDELEGATE_H #define PDFPAGEMASTER_PAGEITEMDELEGATE_H diff --git a/Pdf4QtPageMaster/pageitemmodel.cpp b/Pdf4QtPageMaster/pageitemmodel.cpp index 36197d4..c352177 100644 --- a/Pdf4QtPageMaster/pageitemmodel.cpp +++ b/Pdf4QtPageMaster/pageitemmodel.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pageitemmodel.h" diff --git a/Pdf4QtPageMaster/pageitemmodel.h b/Pdf4QtPageMaster/pageitemmodel.h index a6eb53a..c3756f4 100644 --- a/Pdf4QtPageMaster/pageitemmodel.h +++ b/Pdf4QtPageMaster/pageitemmodel.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGEMASTER_PAGEITEMMODEL_H #define PDFPAGEMASTER_PAGEITEMMODEL_H diff --git a/Pdf4QtPageMaster/selectoutlinetoregroupdialog.cpp b/Pdf4QtPageMaster/selectoutlinetoregroupdialog.cpp index 63e1dfc..a899edf 100644 --- a/Pdf4QtPageMaster/selectoutlinetoregroupdialog.cpp +++ b/Pdf4QtPageMaster/selectoutlinetoregroupdialog.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "selectoutlinetoregroupdialog.h" #include "ui_selectoutlinetoregroupdialog.h" diff --git a/Pdf4QtPageMaster/selectoutlinetoregroupdialog.h b/Pdf4QtPageMaster/selectoutlinetoregroupdialog.h index 9e1ec67..054dee1 100644 --- a/Pdf4QtPageMaster/selectoutlinetoregroupdialog.h +++ b/Pdf4QtPageMaster/selectoutlinetoregroupdialog.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFPAGEMASTER_SELECTOUTLINETOREGROUPDIALOG_H #define PDFPAGEMASTER_SELECTOUTLINETOREGROUPDIALOG_H diff --git a/Pdf4QtViewer/CMakeLists.txt b/Pdf4QtViewer/CMakeLists.txt index 8f0d7f1..b96b888 100644 --- a/Pdf4QtViewer/CMakeLists.txt +++ b/Pdf4QtViewer/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022-2024 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(Pdf4QtViewer main.cpp diff --git a/Pdf4QtViewer/main.cpp b/Pdf4QtViewer/main.cpp index 557d84d..3c472bb 100644 --- a/Pdf4QtViewer/main.cpp +++ b/Pdf4QtViewer/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021-2024 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfviewermainwindow.h" #include "pdfconstants.h" diff --git a/PdfExampleGenerator/CMakeLists.txt b/PdfExampleGenerator/CMakeLists.txt index c018d9e..7462d30 100644 --- a/PdfExampleGenerator/CMakeLists.txt +++ b/PdfExampleGenerator/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(PdfExampleGenerator pdfexamplesgenerator.cpp diff --git a/PdfExampleGenerator/main.cpp b/PdfExampleGenerator/main.cpp index d871ed7..55617fc 100644 --- a/PdfExampleGenerator/main.cpp +++ b/PdfExampleGenerator/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include diff --git a/PdfExampleGenerator/pdfexamplesgenerator.cpp b/PdfExampleGenerator/pdfexamplesgenerator.cpp index 5642e9d..10bc2fc 100644 --- a/PdfExampleGenerator/pdfexamplesgenerator.cpp +++ b/PdfExampleGenerator/pdfexamplesgenerator.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfexamplesgenerator.h" diff --git a/PdfExampleGenerator/pdfexamplesgenerator.h b/PdfExampleGenerator/pdfexamplesgenerator.h index bee3578..ef56e7e 100644 --- a/PdfExampleGenerator/pdfexamplesgenerator.h +++ b/PdfExampleGenerator/pdfexamplesgenerator.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFEXAMPLESGENERATOR_H #define PDFEXAMPLESGENERATOR_H diff --git a/PdfTool/CMakeLists.txt b/PdfTool/CMakeLists.txt index b41de04..7015c14 100644 --- a/PdfTool/CMakeLists.txt +++ b/PdfTool/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(PdfTool main.cpp diff --git a/PdfTool/main.cpp b/PdfTool/main.cpp index 64d829e..c8f9894 100644 --- a/PdfTool/main.cpp +++ b/PdfTool/main.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolabstractapplication.h" #include "pdfconstants.h" diff --git a/PdfTool/pdfoutputformatter.cpp b/PdfTool/pdfoutputformatter.cpp index 51e7e37..a7eabf1 100644 --- a/PdfTool/pdfoutputformatter.cpp +++ b/PdfTool/pdfoutputformatter.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdfoutputformatter.h" diff --git a/PdfTool/pdfoutputformatter.h b/PdfTool/pdfoutputformatter.h index a9a845b..8f2e0e5 100644 --- a/PdfTool/pdfoutputformatter.h +++ b/PdfTool/pdfoutputformatter.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFOUTPUTFORMATTER_H #define PDFOUTPUTFORMATTER_H diff --git a/PdfTool/pdftoolabstractapplication.cpp b/PdfTool/pdftoolabstractapplication.cpp index 781f9be..de5f1ae 100644 --- a/PdfTool/pdftoolabstractapplication.cpp +++ b/PdfTool/pdftoolabstractapplication.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolabstractapplication.h" #include "pdfdocumentreader.h" diff --git a/PdfTool/pdftoolabstractapplication.h b/PdfTool/pdftoolabstractapplication.h index 5a28d71..7003138 100644 --- a/PdfTool/pdftoolabstractapplication.h +++ b/PdfTool/pdftoolabstractapplication.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLABSTRACTAPPLICATION_H #define PDFTOOLABSTRACTAPPLICATION_H diff --git a/PdfTool/pdftoolattachments.cpp b/PdfTool/pdftoolattachments.cpp index 54771fc..8160949 100644 --- a/PdfTool/pdftoolattachments.cpp +++ b/PdfTool/pdftoolattachments.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolattachments.h" #include "pdfexception.h" diff --git a/PdfTool/pdftoolattachments.h b/PdfTool/pdftoolattachments.h index fa01ae5..1ae4d47 100644 --- a/PdfTool/pdftoolattachments.h +++ b/PdfTool/pdftoolattachments.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLATTACHMENTS_H #define PDFTOOLATTACHMENTS_H diff --git a/PdfTool/pdftoolaudiobook.cpp b/PdfTool/pdftoolaudiobook.cpp index fcb4dd3..a521e41 100644 --- a/PdfTool/pdftoolaudiobook.cpp +++ b/PdfTool/pdftoolaudiobook.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolaudiobook.h" diff --git a/PdfTool/pdftoolaudiobook.h b/PdfTool/pdftoolaudiobook.h index d4446d5..7b3f36f 100644 --- a/PdfTool/pdftoolaudiobook.h +++ b/PdfTool/pdftoolaudiobook.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLAUDIOBOOK_H #define PDFTOOLAUDIOBOOK_H diff --git a/PdfTool/pdftoolcertstore.cpp b/PdfTool/pdftoolcertstore.cpp index 56a5718..ed19bb4 100644 --- a/PdfTool/pdftoolcertstore.cpp +++ b/PdfTool/pdftoolcertstore.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2023 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolcertstore.h" #include "pdfsignaturehandler.h" diff --git a/PdfTool/pdftoolcertstore.h b/PdfTool/pdftoolcertstore.h index 8a2a1c4..c8c428d 100644 --- a/PdfTool/pdftoolcertstore.h +++ b/PdfTool/pdftoolcertstore.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLCERTSTORE_H #define PDFTOOLCERTSTORE_H diff --git a/PdfTool/pdftoolcolorprofiles.cpp b/PdfTool/pdftoolcolorprofiles.cpp index be2b0ae..2478af8 100644 --- a/PdfTool/pdftoolcolorprofiles.cpp +++ b/PdfTool/pdftoolcolorprofiles.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolcolorprofiles.h" #include "pdfcms.h" diff --git a/PdfTool/pdftoolcolorprofiles.h b/PdfTool/pdftoolcolorprofiles.h index 3c5a369..ecc4f95 100644 --- a/PdfTool/pdftoolcolorprofiles.h +++ b/PdfTool/pdftoolcolorprofiles.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLCOLORPROFILES_H #define PDFTOOLCOLORPROFILES_H diff --git a/PdfTool/pdftooldecrypt.cpp b/PdfTool/pdftooldecrypt.cpp index 86eaa1b..0d3d51d 100644 --- a/PdfTool/pdftooldecrypt.cpp +++ b/PdfTool/pdftooldecrypt.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftooldecrypt.h" #include "pdfdocumentbuilder.h" diff --git a/PdfTool/pdftooldecrypt.h b/PdfTool/pdftooldecrypt.h index a6263ca..4450607 100644 --- a/PdfTool/pdftooldecrypt.h +++ b/PdfTool/pdftooldecrypt.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLDECRYPT_H #define PDFTOOLDECRYPT_H diff --git a/PdfTool/pdftooldiff.cpp b/PdfTool/pdftooldiff.cpp index 019ac53..a74b5da 100644 --- a/PdfTool/pdftooldiff.cpp +++ b/PdfTool/pdftooldiff.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftooldiff.h" diff --git a/PdfTool/pdftooldiff.h b/PdfTool/pdftooldiff.h index 0a53851..58ab3db 100644 --- a/PdfTool/pdftooldiff.h +++ b/PdfTool/pdftooldiff.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLDIFF_H #define PDFTOOLDIFF_H diff --git a/PdfTool/pdftoolencrypt.cpp b/PdfTool/pdftoolencrypt.cpp index 139d6d5..1459d0d 100644 --- a/PdfTool/pdftoolencrypt.cpp +++ b/PdfTool/pdftoolencrypt.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolencrypt.h" #include "pdfdocumentbuilder.h" diff --git a/PdfTool/pdftoolencrypt.h b/PdfTool/pdftoolencrypt.h index 5ff57bd..a4b67fa 100644 --- a/PdfTool/pdftoolencrypt.h +++ b/PdfTool/pdftoolencrypt.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLENCRYPT_H #define PDFTOOLENCRYPT_H diff --git a/PdfTool/pdftoolfetchimages.cpp b/PdfTool/pdftoolfetchimages.cpp index e0a88b8..4bea869 100644 --- a/PdfTool/pdftoolfetchimages.cpp +++ b/PdfTool/pdftoolfetchimages.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolfetchimages.h" #include "pdfpagecontentprocessor.h" diff --git a/PdfTool/pdftoolfetchimages.h b/PdfTool/pdftoolfetchimages.h index ba1ccd3..a7ae68c 100644 --- a/PdfTool/pdftoolfetchimages.h +++ b/PdfTool/pdftoolfetchimages.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLFETCHIMAGES_H #define PDFTOOLFETCHIMAGES_H diff --git a/PdfTool/pdftoolfetchtext.cpp b/PdfTool/pdftoolfetchtext.cpp index 85e4b87..db69faa 100644 --- a/PdfTool/pdftoolfetchtext.cpp +++ b/PdfTool/pdftoolfetchtext.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolfetchtext.h" #include "pdfdocumenttextflow.h" diff --git a/PdfTool/pdftoolfetchtext.h b/PdfTool/pdftoolfetchtext.h index 026b602..4a8e379 100644 --- a/PdfTool/pdftoolfetchtext.h +++ b/PdfTool/pdftoolfetchtext.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLFETCHTEXT_H #define PDFTOOLFETCHTEXT_H diff --git a/PdfTool/pdftoolinfo.cpp b/PdfTool/pdftoolinfo.cpp index e937f73..7a602d9 100644 --- a/PdfTool/pdftoolinfo.cpp +++ b/PdfTool/pdftoolinfo.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfo.h" #include "pdfform.h" diff --git a/PdfTool/pdftoolinfo.h b/PdfTool/pdftoolinfo.h index 46d742b..3c2963e 100644 --- a/PdfTool/pdftoolinfo.h +++ b/PdfTool/pdftoolinfo.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFO_H #define PDFTOOLINFO_H diff --git a/PdfTool/pdftoolinfofonts.cpp b/PdfTool/pdftoolinfofonts.cpp index 00049c4..cfa9a99 100644 --- a/PdfTool/pdftoolinfofonts.cpp +++ b/PdfTool/pdftoolinfofonts.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfofonts.h" #include "pdfexecutionpolicy.h" diff --git a/PdfTool/pdftoolinfofonts.h b/PdfTool/pdftoolinfofonts.h index 480829b..5a0eba9 100644 --- a/PdfTool/pdftoolinfofonts.h +++ b/PdfTool/pdftoolinfofonts.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFOFONTS_H #define PDFTOOLINFOFONTS_H diff --git a/PdfTool/pdftoolinfoinks.cpp b/PdfTool/pdftoolinfoinks.cpp index d886a93..00f4ba6 100644 --- a/PdfTool/pdftoolinfoinks.cpp +++ b/PdfTool/pdftoolinfoinks.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfoinks.h" #include "pdftransparencyrenderer.h" diff --git a/PdfTool/pdftoolinfoinks.h b/PdfTool/pdftoolinfoinks.h index 1fbac0c..ba7c830 100644 --- a/PdfTool/pdftoolinfoinks.h +++ b/PdfTool/pdftoolinfoinks.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFOINKS_H #define PDFTOOLINFOINKS_H diff --git a/PdfTool/pdftoolinfojavascript.cpp b/PdfTool/pdftoolinfojavascript.cpp index 623311d..1b2b9bc 100644 --- a/PdfTool/pdftoolinfojavascript.cpp +++ b/PdfTool/pdftoolinfojavascript.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfojavascript.h" #include "pdfjavascriptscanner.h" diff --git a/PdfTool/pdftoolinfojavascript.h b/PdfTool/pdftoolinfojavascript.h index 927c684..2262b47 100644 --- a/PdfTool/pdftoolinfojavascript.h +++ b/PdfTool/pdftoolinfojavascript.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFOJAVASCRIPT_H #define PDFTOOLINFOJAVASCRIPT_H diff --git a/PdfTool/pdftoolinfometadata.cpp b/PdfTool/pdftoolinfometadata.cpp index fe837b1..28cdbd8 100644 --- a/PdfTool/pdftoolinfometadata.cpp +++ b/PdfTool/pdftoolinfometadata.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfometadata.h" #include "pdfexception.h" diff --git a/PdfTool/pdftoolinfometadata.h b/PdfTool/pdftoolinfometadata.h index 8a73961..57d4569 100644 --- a/PdfTool/pdftoolinfometadata.h +++ b/PdfTool/pdftoolinfometadata.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFOMETADATA_H #define PDFTOOLINFOMETADATA_H diff --git a/PdfTool/pdftoolinfonameddestinations.cpp b/PdfTool/pdftoolinfonameddestinations.cpp index 9eb8175..89450b7 100644 --- a/PdfTool/pdftoolinfonameddestinations.cpp +++ b/PdfTool/pdftoolinfonameddestinations.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfonameddestinations.h" #include "pdfencoding.h" diff --git a/PdfTool/pdftoolinfonameddestinations.h b/PdfTool/pdftoolinfonameddestinations.h index 424a853..f7d93d4 100644 --- a/PdfTool/pdftoolinfonameddestinations.h +++ b/PdfTool/pdftoolinfonameddestinations.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFONAMEDDESTINATIONS_H #define PDFTOOLINFONAMEDDESTINATIONS_H diff --git a/PdfTool/pdftoolinfopageboxes.cpp b/PdfTool/pdftoolinfopageboxes.cpp index 4168566..7c3e084 100644 --- a/PdfTool/pdftoolinfopageboxes.cpp +++ b/PdfTool/pdftoolinfopageboxes.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfopageboxes.h" #include "pdfutils.h" diff --git a/PdfTool/pdftoolinfopageboxes.h b/PdfTool/pdftoolinfopageboxes.h index bbf2918..7cf3fbb 100644 --- a/PdfTool/pdftoolinfopageboxes.h +++ b/PdfTool/pdftoolinfopageboxes.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFOPAGEBOXES_H #define PDFTOOLINFOPAGEBOXES_H diff --git a/PdfTool/pdftoolinfostructuretree.cpp b/PdfTool/pdftoolinfostructuretree.cpp index 6586f72..a6a1aad 100644 --- a/PdfTool/pdftoolinfostructuretree.cpp +++ b/PdfTool/pdftoolinfostructuretree.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinfostructuretree.h" #include "pdfstructuretree.h" diff --git a/PdfTool/pdftoolinfostructuretree.h b/PdfTool/pdftoolinfostructuretree.h index 4626316..47139ec 100644 --- a/PdfTool/pdftoolinfostructuretree.h +++ b/PdfTool/pdftoolinfostructuretree.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINFOSTRUCTURETREE_H #define PDFTOOLINFOSTRUCTURETREE_H diff --git a/PdfTool/pdftoolinkcoverage.cpp b/PdfTool/pdftoolinkcoverage.cpp index 29df77d..8a8d9b1 100644 --- a/PdfTool/pdftoolinkcoverage.cpp +++ b/PdfTool/pdftoolinkcoverage.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolinkcoverage.h" #include "pdftransparencyrenderer.h" diff --git a/PdfTool/pdftoolinkcoverage.h b/PdfTool/pdftoolinkcoverage.h index cf44f9b..770a63d 100644 --- a/PdfTool/pdftoolinkcoverage.h +++ b/PdfTool/pdftoolinkcoverage.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLINKCOVERAGE_H #define PDFTOOLINKCOVERAGE_H diff --git a/PdfTool/pdftooloptimize.cpp b/PdfTool/pdftooloptimize.cpp index f224f35..1118143 100644 --- a/PdfTool/pdftooloptimize.cpp +++ b/PdfTool/pdftooloptimize.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftooloptimize.h" #include "pdfdocumentwriter.h" diff --git a/PdfTool/pdftooloptimize.h b/PdfTool/pdftooloptimize.h index c48a657..220b3d1 100644 --- a/PdfTool/pdftooloptimize.h +++ b/PdfTool/pdftooloptimize.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLOPTIMIZE_H #define PDFTOOLOPTIMIZE_H diff --git a/PdfTool/pdftoolrender.cpp b/PdfTool/pdftoolrender.cpp index 9caabcb..e3c836c 100644 --- a/PdfTool/pdftoolrender.cpp +++ b/PdfTool/pdftoolrender.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolrender.h" #include "pdffont.h" diff --git a/PdfTool/pdftoolrender.h b/PdfTool/pdftoolrender.h index 26458b9..ab8c939 100644 --- a/PdfTool/pdftoolrender.h +++ b/PdfTool/pdftoolrender.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLRENDER_H #define PDFTOOLRENDER_H diff --git a/PdfTool/pdftoolseparate.cpp b/PdfTool/pdftoolseparate.cpp index ecc82f0..7051142 100644 --- a/PdfTool/pdftoolseparate.cpp +++ b/PdfTool/pdftoolseparate.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolseparate.h" #include "pdfdocumentbuilder.h" diff --git a/PdfTool/pdftoolseparate.h b/PdfTool/pdftoolseparate.h index f52f43f..ffa8793 100644 --- a/PdfTool/pdftoolseparate.h +++ b/PdfTool/pdftoolseparate.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLSEPARATE_H #define PDFTOOLSEPARATE_H diff --git a/PdfTool/pdftoolstatistics.cpp b/PdfTool/pdftoolstatistics.cpp index 61bd936..8b26676 100644 --- a/PdfTool/pdftoolstatistics.cpp +++ b/PdfTool/pdftoolstatistics.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolstatistics.h" #include "pdfobjectutils.h" diff --git a/PdfTool/pdftoolstatistics.h b/PdfTool/pdftoolstatistics.h index 1df2d82..814285f 100644 --- a/PdfTool/pdftoolstatistics.h +++ b/PdfTool/pdftoolstatistics.h @@ -1,19 +1,24 @@ -// Copyright (C) 2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLSTATISTICS_H #define PDFTOOLSTATISTICS_H diff --git a/PdfTool/pdftoolunite.cpp b/PdfTool/pdftoolunite.cpp index fb85e77..7d3306f 100644 --- a/PdfTool/pdftoolunite.cpp +++ b/PdfTool/pdftoolunite.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolunite.h" #include "pdfdocumentbuilder.h" diff --git a/PdfTool/pdftoolunite.h b/PdfTool/pdftoolunite.h index 09b31a3..72f63f4 100644 --- a/PdfTool/pdftoolunite.h +++ b/PdfTool/pdftoolunite.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLUNITE_H #define PDFTOOLUNITE_H diff --git a/PdfTool/pdftoolverifysignatures.cpp b/PdfTool/pdftoolverifysignatures.cpp index 38398ca..b0bbf6b 100644 --- a/PdfTool/pdftoolverifysignatures.cpp +++ b/PdfTool/pdftoolverifysignatures.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolverifysignatures.h" diff --git a/PdfTool/pdftoolverifysignatures.h b/PdfTool/pdftoolverifysignatures.h index a109918..aab8279 100644 --- a/PdfTool/pdftoolverifysignatures.h +++ b/PdfTool/pdftoolverifysignatures.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLVERIFYSIGNATURES_H #define PDFTOOLVERIFYSIGNATURES_H diff --git a/PdfTool/pdftoolxml.cpp b/PdfTool/pdftoolxml.cpp index c9acf74..be6ece2 100644 --- a/PdfTool/pdftoolxml.cpp +++ b/PdfTool/pdftoolxml.cpp @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include "pdftoolxml.h" #include "pdfvisitor.h" diff --git a/PdfTool/pdftoolxml.h b/PdfTool/pdftoolxml.h index 63051f0..9cf14f7 100644 --- a/PdfTool/pdftoolxml.h +++ b/PdfTool/pdftoolxml.h @@ -1,19 +1,24 @@ -// Copyright (C) 2020-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #ifndef PDFTOOLXML_H #define PDFTOOLXML_H diff --git a/UnitTests/CMakeLists.txt b/UnitTests/CMakeLists.txt index 3cb3547..c1a912f 100644 --- a/UnitTests/CMakeLists.txt +++ b/UnitTests/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. add_executable(UnitTests tst_lexicalanalyzertest.cpp diff --git a/UnitTests/tst_lexicalanalyzertest.cpp b/UnitTests/tst_lexicalanalyzertest.cpp index e6ccc12..dc2e2a9 100644 --- a/UnitTests/tst_lexicalanalyzertest.cpp +++ b/UnitTests/tst_lexicalanalyzertest.cpp @@ -1,20 +1,24 @@ -// Copyright (C) 2018-2021 Jakub Melka +// MIT License // -// This file is part of PDF4QT. +// Copyright (c) 2018-2025 Jakub Melka and Contributors // -// PDF4QT is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// with the written consent of the copyright owner, any later version. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// PDF4QT is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. // -// You should have received a copy of the GNU Lesser General Public License -// along with PDF4QT. If not, see . - +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #include #include diff --git a/WixInstaller/CMakeLists.txt b/WixInstaller/CMakeLists.txt index eb31867..af63443 100644 --- a/WixInstaller/CMakeLists.txt +++ b/WixInstaller/CMakeLists.txt @@ -1,19 +1,24 @@ -# Copyright (C) 2022 Jakub Melka +# MIT License # -# This file is part of PDF4QT. +# Copyright (c) 2018-2025 Jakub Melka and Contributors # -# PDF4QT is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# with the written consent of the copyright owner, any later version. +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# PDF4QT is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. # -# You should have received a copy of the GNU Lesser General Public License -# along with PDF4QT. If not, see . +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. if(WIN32 AND MSVC AND PDF4QT_INSTALL_PREPARE_WIX_INSTALLER) if(PDF4QT_INSTALL_TO_USR)