FLTK
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
//
Fl_Widget::position
void position(int X, int Y)
Repositions the window or widget.
Definition:
Fl_Widget.H:332
Fl_Group
The Fl_Group class is the FLTK container widget.
Definition:
Fl_Group.H:41
Fl_Group::resize
void resize(int, int, int, int)
Resizes the Fl_Group widget and all of its children.
Definition:
Fl_Group.cxx:634
Fl_Group::handle
int handle(int)
Handles the specified event.
Definition:
Fl_Group.cxx:147
Fl_Tile
Definition:
Fl_Tile.H:29
© 1998-2016 by Bill Spitzak and others.