FLTK 1.3.2
Fl_Tile.H
1 //
2 // "$Id: Fl_Tile.H 9637 2012-07-24 04:37:22Z matt $"
3 //
4 // Tile header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2010 by Bill Spitzak and others.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // http://www.fltk.org/COPYING.php
13 //
14 // Please report all bugs and problems on the following page:
15 //
16 // http://www.fltk.org/str.php
17 //
18 
19 /* \file
20  Fl_Tile widget . */
21 
22 #ifndef Fl_Tile_H
23 #define Fl_Tile_H
24 
25 #include "Fl_Group.H"
26 
70 class FL_EXPORT Fl_Tile : public Fl_Group {
71 public:
72  int handle(int);
84  Fl_Tile(int X,int Y,int W,int H,const char*l=0);
85  void resize(int, int, int, int);
86  void position(int, int, int, int);
87 };
88 
89 #endif
90 
91 //
92 // End of "$Id: Fl_Tile.H 9637 2012-07-24 04:37:22Z matt $".
93 //
The Fl_Tile class lets you resize the children by dragging the border between them: ...
Definition: Fl_Tile.H:70
The Fl_Group class is the FLTK container widget.
Definition: Fl_Group.H:36
int handle(int)
Handles the specified event.
Definition: Fl_Group.cxx:145
void resize(int, int, int, int)
Resizes the Fl_Group widget and all of its children.
Definition: Fl_Group.cxx:632
void position(int X, int Y)
Repositions the window or widget.
Definition: Fl_Widget.H:320