Programmable real-time audio signal processing application
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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