Programmable real-time audio signal processing application
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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