FLTK 1.3.9
Loading...
Searching...
No Matches
Fl_Tile.H
1//
2// "$Id$"
3//
4// Tile header file for the Fast Light Tool Kit (FLTK).
5//
6// Copyright 1998-2016 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
29class FL_EXPORT Fl_Tile : public Fl_Group {
30public:
31 int handle(int event);
32 Fl_Tile(int X, int Y, int W, int H, const char *L=0);
33 void resize(int X, int Y, int W, int H);
34 void position(int oldx, int oldy, int newx, int newy);
35};
36
37#endif
38
39//
40// End of "$Id$".
41//
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
The Fl_Tile class lets you resize its children by dragging the border between them.
Definition Fl_Tile.H:29
void position(int X, int Y)
Repositions the window or widget.
Definition Fl_Widget.H:332