qactiongroup.sip 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // qactiongroup.sip generated by MetaSIP
  2. //
  3. // This file is part of the QtGui Python extension module.
  4. //
  5. // Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
  6. //
  7. // This file is part of PyQt6.
  8. //
  9. // This file may be used under the terms of the GNU General Public License
  10. // version 3.0 as published by the Free Software Foundation and appearing in
  11. // the file LICENSE included in the packaging of this file. Please review the
  12. // following information to ensure the GNU General Public License version 3.0
  13. // requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  14. //
  15. // If you do not wish to use this file under the terms of the GPL version 3.0
  16. // then you may purchase a commercial license. For more information contact
  17. // info@riverbankcomputing.com.
  18. //
  19. // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  20. // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  21. class QActionGroup : public QObject
  22. {
  23. %TypeHeaderCode
  24. #include <qactiongroup.h>
  25. %End
  26. public:
  27. explicit QActionGroup(QObject *parent /TransferThis/);
  28. virtual ~QActionGroup();
  29. QAction *addAction(QAction *a /Transfer/);
  30. QAction *addAction(const QString &text) /Transfer/;
  31. QAction *addAction(const QIcon &icon, const QString &text) /Transfer/;
  32. void removeAction(QAction *a /TransferBack/);
  33. QList<QAction *> actions() const;
  34. QAction *checkedAction() const;
  35. bool isExclusive() const;
  36. bool isEnabled() const;
  37. bool isVisible() const;
  38. enum class ExclusionPolicy
  39. {
  40. None,
  41. Exclusive,
  42. ExclusiveOptional,
  43. };
  44. QActionGroup::ExclusionPolicy exclusionPolicy() const;
  45. public slots:
  46. void setEnabled(bool);
  47. void setDisabled(bool b);
  48. void setVisible(bool);
  49. void setExclusive(bool);
  50. void setExclusionPolicy(QActionGroup::ExclusionPolicy policy);
  51. signals:
  52. void triggered(QAction *);
  53. void hovered(QAction *);
  54. };