00001 // $Id: Flu_Simple_Group.h,v 1.7 2003/08/20 16:29:43 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_SIMPLE_GROUP_H 00017 #define _FLU_SIMPLE_GROUP_H 00018 00019 /* fltk includes */ 00020 #include <FL/Fl.H> 00021 #include <FL/fl_draw.H> 00022 #include <FL/Fl_Group.H> 00023 00024 #include "FLU/Flu_Enumerations.h" 00025 00027 class FLU_EXPORT Flu_Simple_Group : public Fl_Group 00028 { 00029 00030 public: 00031 00033 Flu_Simple_Group( int x, int y, int w, int h, const char *l = 0 ); 00034 00036 void draw(); 00037 00038 }; 00039 00040 #endif