Audio plugin host https://kx.studio/carla
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.

digitalpeakmeter.hpp 2.0KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * Digital Peak Meter, a custom Qt4 widget
  3. * Copyright (C) 2011-2013 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or 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 doc/GPL.txt file.
  16. */
  17. #ifndef DIGITALPEAKMETER_HPP_INCLUDED
  18. #define DIGITALPEAKMETER_HPP_INCLUDED
  19. #include "CarlaJuceUtils.hpp"
  20. #include <QtCore/QTimer>
  21. #if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
  22. # include <QtWidgets/QWidget>
  23. #else
  24. # include <QtGui/QWidget>
  25. #endif
  26. class DigitalPeakMeter : public QWidget
  27. {
  28. public:
  29. enum Orientation {
  30. HORIZONTAL = 1,
  31. VERTICAL = 2
  32. };
  33. enum Color {
  34. GREEN = 1,
  35. BLUE = 2
  36. };
  37. DigitalPeakMeter(QWidget* parent);
  38. ~DigitalPeakMeter() override;
  39. void displayMeter(int meter, float level);
  40. void setChannels(int channels);
  41. void setColor(Color color);
  42. void setOrientation(Orientation orientation);
  43. void setSmoothRelease(int value);
  44. QSize minimumSizeHint() const override;
  45. QSize sizeHint() const override;
  46. protected:
  47. void updateSizes();
  48. void paintEvent(QPaintEvent* event) override;
  49. void resizeEvent(QResizeEvent* event) override;
  50. private:
  51. int fChannels;
  52. int fSmoothMultiplier;
  53. int fWidth, fHeight, fSizeMeter;
  54. Orientation fOrientation;
  55. QColor fColorBackground;
  56. QLinearGradient fGradientMeter;
  57. QColor fColorBase;
  58. QColor fColorBaseAlt;
  59. float* fChannelsData;
  60. float* fLastValueData;
  61. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(DigitalPeakMeter)
  62. };
  63. #endif // DIGITALPEAKMETER_HPP_INCLUDED