Programmable real-time audio signal processing application
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.

Fl_Vert_Progress.h 372B

12345678910111213141516
  1. //| Copyright: (C) 2019-2020 Kevin Larke <contact AT larke DOT org>
  2. //| License: GNU GPL version 3.0 or above. See the accompanying LICENSE file.
  3. #ifndef Fl_Vert_Progress_h
  4. #define Fl_Vert_Progress_h
  5. class Fl_Vert_Progress : public Fl_Progress
  6. {
  7. protected:
  8. virtual void draw();
  9. public:
  10. Fl_Vert_Progress(int x, int y, int w, int h, const char* l=0);
  11. };
  12. #endif