1998-10-20 01:39:29 +04:00
|
|
|
//
|
2000-06-20 09:47:38 +04:00
|
|
|
// "$Id: Fl.H,v 1.8.2.8 2000/06/20 05:47:32 bill Exp $"
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Main header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2000-04-26 02:17:00 +04:00
|
|
|
// Copyright 1998-2000 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2000-06-06 01:21:24 +04:00
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#ifndef Fl_H
|
|
|
|
#define Fl_H
|
|
|
|
|
|
|
|
#include "Enumerations.H"
|
|
|
|
#ifndef Fl_Object
|
|
|
|
#define Fl_Object Fl_Widget
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Fl_Widget;
|
|
|
|
class Fl_Window;
|
|
|
|
struct Fl_Label;
|
|
|
|
typedef void (Fl_Label_Draw_F)(const Fl_Label*, int,int,int,int, Fl_Align);
|
|
|
|
typedef void (Fl_Label_Measure_F)(const Fl_Label*, int&, int&);
|
|
|
|
typedef void (Fl_Box_Draw_F)(int,int,int,int, Fl_Color);
|
|
|
|
|
2000-03-08 19:02:25 +03:00
|
|
|
typedef void (*Fl_Timeout_Handler)(void*);
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
class Fl {
|
|
|
|
Fl() {}; // no constructor!
|
|
|
|
|
|
|
|
public: // should be private!
|
|
|
|
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int e_x,e_y,e_x_root,e_y_root;
|
|
|
|
static FL_EXPORT int e_state;
|
|
|
|
static FL_EXPORT int e_clicks;
|
|
|
|
static FL_EXPORT int e_is_click;
|
|
|
|
static FL_EXPORT int e_keysym;
|
|
|
|
static FL_EXPORT char* e_text;
|
|
|
|
static FL_EXPORT int e_length;
|
|
|
|
static FL_EXPORT Fl_Widget* belowmouse_;
|
|
|
|
static FL_EXPORT Fl_Widget* pushed_;
|
|
|
|
static FL_EXPORT Fl_Widget* focus_;
|
|
|
|
static FL_EXPORT int damage_;
|
|
|
|
static FL_EXPORT Fl_Widget* selection_owner_;
|
|
|
|
static FL_EXPORT Fl_Window* modal_;
|
|
|
|
static FL_EXPORT Fl_Window* grab_;
|
2000-02-21 13:45:59 +03:00
|
|
|
static FL_EXPORT int compose_state;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
static void damage(int x) {damage_ = x;}
|
|
|
|
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void (*idle)();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// argument parsers:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int arg(int, char**, int&);
|
|
|
|
static FL_EXPORT int args(int, char**, int&, int (*)(int,char**,int&) = 0);
|
|
|
|
static FL_EXPORT const char* const help;
|
|
|
|
static FL_EXPORT void args(int, char**);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// things called by initialization:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void display(const char*);
|
|
|
|
static FL_EXPORT int visual(int);
|
|
|
|
static FL_EXPORT int gl_visual(int, int *alist=0);
|
|
|
|
static FL_EXPORT void own_colormap();
|
|
|
|
static FL_EXPORT void get_system_colors();
|
|
|
|
static FL_EXPORT void foreground(uchar, uchar, uchar);
|
|
|
|
static FL_EXPORT void background(uchar, uchar, uchar);
|
|
|
|
static FL_EXPORT void background2(uchar, uchar, uchar);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// execution:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int wait();
|
|
|
|
static FL_EXPORT double wait(double time);
|
|
|
|
static FL_EXPORT int check();
|
|
|
|
static FL_EXPORT int ready();
|
|
|
|
static FL_EXPORT int run();
|
|
|
|
static FL_EXPORT Fl_Widget* readqueue();
|
2000-03-08 19:02:25 +03:00
|
|
|
static FL_EXPORT void add_timeout(double t, Fl_Timeout_Handler,void* = 0);
|
2000-06-20 09:47:38 +04:00
|
|
|
static FL_EXPORT void add_interval_timeout(double t, Fl_Timeout_Handler,void* = 0);
|
2000-06-16 11:28:03 +04:00
|
|
|
static FL_EXPORT int has_timeout(Fl_Timeout_Handler, void* = 0);
|
2000-03-08 19:02:25 +03:00
|
|
|
static FL_EXPORT void remove_timeout(Fl_Timeout_Handler, void* = 0);
|
1999-04-17 05:02:30 +04:00
|
|
|
static FL_EXPORT void add_fd(int fd, int when, void (*cb)(int,void*),void* =0);
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void add_fd(int fd, void (*cb)(int, void*), void* = 0);
|
1999-04-17 05:02:30 +04:00
|
|
|
static FL_EXPORT void remove_fd(int, int when);
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void remove_fd(int);
|
|
|
|
static FL_EXPORT void add_idle(void (*cb)(void*), void* = 0);
|
2000-06-16 11:28:03 +04:00
|
|
|
static FL_EXPORT int has_idle(void (*cb)(void*), void* = 0);
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void remove_idle(void (*cb)(void*), void* = 0);
|
|
|
|
static FL_EXPORT int damage() {return damage_;}
|
|
|
|
static FL_EXPORT void redraw();
|
|
|
|
static FL_EXPORT void flush();
|
|
|
|
static FL_EXPORT void (*warning)(const char*, ...);
|
|
|
|
static FL_EXPORT void (*error)(const char*, ...);
|
|
|
|
static FL_EXPORT void (*fatal)(const char*, ...);
|
|
|
|
static FL_EXPORT Fl_Window* first_window();
|
2000-05-14 00:03:20 +04:00
|
|
|
static FL_EXPORT void first_window(Fl_Window*);
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT Fl_Window* next_window(const Fl_Window*);
|
|
|
|
static FL_EXPORT Fl_Window* modal() {return modal_;}
|
|
|
|
static FL_EXPORT Fl_Window* grab() {return grab_;}
|
|
|
|
static FL_EXPORT void grab(Fl_Window*);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// event information:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int event_x() {return e_x;}
|
|
|
|
static FL_EXPORT int event_y() {return e_y;}
|
|
|
|
static FL_EXPORT int event_x_root() {return e_x_root;}
|
|
|
|
static FL_EXPORT int event_y_root() {return e_y_root;}
|
|
|
|
static FL_EXPORT void get_mouse(int &,int &);
|
|
|
|
static FL_EXPORT int event_clicks() {return e_clicks;}
|
|
|
|
static FL_EXPORT void event_clicks(int i) {e_clicks = i;}
|
|
|
|
static FL_EXPORT int event_is_click() {return e_is_click;}
|
|
|
|
static FL_EXPORT void event_is_click(int i) {e_is_click = i;} // only 0 works!
|
|
|
|
static FL_EXPORT int event_button() {return e_keysym-FL_Button;}
|
|
|
|
static FL_EXPORT int event_state() {return e_state;}
|
|
|
|
static FL_EXPORT int event_state(int i) {return e_state&i;}
|
|
|
|
static FL_EXPORT int event_key() {return e_keysym;}
|
|
|
|
static FL_EXPORT int event_key(int);
|
|
|
|
static FL_EXPORT int get_key(int);
|
|
|
|
static FL_EXPORT const char* event_text() {return e_text;}
|
|
|
|
static FL_EXPORT int event_length() {return e_length;}
|
2000-02-21 13:45:59 +03:00
|
|
|
static FL_EXPORT int compose(int &del);
|
|
|
|
static FL_EXPORT void compose_reset() {compose_state = 0;}
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int event_inside(int,int,int,int);
|
|
|
|
static FL_EXPORT int event_inside(const Fl_Widget*);
|
|
|
|
static FL_EXPORT int test_shortcut(int);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// event destinations:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int handle(int, Fl_Window*);
|
|
|
|
static FL_EXPORT Fl_Widget* belowmouse() {return belowmouse_;}
|
|
|
|
static FL_EXPORT void belowmouse(Fl_Widget*);
|
|
|
|
static FL_EXPORT Fl_Widget* pushed() {return pushed_;}
|
|
|
|
static FL_EXPORT void pushed(Fl_Widget*);
|
|
|
|
static FL_EXPORT Fl_Widget* focus() {return focus_;}
|
|
|
|
static FL_EXPORT void focus(Fl_Widget*);
|
|
|
|
static FL_EXPORT void add_handler(int (*h)(int));
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// cut/paste:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT Fl_Widget* selection_owner() {return selection_owner_;}
|
|
|
|
static FL_EXPORT void selection_owner(Fl_Widget*);
|
|
|
|
static FL_EXPORT void selection(Fl_Widget &owner, const char* stuff, int len);
|
|
|
|
static FL_EXPORT void paste(Fl_Widget &receiver);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// screen size:
|
1999-02-24 01:12:38 +03:00
|
|
|
#if defined(WIN32)
|
1999-02-19 18:34:09 +03:00
|
|
|
static FL_EXPORT int x();
|
|
|
|
static FL_EXPORT int y();
|
|
|
|
#else
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int x() {return 0;}
|
|
|
|
static FL_EXPORT int y() {return 0;}
|
1999-02-24 01:12:38 +03:00
|
|
|
#endif /* WIN32 */
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT int w();
|
|
|
|
static FL_EXPORT int h();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// color map:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void set_color(Fl_Color, uchar, uchar, uchar);
|
|
|
|
static FL_EXPORT void set_color(Fl_Color, unsigned);
|
|
|
|
static FL_EXPORT unsigned get_color(Fl_Color);
|
|
|
|
static FL_EXPORT void get_color(Fl_Color, uchar&, uchar&, uchar&);
|
|
|
|
static FL_EXPORT void free_color(Fl_Color, int overlay = 0);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// fonts:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT const char* get_font(Fl_Font);
|
|
|
|
static FL_EXPORT const char* get_font_name(Fl_Font, int* attributes = 0);
|
|
|
|
static FL_EXPORT int get_font_sizes(Fl_Font, int*& sizep);
|
|
|
|
static FL_EXPORT void set_font(Fl_Font, const char*);
|
|
|
|
static FL_EXPORT void set_font(Fl_Font, Fl_Font);
|
|
|
|
static FL_EXPORT Fl_Font set_fonts(const char* = 0);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// labeltypes:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void set_labeltype(Fl_Labeltype,Fl_Label_Draw_F*,Fl_Label_Measure_F*);
|
|
|
|
static FL_EXPORT void set_labeltype(Fl_Labeltype, Fl_Labeltype from);
|
|
|
|
static FL_EXPORT void enable_symbols();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// boxtypes:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void set_boxtype(Fl_Boxtype, Fl_Box_Draw_F*,uchar,uchar,uchar,uchar);
|
|
|
|
static FL_EXPORT void set_boxtype(Fl_Boxtype, Fl_Boxtype from);
|
|
|
|
static FL_EXPORT int box_dx(Fl_Boxtype);
|
|
|
|
static FL_EXPORT int box_dy(Fl_Boxtype);
|
|
|
|
static FL_EXPORT int box_dw(Fl_Boxtype);
|
|
|
|
static FL_EXPORT int box_dh(Fl_Boxtype);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// back compatability:
|
1999-02-17 01:00:04 +03:00
|
|
|
static FL_EXPORT void set_abort(void (*f)(const char*,...)) {fatal = f;}
|
|
|
|
static FL_EXPORT void (*atclose)(Fl_Window*,void*);
|
|
|
|
static FL_EXPORT void default_atclose(Fl_Window*,void*);
|
|
|
|
static FL_EXPORT void set_atclose(void (*f)(Fl_Window*,void*)) {atclose = f;}
|
|
|
|
static FL_EXPORT int event_shift() {return e_state&FL_SHIFT;}
|
|
|
|
static FL_EXPORT int event_ctrl() {return e_state&FL_CTRL;}
|
|
|
|
static FL_EXPORT int event_alt() {return e_state&FL_ALT;}
|
|
|
|
static FL_EXPORT int event_buttons() {return e_state&0x7f000000;}
|
|
|
|
static FL_EXPORT int event_button1() {return e_state&FL_BUTTON1;}
|
|
|
|
static FL_EXPORT int event_button2() {return e_state&FL_BUTTON2;}
|
|
|
|
static FL_EXPORT int event_button3() {return e_state&FL_BUTTON3;}
|
|
|
|
static FL_EXPORT void set_idle(void (*cb)()) {idle = cb;}
|
|
|
|
static FL_EXPORT void grab(Fl_Window&w) {grab(&w);}
|
|
|
|
static FL_EXPORT void release() {grab(0);}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-10-20 01:39:29 +04:00
|
|
|
|
|
|
|
//
|
2000-06-20 09:47:38 +04:00
|
|
|
// End of "$Id: Fl.H,v 1.8.2.8 2000/06/20 05:47:32 bill Exp $".
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|