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.

18 lines
388B

  1. #ifndef _Fl_VU_Meter_H_
  2. #define _Fl_VU_Meter_H_
  3. #include <FL/Fl_Progress.H>
  4. class Fl_VU_Meter : public Fl_Progress {
  5. public:
  6. FL_EXPORT Fl_VU_Meter (int x, int y, int w, int h, const char *l = 0);
  7. const bool vu_mode (void) { return m_VUMode; };
  8. void vu_mode (bool m) { m_VUMode=m; };
  9. protected:
  10. FL_EXPORT virtual void draw();
  11. private:
  12. bool m_VUMode;
  13. };
  14. #endif