Flu_Simple_Group.H 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // $Id: Flu_Simple_Group.h,v 1.7 2003/08/20 16:29:43 jbryan Exp $
  2. /***************************************************************
  3. * FLU - FLTK Utility Widgets
  4. * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  5. *
  6. * This file and its content is protected by a software license.
  7. * You should have received a copy of this license with this file.
  8. * If not, please contact the Ohio Supercomputer Center immediately:
  9. * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  10. *
  11. ***************************************************************/
  12. #ifndef _FLU_SIMPLE_GROUP_H
  13. #define _FLU_SIMPLE_GROUP_H
  14. /* fltk includes */
  15. #include <FL/Fl.H>
  16. #include <FL/fl_draw.H>
  17. #include <FL/Fl_Group.H>
  18. #include "FLU/Flu_Enumerations.H"
  19. //! This class provides a simple aesthetic alternative to Fl_Group
  20. class FLU_EXPORT Flu_Simple_Group : public Fl_Group
  21. {
  22. DECLARE_CLASS_CHEAP_RTTI_2(Flu_Simple_Group, Fl_Group)
  23. public:
  24. //! Normal FLTK constructor
  25. Flu_Simple_Group( int x, int y, int w, int h, const char *l = 0 );
  26. //! Override of Fl_Group::draw()
  27. void draw();
  28. };
  29. #endif