qpydesignerpropertysheetextension.sip 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. // This is the SIP specification of the QPyDesignerPropertySheetExtension
  2. // class.
  3. //
  4. // Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
  5. //
  6. // This file is part of PyQt6.
  7. //
  8. // This file may be used under the terms of the GNU General Public License
  9. // version 3.0 as published by the Free Software Foundation and appearing in
  10. // the file LICENSE included in the packaging of this file. Please review the
  11. // following information to ensure the GNU General Public License version 3.0
  12. // requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  13. //
  14. // If you do not wish to use this file under the terms of the GPL version 3.0
  15. // then you may purchase a commercial license. For more information contact
  16. // info@riverbankcomputing.com.
  17. //
  18. // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  19. // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  20. class QPyDesignerPropertySheetExtension : QObject, QDesignerPropertySheetExtension
  21. {
  22. %TypeHeaderCode
  23. #include <qpydesignerpropertysheetextension.h>
  24. %End
  25. public:
  26. QPyDesignerPropertySheetExtension(QObject *parent /TransferThis/);
  27. private:
  28. QPyDesignerPropertySheetExtension(const QPyDesignerPropertySheetExtension &);
  29. };