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.

14 lines
263B

  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. protected:
  8. FL_EXPORT virtual void draw();
  9. };
  10. #endif