FLTK 1.3.5
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
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
29
class
FL_EXPORT
Fl_Tile
:
public
Fl_Group
{
30
public
:
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
//
© 1998-2016 by Bill Spitzak and others.