00001 // $Id: Flu_Link_Button.h,v 1.3 2003/10/28 15:36:06 jbryan Exp $ 00002 00003 /*************************************************************** 00004 * FLU - FLTK Utility Widgets 00005 * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University 00006 * 00007 * This file and its content is protected by a software license. 00008 * You should have received a copy of this license with this file. 00009 * If not, please contact the Ohio Supercomputer Center immediately: 00010 * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212 00011 * 00012 ***************************************************************/ 00013 00014 00015 00016 #ifndef _FLU_LINK_BUTTON_H 00017 #define _FLU_LINK_BUTTON_H 00018 00019 #include "FLU/Flu_Button.h" 00020 00022 class FLU_EXPORT Flu_Link_Button : public Flu_Button 00023 { 00024 public: 00025 00027 Flu_Link_Button( int X,int Y,int W,int H,const char *l = 0 ); 00028 00030 ~Flu_Link_Button(); 00031 00033 inline void overlink( bool b ) 00034 { overLink = b; } 00035 00037 inline bool overlink() const 00038 { return overLink; } 00039 00040 }; 00041 00042 #endif