Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

Fl_Value_Output.h

00001 /*
00002  * $Id: Fl_Value_Output.h,v 1.7 2003/04/04 18:36:23 parshin Exp $
00003  *
00004  * Extended Fast Light Toolkit (EFLTK)
00005  * Copyright (C) 2002-2003 by EDE-Team
00006  * WWW: http://www.sourceforge.net/projects/ede
00007  *
00008  * Fast Light Toolkit (FLTK)
00009  * Copyright (C) 1998-2003 by Bill Spitzak and others.
00010  * WWW: http://www.fltk.org
00011  *
00012  * This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
00013  * version 2. See COPYING for details.
00014  *
00015  * Author : Mikko Lahteenmaki
00016  * Email  : mikko@fltk.net
00017  *
00018  * Please report all bugs and problems to "efltk-bugs@fltk.net"
00019  *
00020  */
00021 
00022 #ifndef _FL_VALUE_OUTPUT_H_
00023 #define _FL_VALUE_OUTPUT_H_
00024 
00025 #include "Fl_Value_Input.h"
00026 #include "Fl_Output.h"
00027 
00029 class FL_API Fl_Value_Output : public Fl_Value_Input {
00030 public:
00032     Fl_Value_Output(int x,int y,int w,int h,const char *l = 0) 
00033     : Fl_Value_Input(x, y, w, h, l) {
00034         input.readonly(1);
00035         copy_style(Fl_Output::default_style);
00036     }
00037 
00039     Fl_Value_Output(const char* l = 0,int layout_size=30,Fl_Align layout_al=FL_ALIGN_TOP,int label_w=100)
00040     : Fl_Value_Input(l,layout_size,layout_al,label_w) {
00041         input.readonly(1);
00042         copy_style(Fl_Output::default_style);
00043     }
00044 
00045     void soft(uchar x) { } // unimplemented, it acts like true allways
00046     bool soft() const { return true; }
00047 };
00048 
00049 #endif

Generated on Thu Jul 31 15:33:45 2003 for eFLTK by doxygen1.2.15