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

Fl_Size.h

00001 /*
00002  * $Id: Fl_Size.h,v 1.1 2003/04/20 05:19:59 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_SIZE_H__
00023 #define __FL_SIZE_H__
00024 
00026 class FL_API Fl_Size
00027 {
00028     int width_, height_;
00029 public:
00030     Fl_Size() : width_(0), height_(0) {}
00031     Fl_Size(int w, int h) : width_(w), height_(h) {}
00032 
00033     Fl_Size &operator=( const Fl_Size &s ) { width(s.w()); height(s.h()); return *this; }
00034 
00035     int width() const { return width_; }
00036     int w() const { return width_; }
00037 
00038     int h() const { return height_; }   
00039     int height() const { return height_; }
00040 
00041     void width(int w) { width_ = w; }
00042     void height(int h) { height_ = h; }
00043 };
00044 
00045 #endif

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