| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- // $Id: Flu_Simple_Group.cpp,v 1.5 2004/06/17 14:16:42 jbryan Exp $
- /***************************************************************
- * FLU - FLTK Utility Widgets
- * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
- *
- * This file and its content is protected by a software license.
- * You should have received a copy of this license with this file.
- * If not, please contact the Ohio Supercomputer Center immediately:
- * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
- *
- ***************************************************************/
- #include "FLU/Flu_Simple_Group.H"
- #include <string.h>
- #include <stdio.h>
- Flu_Simple_Group :: Flu_Simple_Group( int x, int y, int w, int h, const char *l )
- : Fl_Group( x, y, w, h, l )
- {
- box( FL_EMBOSSED_FRAME );
- align( FL_ALIGN_LEFT | FL_ALIGN_INSIDE );
- }
- void Flu_Simple_Group :: draw()
- {
- int lblW = 0, lblH, X;
- if( label() == 0 )
- lblW = lblH = 0;
- else if( strlen( label() ) == 0 )
- lblW = lblH = 0;
- else
- {
- measure_label( lblW, lblH );
- lblW += 4;
- lblH += 2;
- }
- // align the label
- if( align() & FL_ALIGN_LEFT )
- X = 4;
- else if( align() & FL_ALIGN_RIGHT )
- X = w() - lblW - 8;
- else
- X = w()/2 - lblW/2 - 2;
- // draw the main group box
- if( damage() & ~FL_DAMAGE_CHILD )
- fl_draw_box( box(), x(), y()+lblH/2, w(), h()-lblH/2, color() );
- // clip and draw the children
- fl_clip( x()+2, y()+lblH+1, w()-4, h()-lblH-3 );
- draw_children();
- fl_pop_clip();
- // clear behind the label and draw it
- fl_color( color() );
- fl_rectf( x()+X, y(), lblW+4, lblH );
- fl_color( labelcolor() );
- draw_label( x()+X+2, y(), lblW, lblH, FL_ALIGN_CENTER );
- }
|