AboutWindow.h 375 B

123456789101112131415161718192021222324
  1. #ifndef __ABOUTWINDOW
  2. #define __ABOUTWINDOW
  3. #include <FL/Fl.H>
  4. #include <FL/Fl_Window.H>
  5. #include <FL/Fl_Text_Display.H>
  6. #include <FL/Fl_Text_Buffer.H>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. class AboutWindow : public Fl_Window {
  10. public:
  11. AboutWindow(void);
  12. ~AboutWindow(void);
  13. private:
  14. Fl_Text_Display* lic;
  15. Fl_Text_Buffer* buf;
  16. };
  17. #endif