IconLabel.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /******************************************************************************
  2. Copyright (C) 2024 by Sebastian Beckmann
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #pragma once
  15. #include <QIcon>
  16. #include <QLabel>
  17. /**
  18. * Widget to be used if a label is to be supplied a QIcon instead of a QPixmap,
  19. * specifically so that qproperty-icon QSS styling works on it without having to
  20. * first convert the icon to a fixed size PNG and then setting qproperty-pixmap
  21. * in addition to the qproperty-icon statements.
  22. */
  23. class IconLabel : public QLabel {
  24. Q_OBJECT
  25. Q_PROPERTY(QIcon icon READ icon WRITE setIcon)
  26. Q_PROPERTY(int iconSize READ iconSize WRITE setIconSize)
  27. public:
  28. inline IconLabel(QWidget *parent = nullptr) : QLabel(parent), m_icon(), m_iconSize(16) {}
  29. inline QIcon icon() const { return m_icon; }
  30. void setIcon(const QIcon &icon);
  31. inline int iconSize() const { return m_iconSize; }
  32. void setIconSize(int newSize);
  33. private:
  34. QIcon m_icon;
  35. int m_iconSize;
  36. };