Collection of tools useful for audio production
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4KB

  1. /*
  2. * Patchbay Canvas engine using QGraphicsView/Scene
  3. * Copyright (C) 2010-2012 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the COPYING file
  16. */
  17. #ifndef CANVASICON_H
  18. #define CANVASICON_H
  19. #include <QtSvg/QGraphicsSvgItem>
  20. #include "patchcanvas.h"
  21. class QPainter;
  22. class QGraphicsColorizeEffect;
  23. class QSvgRenderer;
  24. START_NAMESPACE_PATCHCANVAS
  25. class CanvasIcon : public QGraphicsSvgItem
  26. {
  27. public:
  28. CanvasIcon(Icon icon, QString name, QGraphicsItem* parent);
  29. ~CanvasIcon();
  30. void setIcon(Icon icon, QString name);
  31. virtual int type() const;
  32. private:
  33. QGraphicsColorizeEffect* m_colorFX;
  34. QSvgRenderer* m_renderer;
  35. QRectF p_size;
  36. virtual QRectF boundingRect() const;
  37. virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget);
  38. };
  39. END_NAMESPACE_PATCHCANVAS
  40. #endif // CANVASICON_H