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.

64 lines
1.5KB

  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 ABSTRACTCANVASLINE_H
  18. #define ABSTRACTCANVASLINE_H
  19. #include "patchcanvas.h"
  20. START_NAMESPACE_PATCHCANVAS
  21. class AbstractCanvasLine
  22. {
  23. public:
  24. AbstractCanvasLine() {}
  25. virtual void deleteFromScene() = 0;
  26. virtual bool isLocked() const = 0;
  27. virtual void setLocked(bool yesno) = 0;
  28. virtual bool isLineSelected() const = 0;
  29. virtual void setLineSelected(bool yesno) = 0;
  30. virtual void updateLinePos() = 0;
  31. virtual int type() const = 0;
  32. // QGraphicsItem generic calls
  33. virtual void setZValue(qreal z) = 0;
  34. };
  35. class AbstractCanvasLineMov
  36. {
  37. public:
  38. AbstractCanvasLineMov() {}
  39. virtual void deleteFromScene() = 0;
  40. virtual void updateLinePos(QPointF scenePos) = 0;
  41. virtual int type() const = 0;
  42. // QGraphicsItem generic calls
  43. virtual void setZValue(qreal z) = 0;
  44. };
  45. END_NAMESPACE_PATCHCANVAS
  46. #endif // ABSTRACTCANVASLINE_H