FLTK 1.3.3
Fl_Tile.H
1 //
2 // "$Id: Fl_Tile.H 10385 2014-10-19 14:17:47Z AlbrechtS $"
3 //
4 // Tile header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2014 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 #ifndef Fl_Tile_H
20 #define Fl_Tile_H
21 
22 #include "Fl_Group.H"
23 
24 /*
25  The Fl_Tile class lets you resize its children by dragging
26  the border between them.
27 */
28 
29 class FL_EXPORT Fl_Tile : public Fl_Group {
30 public:
31  int handle(int);
32  Fl_Tile(int X,int Y,int W,int H,const char*l=0);
33  void resize(int, int, int, int);
34  void position(int, int, int, int);
35 };
36 
37 #endif
38 
39 //
40 // End of "$Id: Fl_Tile.H 10385 2014-10-19 14:17:47Z AlbrechtS $".
41 //
The Fl_Tile class lets you resize its children by dragging the border between them.
Definition: Fl_Tile.H:29
The Fl_Group class is the FLTK container widget.
Definition: Fl_Group.H:41
int handle(int)
Handles the specified event.
Definition: Fl_Group.cxx:147
void resize(int, int, int, int)
Resizes the Fl_Group widget and all of its children.
Definition: Fl_Group.cxx:634
void position(int X, int Y)
Repositions the window or widget.
Definition: Fl_Widget.H:321