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.

82 lines
1.9KB

  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 GPL.txt file
  16. */
  17. #ifndef __DIGITALPEAKMETER_HPP__
  18. #define __DIGITALPEAKMETER_HPP__
  19. #include "CarlaDefines.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();
  39. void displayMeter(int meter, float level);
  40. void setChannels(int channels);
  41. void setColor(Color color);
  42. void setOrientation(Orientation orientation);
  43. void setRefreshRate(int rate);
  44. void setSmoothRelease(int value);
  45. QSize minimumSizeHint() const;
  46. QSize sizeHint() const;
  47. protected:
  48. void updateSizes();
  49. void paintEvent(QPaintEvent* event);
  50. void resizeEvent(QResizeEvent* event);
  51. private:
  52. int fChannels;
  53. int fSmoothMultiplier;
  54. int fWidth, fHeight, fSizeMeter;
  55. Orientation fOrientation;
  56. QColor fColorBackground;
  57. QLinearGradient fGradientMeter;
  58. QColor fColorBase;
  59. QColor fColorBaseAlt;
  60. float* fChannelsData;
  61. float* fLastValueData;
  62. QTimer fPaintTimer;
  63. };
  64. #endif // __DIGITALPEAKMETER_HPP__