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.

39 lines
1.3KB

  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. #include "canvasportglow.h"
  18. START_NAMESPACE_PATCHCANVAS
  19. CanvasPortGlow::CanvasPortGlow(PortType port_type, QObject* parent) :
  20. QGraphicsDropShadowEffect(parent)
  21. {
  22. setBlurRadius(12);
  23. setOffset(0, 0);
  24. if (port_type == PORT_TYPE_AUDIO_JACK)
  25. setColor(canvas.theme->line_audio_jack_glow);
  26. else if (port_type == PORT_TYPE_MIDI_JACK)
  27. setColor(canvas.theme->line_midi_jack_glow);
  28. else if (port_type == PORT_TYPE_MIDI_A2J)
  29. setColor(canvas.theme->line_midi_a2j_glow);
  30. else if (port_type == PORT_TYPE_MIDI_ALSA)
  31. setColor(canvas.theme->line_midi_alsa_glow);
  32. }
  33. END_NAMESPACE_PATCHCANVAS