FLTK 1.4.0
Loading...
Searching...
No Matches
fl_oxy.h
1//
2// "Oxy" Scheme drawing routines for the Fast Light Tool Kit (FLTK).
3//
4// Copyright 2011 by Dmitrij K. aka "kdiman"
5// Copyright 2012-2022 by Bill Spitzak and others.
6//
7// This library is free software. Distribution and use rights are outlined in
8// the file "COPYING" which should have been included with this file. If this
9// file is missing or damaged, see the license at:
10//
11// https://www.fltk.org/COPYING.php
12//
13// Please report all bugs and problems on the following page:
14//
15// https://www.fltk.org/str.php
16//
17
18#ifndef fl_oxy_h
19#define fl_oxy_h
20
21#include <FL/Fl.H>
22
23// draw an arrow GUI element for the 'oxy' scheme
24//
25// bb bounding box
26// t arrow type
27// o orientation
28// c arrow color
29
30extern FL_EXPORT void oxy_arrow(Fl_Rect bb,
32 Fl_Color col);
33
34#endif // fl_oxy_h
Fl_Arrow_Type
Arrow types define the type of arrow drawing function.
Definition Enumerations.H:1342
unsigned int Fl_Color
An FLTK color value; see also Colors
Definition Enumerations.H:1101
Fl_Orientation
Fl_Orientation describes the orientation of a GUI element.
Definition Enumerations.H:1371
Fl static class.
Rectangle with standard FLTK coordinates (X, Y, W, H).
Definition Fl_Rect.H:30