IconLabel.hpp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. {
  32. m_icon = icon;
  33. QLabel::setPixmap(icon.pixmap(m_iconSize));
  34. }
  35. inline int iconSize() const { return m_iconSize; }
  36. void setIconSize(int newSize) { m_iconSize = newSize; }
  37. private:
  38. QIcon m_icon;
  39. int m_iconSize;
  40. };