Fl_Round_Clock.H 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // "$Id: Fl_Round_Clock.H 9637 2012-07-24 04:37:22Z matt $"
  3. //
  4. // Round clock header file for the Fast Light Tool Kit (FLTK).
  5. //
  6. // Copyright 1998-2010 by Bill Spitzak and others.
  7. //
  8. // This library is free software. Distribution and use rights are outlined in
  9. // the file "COPYING" which should have been included with this file. If this
  10. // file is missing or damaged, see the license at:
  11. //
  12. // http://www.fltk.org/COPYING.php
  13. //
  14. // Please report all bugs and problems on the following page:
  15. //
  16. // http://www.fltk.org/str.php
  17. //
  18. /* \file
  19. Fl_Round_Clock widget . */
  20. #ifndef Fl_Round_Clock_H
  21. #define Fl_Round_Clock_H
  22. #include "Fl_Clock.H"
  23. /** A clock widget of type FL_ROUND_CLOCK. Has no box. */
  24. class FL_EXPORT Fl_Round_Clock : public Fl_Clock {
  25. public:
  26. /** Creates the clock widget, setting his type and box. */
  27. Fl_Round_Clock(int X,int Y,int W,int H, const char *L = 0);
  28. DECLARE_CLASS_CHEAP_RTTI_2(Fl_Round_Clock, Fl_Clock)
  29. };
  30. #endif
  31. //
  32. // End of "$Id: Fl_Round_Clock.H 9637 2012-07-24 04:37:22Z matt $".
  33. //