Flu_Return_Button.H 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // $Id: Flu_Return_Button.h,v 1.2 2003/08/20 16:29:42 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_RETURN_BUTTON_H
  13. #define _FLU_RETURN_BUTTON_H
  14. #include "FLU/Flu_Button.H"
  15. //! This class extends Flu_Button to make a button similar to Fl_Return_Button
  16. class FLU_EXPORT Flu_Return_Button : public Flu_Button
  17. {
  18. DECLARE_CLASS_CHEAP_RTTI_2(Flu_Return_Button, Flu_Button)
  19. public:
  20. //! Normal FLTK widget constructor
  21. Flu_Return_Button( int X,int Y,int W,int H,const char *l = 0 );
  22. //! Default destructor
  23. ~Flu_Return_Button();
  24. };
  25. #endif