diff --git a/python/PyKDDockWidgets/__init__.py b/python/PyKDDockWidgets/__init__.py index cdd7a7c6..deace838 100644 --- a/python/PyKDDockWidgets/__init__.py +++ b/python/PyKDDockWidgets/__init__.py @@ -1,10 +1,30 @@ +############################################################################### +## This file is part of KDDockWidgets. +## +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Author: Renato Araujo Oliveira Filho +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation, either version 2 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program. If not, see . +################################################################################ + __all__ = ['KDDockWidgets'] # Preload PySide2 libraries to avoid missing libraries while loading KDDockWidgets try: from PySide2 import QtCore except Exception: - print("Failed to lod PySide") + print("Failed to load PySide") raise # avoid duplicate namespace, due the PYSIDE-1325 bug I will have my package like this diff --git a/python/PyKDDockWidgets/kddockwidgets_global.h b/python/PyKDDockWidgets/kddockwidgets_global.h index cdb1af47..24d07799 100644 --- a/python/PyKDDockWidgets/kddockwidgets_global.h +++ b/python/PyKDDockWidgets/kddockwidgets_global.h @@ -1,3 +1,23 @@ +############################################################################### +## This file is part of KDDockWidgets. +## +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Author: Renato Araujo Oliveira Filho +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation, either version 2 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program. If not, see . +################################################################################ + #pragma once // Make "signals:", "slots:" visible as access specifiers diff --git a/python/examples/MyMainWindow.py b/python/examples/MyMainWindow.py index 73cf92ca..8cf78206 100644 --- a/python/examples/MyMainWindow.py +++ b/python/examples/MyMainWindow.py @@ -1,7 +1,7 @@ ################################################################################ ## This file is part of KDDockWidgets. ## -## Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ## Author: Renato Araujo Oliveira Filho ## ## This program is free software; you can redistribute it and/or modify diff --git a/python/examples/MyWidget.py b/python/examples/MyWidget.py index d018c5b0..d14ea36c 100644 --- a/python/examples/MyWidget.py +++ b/python/examples/MyWidget.py @@ -1,7 +1,7 @@ ################################################################################ ## This file is part of KDDockWidgets. ## -## Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ## Author: Renato Araujo Oliveira Filho ## ## This program is free software; you can redistribute it and/or modify diff --git a/python/examples/MyWidget1.py b/python/examples/MyWidget1.py index 629579fa..8cfe5ffc 100644 --- a/python/examples/MyWidget1.py +++ b/python/examples/MyWidget1.py @@ -1,7 +1,7 @@ ################################################################################ ## This file is part of KDDockWidgets. ## -## Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ## Author: Renato Araujo Oliveira Filho ## ## This program is free software; you can redistribute it and/or modify diff --git a/python/examples/MyWidget2.py b/python/examples/MyWidget2.py index d973d65f..b8fa1cad 100644 --- a/python/examples/MyWidget2.py +++ b/python/examples/MyWidget2.py @@ -1,7 +1,7 @@ ################################################################################ ## This file is part of KDDockWidgets. ## -## Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ## Author: Renato Araujo Oliveira Filho ## ## This program is free software; you can redistribute it and/or modify diff --git a/python/examples/MyWidget3.py b/python/examples/MyWidget3.py index 9658a89a..c6703366 100644 --- a/python/examples/MyWidget3.py +++ b/python/examples/MyWidget3.py @@ -1,7 +1,7 @@ ################################################################################ ## This file is part of KDDockWidgets. ## -## Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ## Author: Renato Araujo Oliveira Filho ## ## This program is free software; you can redistribute it and/or modify diff --git a/python/examples/main.py b/python/examples/main.py index 111ba69a..38ea23a2 100644 --- a/python/examples/main.py +++ b/python/examples/main.py @@ -1,7 +1,7 @@ ################################################################################ ## This file is part of KDDockWidgets. ## -## Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +## Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ## Author: Renato Araujo Oliveira Filho ## ## This program is free software; you can redistribute it and/or modify