Flu_Link_Button.cpp 863 B

1234567891011121314151617181920212223242526272829
  1. // $Id: Flu_Link_Button.cpp,v 1.3 2003/10/28 15:36:07 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. #include "FLU/Flu_Link_Button.H"
  13. Flu_Link_Button :: Flu_Link_Button( int X,int Y,int W,int H,const char *l )
  14. : Flu_Button( X,Y,W,H,l )
  15. {
  16. box( FL_FLAT_BOX );
  17. linkBtn = true;
  18. overLink = false;
  19. labelcolor( FL_BLUE );
  20. }
  21. Flu_Link_Button :: ~Flu_Link_Button()
  22. {
  23. }