1998-10-20 01:39:29 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Main header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2009-01-01 19:11:32 +03:00
|
|
|
// Copyright 1998-2009 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
|
|
|
//
|
2005-03-31 20:01:24 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
/* \file
|
|
|
|
Fl static class.
|
2008-09-16 11:26:22 +04:00
|
|
|
*/
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_H
|
2001-11-28 23:43:44 +03:00
|
|
|
# define Fl_H
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-25 22:26:33 +04:00
|
|
|
#ifdef HAVE_CAIRO
|
|
|
|
# include <FL/Fl_Cairo.H>
|
|
|
|
#endif
|
|
|
|
|
2008-09-19 21:40:20 +04:00
|
|
|
# include "fl_utf8.h"
|
2001-11-28 23:43:44 +03:00
|
|
|
# include "Enumerations.H"
|
|
|
|
# ifndef Fl_Object
|
2008-10-04 19:54:15 +04:00
|
|
|
# define Fl_Object Fl_Widget /**< for back compatibility - use Fl_Widget! */
|
2001-11-28 23:43:44 +03:00
|
|
|
# endif
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-07-17 10:09:26 +04:00
|
|
|
# ifdef check
|
|
|
|
# undef check
|
|
|
|
# endif
|
|
|
|
|
2008-09-25 22:26:33 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
class Fl_Widget;
|
|
|
|
class Fl_Window;
|
2001-12-20 17:41:44 +03:00
|
|
|
class Fl_Image;
|
1998-10-06 22:21:25 +04:00
|
|
|
struct Fl_Label;
|
2008-10-04 19:54:15 +04:00
|
|
|
|
|
|
|
/** signature of some label drawing functions passed as parameters */
|
1998-10-06 22:21:25 +04:00
|
|
|
typedef void (Fl_Label_Draw_F)(const Fl_Label*, int,int,int,int, Fl_Align);
|
2008-10-04 19:54:15 +04:00
|
|
|
|
|
|
|
/** signature of some label measurement functions passed as parameters */
|
1998-10-06 22:21:25 +04:00
|
|
|
typedef void (Fl_Label_Measure_F)(const Fl_Label*, int&, int&);
|
2008-10-04 19:54:15 +04:00
|
|
|
|
|
|
|
/** signature of some box drawing functions passed as parameters */
|
1998-10-06 22:21:25 +04:00
|
|
|
typedef void (Fl_Box_Draw_F)(int,int,int,int, Fl_Color);
|
|
|
|
|
2008-10-04 19:54:15 +04:00
|
|
|
/** signature of some timeout callback functions passed as parameters */
|
2000-03-08 19:02:25 +03:00
|
|
|
typedef void (*Fl_Timeout_Handler)(void*);
|
2008-10-04 19:54:15 +04:00
|
|
|
|
|
|
|
/** signature of some wakeup callback functions passed as parameters */
|
2007-03-06 20:15:03 +03:00
|
|
|
typedef void (*Fl_Awake_Handler)(void*);
|
2000-03-08 19:02:25 +03:00
|
|
|
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
The Fl is the FLTK global (static) containing
|
|
|
|
state information and global methods for the current application.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
class FL_EXPORT Fl {
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl() {}; // no constructor!
|
|
|
|
|
|
|
|
public: // should be private!
|
2008-09-18 17:20:25 +04:00
|
|
|
#ifndef FL_DOXYGEN
|
2002-07-14 23:08:25 +04:00
|
|
|
static int e_number;
|
2002-08-14 20:19:48 +04:00
|
|
|
static int e_x;
|
|
|
|
static int e_y;
|
|
|
|
static int e_x_root;
|
|
|
|
static int e_y_root;
|
|
|
|
static int e_dx;
|
|
|
|
static int e_dy;
|
2002-07-14 23:08:25 +04:00
|
|
|
static int e_state;
|
|
|
|
static int e_clicks;
|
|
|
|
static int e_is_click;
|
|
|
|
static int e_keysym;
|
|
|
|
static char* e_text;
|
|
|
|
static int e_length;
|
|
|
|
static Fl_Widget* belowmouse_;
|
|
|
|
static Fl_Widget* pushed_;
|
|
|
|
static Fl_Widget* focus_;
|
|
|
|
static int damage_;
|
|
|
|
static Fl_Widget* selection_owner_;
|
|
|
|
static Fl_Window* modal_;
|
|
|
|
static Fl_Window* grab_;
|
|
|
|
static int compose_state;
|
|
|
|
static int visible_focus_;
|
|
|
|
static int dnd_text_ops_;
|
2008-09-18 17:20:25 +04:00
|
|
|
#endif
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
If true then flush() will do something.
|
|
|
|
*/
|
2002-08-09 05:09:49 +04:00
|
|
|
static void damage(int d) {damage_ = d;}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-04 19:54:15 +04:00
|
|
|
/**
|
|
|
|
The currently executing idle callback function: DO NOT USE THIS DIRECTLY!
|
|
|
|
|
|
|
|
This is now used as part of a higher level system allowing multiple
|
|
|
|
idle callback functions to be called.
|
|
|
|
\see add_idle(), remove_idle()
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void (*idle)();
|
2008-09-18 23:09:34 +04:00
|
|
|
|
|
|
|
#ifndef FL_DOXYGEN
|
2007-03-06 20:15:03 +03:00
|
|
|
static Fl_Awake_Handler *awake_ring_;
|
|
|
|
static void **awake_data_;
|
|
|
|
static int awake_ring_size_;
|
|
|
|
static int awake_ring_head_;
|
|
|
|
static int awake_ring_tail_;
|
2001-12-20 17:41:44 +03:00
|
|
|
static const char* scheme_;
|
|
|
|
static Fl_Image* scheme_bg_;
|
|
|
|
|
2006-06-09 11:48:08 +04:00
|
|
|
static int e_original_keysym; // late addition
|
2009-04-02 10:44:34 +04:00
|
|
|
static int scrollbar_size_;
|
2008-09-18 23:09:34 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static int add_awake_handler_(Fl_Awake_Handler, void*);
|
|
|
|
static int get_awake_handler_(Fl_Awake_Handler&, void*&);
|
2006-06-09 11:48:08 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
public:
|
|
|
|
|
2001-11-28 21:00:17 +03:00
|
|
|
// API version number
|
2002-07-14 23:08:25 +04:00
|
|
|
static double version();
|
2001-11-28 21:00:17 +03:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// argument parsers:
|
2002-07-14 23:08:25 +04:00
|
|
|
static int arg(int, char**, int&);
|
|
|
|
static int args(int, char**, int&, int (*)(int,char**,int&) = 0);
|
|
|
|
static void args(int, char**);
|
2008-10-04 19:54:15 +04:00
|
|
|
/**
|
|
|
|
Usage string displayed if Fl::args() detects an invalid argument.
|
|
|
|
This may be changed to point to customized text at run-time.
|
|
|
|
*/
|
2008-09-14 02:33:03 +04:00
|
|
|
static const char* const help;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// things called by initialization:
|
2002-07-14 23:08:25 +04:00
|
|
|
static void display(const char*);
|
|
|
|
static int visual(int);
|
2008-09-15 23:21:20 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
This does the same thing as Fl::visual(int) but also requires OpenGL
|
|
|
|
drawing to work. This <I>must</I> be done if you want to draw in
|
|
|
|
normal windows with OpenGL with gl_start() and gl_end().
|
|
|
|
It may be useful to call this so your X windows use the same visual
|
|
|
|
as an Fl_Gl_Window, which on some servers will reduce colormap flashing.
|
|
|
|
|
|
|
|
See Fl_Gl_Window for a list of additional values for the argument.
|
2008-09-15 23:21:20 +04:00
|
|
|
*/
|
|
|
|
static int gl_visual(int, int *alist=0); // platform dependent
|
2002-07-14 23:08:25 +04:00
|
|
|
static void own_colormap();
|
|
|
|
static void get_system_colors();
|
|
|
|
static void foreground(uchar, uchar, uchar);
|
|
|
|
static void background(uchar, uchar, uchar);
|
|
|
|
static void background2(uchar, uchar, uchar);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-12-20 17:41:44 +03:00
|
|
|
// schemes:
|
|
|
|
static int scheme(const char*);
|
2008-09-14 02:33:03 +04:00
|
|
|
/** See void scheme(const char *name) */
|
2001-12-20 17:41:44 +03:00
|
|
|
static const char* scheme() {return scheme_;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Called by scheme according to scheme name.
|
|
|
|
Loads or reloads the current scheme selection.
|
|
|
|
See void scheme(const char *name)
|
|
|
|
*/
|
|
|
|
static int reload_scheme(); // platform dependent
|
2006-11-17 02:17:13 +03:00
|
|
|
static int scrollbar_size();
|
|
|
|
static void scrollbar_size(int W);
|
2001-12-20 17:41:44 +03:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// execution:
|
2002-07-14 23:08:25 +04:00
|
|
|
static int wait();
|
|
|
|
static double wait(double time);
|
|
|
|
static int check();
|
|
|
|
static int ready();
|
|
|
|
static int run();
|
|
|
|
static Fl_Widget* readqueue();
|
2008-09-15 23:21:20 +04:00
|
|
|
/**
|
|
|
|
Adds a one-shot timeout callback. The function will be called by
|
|
|
|
Fl::wait() at <i>t</i> seconds after this function is called.
|
|
|
|
The optional void* argument is passed to the callback.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
You can have multiple timeout callbacks. To remove a timeout
|
2008-09-15 23:21:20 +04:00
|
|
|
callback use Fl::remove_timeout().
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
If you need more accurate, repeated timeouts, use Fl::repeat_timeout() to
|
|
|
|
reschedule the subsequent timeouts.
|
2008-09-15 23:21:20 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
The following code will print "TICK" each second on
|
|
|
|
stdout with a fair degree of accuracy:
|
2008-09-15 23:21:20 +04:00
|
|
|
|
|
|
|
\code
|
|
|
|
void callback(void*) {
|
|
|
|
puts("TICK");
|
|
|
|
Fl::repeat_timeout(1.0, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
Fl::add_timeout(1.0, callback);
|
|
|
|
return Fl::run();
|
|
|
|
}
|
|
|
|
\endcode
|
|
|
|
*/
|
|
|
|
static void add_timeout(double t, Fl_Timeout_Handler,void* = 0); // platform dependent
|
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Repeats a timeout callback from the expiration of the
|
2008-09-15 23:21:20 +04:00
|
|
|
previous timeout, allowing for more accurate timing. You may only call
|
|
|
|
this method inside a timeout callback.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
The following code will print "TICK" each second on
|
|
|
|
stdout with a fair degree of accuracy:
|
2008-09-15 23:21:20 +04:00
|
|
|
|
|
|
|
\code
|
|
|
|
void callback(void*) {
|
|
|
|
puts("TICK");
|
|
|
|
Fl::repeat_timeout(1.0, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
Fl::add_timeout(1.0, callback);
|
|
|
|
return Fl::run();
|
|
|
|
}
|
|
|
|
\endcode
|
|
|
|
*/
|
|
|
|
static void repeat_timeout(double t, Fl_Timeout_Handler,void* = 0); // platform dependent
|
2002-07-14 23:08:25 +04:00
|
|
|
static int has_timeout(Fl_Timeout_Handler, void* = 0);
|
|
|
|
static void remove_timeout(Fl_Timeout_Handler, void* = 0);
|
|
|
|
static void add_check(Fl_Timeout_Handler, void* = 0);
|
|
|
|
static int has_check(Fl_Timeout_Handler, void* = 0);
|
|
|
|
static void remove_check(Fl_Timeout_Handler, void* = 0);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Adds file descriptor fd to listen to.
|
|
|
|
|
|
|
|
When the fd becomes ready for reading Fl::wait() will call the
|
|
|
|
callback and then return. The callback is passed the fd and the
|
|
|
|
arbitrary void* argument.
|
2008-09-14 02:33:03 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
The second version takes a when bitfield, with the bits
|
2008-09-14 02:33:03 +04:00
|
|
|
FL_READ, FL_WRITE, and FL_EXCEPT defined,
|
|
|
|
to indicate when the callback should be done.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
There can only be one callback of each type for a file descriptor.
|
2008-09-14 02:33:03 +04:00
|
|
|
Fl::remove_fd() gets rid of <I>all</I> the callbacks for a given
|
|
|
|
file descriptor.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
Under UNIX <I>any</I> file descriptor can be monitored (files,
|
|
|
|
devices, pipes, sockets, etc.). Due to limitations in Microsoft Windows,
|
2008-09-14 02:33:03 +04:00
|
|
|
WIN32 applications can only monitor sockets.
|
|
|
|
*/
|
|
|
|
static void add_fd(int fd, int when, void (*cb)(int,void*),void* =0); // platform dependent
|
|
|
|
/** See void add_fd(int fd, int when, void (*cb)(int,void*),void* =0) */
|
|
|
|
static void add_fd(int fd, void (*cb)(int, void*), void* = 0); // platform dependent
|
|
|
|
/** Removes a file descriptor handler. */
|
|
|
|
static void remove_fd(int, int when); // platform dependent
|
|
|
|
/** Removes a file descriptor handler. */
|
|
|
|
static void remove_fd(int); // platform dependent
|
|
|
|
|
2008-10-04 19:54:15 +04:00
|
|
|
static void add_idle(void (*cb)(void*), void* data = 0);
|
|
|
|
static int has_idle(void (*cb)(void*), void* data = 0);
|
|
|
|
static void remove_idle(void (*cb)(void*), void* data = 0);
|
2008-09-14 02:33:03 +04:00
|
|
|
/** If true then flush() will do something. */
|
2002-07-14 23:08:25 +04:00
|
|
|
static int damage() {return damage_;}
|
|
|
|
static void redraw();
|
|
|
|
static void flush();
|
2008-10-03 15:20:50 +04:00
|
|
|
/** \addtogroup group_comdlg
|
2008-09-18 17:20:25 +04:00
|
|
|
@{ */
|
2008-10-03 15:20:50 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
FLTK calls Fl::warning() to output a warning message.
|
|
|
|
|
|
|
|
The default version on Windows returns \e without printing a warning
|
|
|
|
message, because Windows programs normally don't have stderr (a console
|
|
|
|
window) enabled.
|
|
|
|
|
|
|
|
The default version on all other platforms prints the warning message to stderr.
|
|
|
|
|
|
|
|
You can override the behavior by setting the function pointer to your
|
2008-09-14 02:33:03 +04:00
|
|
|
own routine.
|
2008-12-10 23:58:10 +03:00
|
|
|
|
|
|
|
Fl::warning() means that there was a recoverable problem, the display may
|
|
|
|
be messed up, but the user can probably keep working - all X protocol
|
|
|
|
errors call this, for example. The default implementation returns after
|
|
|
|
displaying the message.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void (*warning)(const char*, ...);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
FLTK calls Fl::error() to output a normal error message.
|
|
|
|
|
|
|
|
The default version on Windows displays the error message in a MessageBox window.
|
|
|
|
|
|
|
|
The default version on all other platforms prints the error message to stderr.
|
|
|
|
|
|
|
|
You can override the behavior by setting the function pointer to your
|
2008-09-14 02:33:03 +04:00
|
|
|
own routine.
|
2008-12-10 23:58:10 +03:00
|
|
|
|
|
|
|
Fl::error() means there is a recoverable error such as the inability to read
|
|
|
|
an image file. The default implementation returns after displaying the message.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void (*error)(const char*, ...);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
FLTK calls Fl::fatal() to output a fatal error message.
|
|
|
|
|
|
|
|
The default version on Windows displays the error message in a MessageBox window.
|
|
|
|
|
|
|
|
The default version on all other platforms prints the error message to stderr.
|
|
|
|
|
|
|
|
You can override the behavior by setting the function pointer to your
|
2008-09-14 02:33:03 +04:00
|
|
|
own routine.
|
2008-12-10 23:58:10 +03:00
|
|
|
|
|
|
|
Fl::fatal() must not return, as FLTK is in an unusable state, however your
|
|
|
|
version may be able to use longjmp or an exception to continue, as long as
|
|
|
|
it does not call FLTK again. The default implementation exits with status 1
|
|
|
|
after displaying the message.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void (*fatal)(const char*, ...);
|
2008-10-03 15:20:50 +04:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/** \defgroup fl_windows Windows handling functions
|
|
|
|
Windows and standard dialogs handling
|
|
|
|
@{ */
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Window* first_window();
|
|
|
|
static void first_window(Fl_Window*);
|
|
|
|
static Fl_Window* next_window(const Fl_Window*);
|
2008-10-03 15:20:50 +04:00
|
|
|
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the top-most modal() window currently shown.
|
2008-12-10 23:58:10 +03:00
|
|
|
|
|
|
|
This is the most recently shown() window with modal() true, or NULL
|
|
|
|
if there are no modal() windows shown().
|
2008-09-14 02:33:03 +04:00
|
|
|
The modal() window has its handle() method called
|
|
|
|
for all events, and no other windows will have handle()
|
|
|
|
called (grab() overrides this).
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Window* modal() {return modal_;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
This is used when pop-up menu systems are active.
|
|
|
|
|
|
|
|
Send all events to the passed window no matter where the pointer or
|
|
|
|
focus is (including in other programs). The window <I>does not have
|
|
|
|
to be shown()</I> , this lets the handle() method of a
|
2008-09-17 19:44:43 +04:00
|
|
|
"dummy" window override all event handling and allows you to
|
2008-09-14 02:33:03 +04:00
|
|
|
map and unmap a complex set of windows (under both X and WIN32
|
|
|
|
<I>some</I> window must be mapped because the system interface needs a
|
|
|
|
window id).
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
If grab() is on it will also affect show() of windows by doing
|
|
|
|
system-specific operations (on X it turns on override-redirect).
|
|
|
|
These are designed to make menus popup reliably
|
2008-09-14 02:33:03 +04:00
|
|
|
and faster on the system.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
To turn off grabbing do Fl::grab(0).
|
2008-09-14 02:33:03 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
<I>Be careful that your program does not enter an infinite loop
|
2008-09-14 02:33:03 +04:00
|
|
|
while grab() is on. On X this will lock up your screen!</I>
|
|
|
|
To avoid this potential lockup, all newer operating systems seem to
|
|
|
|
limit mouse pointer grabbing to the time during which a mouse button
|
|
|
|
is held down. Some OS's may not support grabbing at all.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Window* grab() {return grab_;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/** Selects the window to grab. See Fl_Window* Fl::grab() */
|
|
|
|
static void grab(Fl_Window*); // platform dependent
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-03 12:05:48 +04:00
|
|
|
/** \defgroup fl_events Events handling functions
|
2008-09-18 17:20:25 +04:00
|
|
|
Fl class events handling API
|
|
|
|
@{
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
// event information:
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the last event that was processed. This can be used
|
|
|
|
to determine if a callback is being done in response to a
|
|
|
|
keypress, mouse click, etc.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event() {return e_number;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the mouse position of the event relative to the Fl_Window
|
|
|
|
it was passed to.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_x() {return e_x;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the mouse position of the event relative to the Fl_Window
|
|
|
|
it was passed to.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_y() {return e_y;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the mouse position on the screen of the event. To find the
|
|
|
|
absolute position of an Fl_Window on the screen, use the
|
|
|
|
difference between event_x_root(),event_y_root() and
|
|
|
|
event_x(),event_y().
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_x_root() {return e_x_root;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the mouse position on the screen of the event. To find the
|
|
|
|
absolute position of an Fl_Window on the screen, use the
|
|
|
|
difference between event_x_root(),event_y_root() and
|
|
|
|
event_x(),event_y().
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_y_root() {return e_y_root;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns the current horizontal mouse scrolling associated with the
|
|
|
|
FL_MOUSEWHEEL event. Right is positive.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_dx() {return e_dx;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Returns the current vertical mouse scrolling associated with the
|
2008-09-14 02:33:03 +04:00
|
|
|
FL_MOUSEWHEEL event. Down is positive.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_dy() {return e_dy;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Return where the mouse is on the screen by doing a round-trip query to
|
|
|
|
the server. You should use Fl::event_x_root() and
|
|
|
|
Fl::event_y_root() if possible, but this is necessary if you are
|
|
|
|
not sure if a mouse event has been processed recently (such as to
|
|
|
|
position your first window). If the display is not open, this will
|
|
|
|
open it.
|
|
|
|
*/
|
|
|
|
static void get_mouse(int &,int &); // platform dependent
|
|
|
|
/**
|
2008-10-04 18:15:16 +04:00
|
|
|
Returns non zero if we had a double click event.
|
|
|
|
\retval Non-zero if the most recent FL_PUSH or FL_KEYBOARD was a "double click".
|
|
|
|
\retval N-1 for N clicks.
|
|
|
|
A double click is counted if the same button is pressed
|
2008-09-14 02:33:03 +04:00
|
|
|
again while event_is_click() is true.
|
|
|
|
|
2008-10-04 18:15:16 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_clicks() {return e_clicks;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-10-04 18:15:16 +04:00
|
|
|
Manually sets the number returned by Fl::event_clicks().
|
|
|
|
This can be used to set it to zero so that
|
|
|
|
later code does not think an item was double-clicked.
|
2008-12-10 23:58:10 +03:00
|
|
|
\param[in] i corresponds to no double-click if 0, i+1 mouse clicks otherwise
|
2008-10-04 18:15:16 +04:00
|
|
|
\see int event_clicks()
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void event_clicks(int i) {e_clicks = i;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
The first form returns non-zero if the mouse has not moved far enough
|
|
|
|
and not enough time has passed since the last FL_PUSH or
|
2008-09-17 19:44:43 +04:00
|
|
|
FL_KEYBOARD event for it to be considered a "drag" rather than a
|
|
|
|
"click". You can test this on FL_DRAG, FL_RELEASE,
|
2008-09-14 02:33:03 +04:00
|
|
|
and FL_MOVE events. The second form clears the value returned
|
|
|
|
by Fl::event_is_click(). Useful to prevent the <I>next</I>
|
|
|
|
click from being counted as a double-click or to make a popup menu
|
|
|
|
pick an item with a single click. Don't pass non-zero to this.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_is_click() {return e_is_click;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Only i=0 works! See int event_is_click().
|
|
|
|
*/
|
|
|
|
static void event_is_click(int i) {e_is_click = i;}
|
|
|
|
/**
|
2008-10-04 18:15:16 +04:00
|
|
|
Gets which particular mouse button caused the current event.
|
|
|
|
This returns garbage if the most recent event was not a FL_PUSH or FL_RELEASE event.
|
|
|
|
\retval FL_LEFT_MOUSE \retval FL_MIDDLE_MOUSE \retval FL_RIGHT_MOUSE.
|
|
|
|
\see Fl::event_buttons()
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_button() {return e_keysym-FL_Button;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
This is a bitfield of what shift states were on and what mouse buttons
|
2008-12-10 23:58:10 +03:00
|
|
|
were held down during the most recent event. The second version
|
|
|
|
returns non-zero if any of the passed bits are turned on.
|
|
|
|
The legal bits are:
|
2008-09-14 02:33:03 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
\li FL_SHIFT
|
|
|
|
\li FL_CAPS_LOCK
|
|
|
|
\li FL_CTRL
|
|
|
|
\li FL_ALT
|
|
|
|
\li FL_NUM_LOCK
|
|
|
|
\li FL_META
|
|
|
|
\li FL_SCROLL_LOCK
|
|
|
|
\li FL_BUTTON1
|
|
|
|
\li FL_BUTTON2
|
|
|
|
\li FL_BUTTON3
|
2008-09-14 02:33:03 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
X servers do not agree on shift states, and FL_NUM_LOCK, FL_META, and
|
|
|
|
FL_SCROLL_LOCK may not work. The values were selected to match the
|
|
|
|
XFree86 server on Linux. In addition there is a bug in the way X works
|
|
|
|
so that the shift state is not correctly reported until the first event
|
|
|
|
<I>after</I> the shift key is pressed or released.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_state() {return e_state;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/** See int event_state() */
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_state(int i) {return e_state&i;}
|
2009-09-20 05:25:44 +04:00
|
|
|
/**
|
|
|
|
Gets which key on the keyboard was last pushed.
|
|
|
|
|
|
|
|
The returned integer 'key code' is not necessarily a text
|
|
|
|
equivalent for the keystroke. For instance: if someone presses '5' on the
|
|
|
|
numeric keypad with numlock on, Fl::event_key() may return the 'key code'
|
|
|
|
for this key, and NOT the character '5'. To always get the '5', use Fl::event_text() instead.
|
|
|
|
|
|
|
|
\returns an integer 'key code', or 0 if the last event was not a key press or release.
|
|
|
|
\see int event_key(int), event_text(), compose(int&).
|
|
|
|
*/
|
2008-10-04 18:15:16 +04:00
|
|
|
static int event_key() {return e_keysym;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Returns the keycode of the last key event, regardless of the NumLock state.
|
2009-09-20 05:08:03 +04:00
|
|
|
|
2008-10-04 18:15:16 +04:00
|
|
|
If NumLock is deactivated, FLTK translates events from the
|
|
|
|
numeric keypad into the corresponding arrow key events.
|
|
|
|
event_key() returns the translated key code, whereas
|
2009-09-20 05:08:03 +04:00
|
|
|
event_original_key() returns the keycode before NumLock translation.
|
2008-10-04 18:15:16 +04:00
|
|
|
*/
|
|
|
|
static int event_original_key(){return e_original_keysym;}
|
|
|
|
/**
|
2009-03-24 04:40:44 +03:00
|
|
|
Returns true if the given \p key was held
|
2008-09-14 02:33:03 +04:00
|
|
|
down (or pressed) <I>during</I> the last event. This is constant until
|
|
|
|
the next event is read from the server.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
Fl::get_key(int) returns true if the given key is held down <I>now</I>.
|
|
|
|
Under X this requires a round-trip to the server and is <I>much</I>
|
|
|
|
slower than Fl::event_key(int).
|
2008-09-14 02:33:03 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
Keys are identified by the <I>unshifted</I> values. FLTK defines a
|
2008-09-14 02:33:03 +04:00
|
|
|
set of symbols that should work on most modern machines for every key
|
|
|
|
on the keyboard:
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
\li All keys on the main keyboard producing a printable ASCII
|
|
|
|
character use the value of that ASCII character (as though shift,
|
|
|
|
ctrl, and caps lock were not on). The space bar is 32.
|
|
|
|
\li All keys on the numeric keypad producing a printable ASCII
|
|
|
|
character use the value of that ASCII character plus FL_KP.
|
|
|
|
The highest possible value is FL_KP_Last so you can
|
|
|
|
range-check to see if something is on the keypad.
|
|
|
|
\li All numbered function keys use the number on the function key plus
|
|
|
|
FL_F. The highest possible number is FL_F_Last, so you
|
|
|
|
can range-check a value.
|
|
|
|
\li Buttons on the mouse are considered keys, and use the button
|
|
|
|
number (where the left button is 1) plus FL_Button.
|
|
|
|
\li All other keys on the keypad have a symbol: FL_Escape,
|
|
|
|
FL_BackSpace, FL_Tab, FL_Enter, FL_Print, FL_Scroll_Lock, FL_Pause,
|
|
|
|
FL_Insert, FL_Home, FL_Page_Up, FL_Delete, FL_End, FL_Page_Down,
|
|
|
|
FL_Left, FL_Up, FL_Right, FL_Down, FL_Shift_L, FL_Shift_R,
|
|
|
|
FL_Control_L, FL_Control_R, FL_Caps_Lock, FL_Alt_L, FL_Alt_R,
|
|
|
|
FL_Meta_L, FL_Meta_R, FL_Menu, FL_Num_Lock, FL_KP_Enter. Be
|
|
|
|
careful not to confuse these with the very similar, but all-caps,
|
|
|
|
symbols used by Fl::event_state().
|
|
|
|
|
|
|
|
On X Fl::get_key(FL_Button+n) does not work.
|
2008-09-14 02:33:03 +04:00
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
On WIN32 Fl::get_key(FL_KP_Enter) and Fl::event_key(FL_KP_Enter) do not work.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2008-10-04 18:15:16 +04:00
|
|
|
static int event_key(int key);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2009-03-24 04:40:44 +03:00
|
|
|
Returns true if the given \p key is held down <I>now</I>.
|
2008-12-10 23:58:10 +03:00
|
|
|
Under X this requires a round-trip to the server and is <I>much</I>
|
|
|
|
slower than Fl::event_key(int). \see event_key(int)
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2008-10-04 18:15:16 +04:00
|
|
|
static int get_key(int key); // platform dependent
|
2009-09-20 05:08:03 +04:00
|
|
|
/**
|
|
|
|
Returns the text associated with the current event, including FL_PASTE or FL_DND_RELEASE events.
|
|
|
|
This can be used in response to FL_KEYUP, FL_KEYDOWN, FL_PASTE, FL_DND_RELEASE.
|
|
|
|
|
|
|
|
When responding to FL_KEYUP/FL_KEYDOWN, use this function instead of Fl::event_key()
|
|
|
|
to get the text equivalent of keystrokes suitable for inserting into strings
|
|
|
|
and text widgets.
|
|
|
|
|
|
|
|
The returned string is guaranteed to be be NULL terminated.
|
|
|
|
However, see Fl::event_length() for the actual length of the string,
|
|
|
|
in case the string itself contains NULLs that are part of the text data.
|
|
|
|
|
|
|
|
\returns A NULL terminated text string equivalent of the last keystroke.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static const char* event_text() {return e_text;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Returns the length of the text in Fl::event_text(). There
|
|
|
|
will always be a nul at this position in the text. However there may
|
2008-09-14 02:33:03 +04:00
|
|
|
be a nul before that if the keystroke translates to a nul character or
|
|
|
|
you paste a nul character.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_length() {return e_length;}
|
2008-09-18 17:20:25 +04:00
|
|
|
|
2002-07-14 23:08:25 +04:00
|
|
|
static int compose(int &del);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
If the user moves the cursor, be sure to call Fl::compose_reset().
|
2008-12-10 23:58:10 +03:00
|
|
|
The next call to Fl::compose() will start out in an initial state. In
|
2008-09-14 02:33:03 +04:00
|
|
|
particular it will not set "del" to non-zero. This call is very fast
|
|
|
|
so it is ok to call it many times and in many places.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void compose_reset() {compose_state = 0;}
|
|
|
|
static int event_inside(int,int,int,int);
|
|
|
|
static int event_inside(const Fl_Widget*);
|
2009-09-18 02:12:24 +04:00
|
|
|
static int test_shortcut(Fl_Shortcut);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// event destinations:
|
2002-07-14 23:08:25 +04:00
|
|
|
static int handle(int, Fl_Window*);
|
2008-10-04 18:15:16 +04:00
|
|
|
/** Gets the widget that is below the mouse.
|
|
|
|
\see belowmouse(Fl_Widget*) */
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Widget* belowmouse() {return belowmouse_;}
|
|
|
|
static void belowmouse(Fl_Widget*);
|
2008-12-10 23:58:10 +03:00
|
|
|
/** Gets the widget that is being pushed.
|
|
|
|
\see void pushed(Fl_Widget*) */
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Widget* pushed() {return pushed_;}
|
|
|
|
static void pushed(Fl_Widget*);
|
2008-09-29 02:25:23 +04:00
|
|
|
/** Gets the current Fl::focus() widget. \sa Fl::focus(Fl_Widget*) */
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Widget* focus() {return focus_;}
|
|
|
|
static void focus(Fl_Widget*);
|
|
|
|
static void add_handler(int (*h)(int));
|
|
|
|
static void remove_handler(int (*h)(int));
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-03 12:05:48 +04:00
|
|
|
/** \defgroup fl_clipboard Selection & Clipboard functions
|
2008-09-18 17:20:25 +04:00
|
|
|
fl global copy/cut/paste functions
|
|
|
|
@{ */
|
1998-10-06 22:21:25 +04:00
|
|
|
// cut/paste:
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2009-03-24 04:40:44 +03:00
|
|
|
Copies the data pointed to by \p stuff to the selection (0) or
|
2008-12-10 23:58:10 +03:00
|
|
|
primary (1) clipboard. The selection clipboard is used for
|
|
|
|
middle-mouse pastes and for drag-and-drop selections. The primary
|
|
|
|
clipboard is used for traditional copy/cut/paste operations.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
|
|
|
static void copy(const char* stuff, int len, int clipboard = 0); // platform dependent
|
|
|
|
/**
|
|
|
|
Pastes the data from the selection (0) or primary (1) clipboard into receiver.
|
|
|
|
The selection clipboard is used for middle-mouse pastes and for
|
|
|
|
drag-and-drop selections. The primary clipboard is used for
|
2008-12-10 23:58:10 +03:00
|
|
|
traditional copy/cut/paste operations.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
|
|
|
static void paste(Fl_Widget &receiver, int clipboard /*=0*/); // platform dependent
|
|
|
|
/**
|
|
|
|
Initiate a Drag And Drop operation. The clipboard should be
|
|
|
|
filled with relevant data before calling this method. FLTK will
|
|
|
|
then initiate the system wide drag and drop handling. Dropped data
|
|
|
|
will be marked as <i>text</i>.
|
|
|
|
*/
|
|
|
|
static int dnd(); // platform dependent
|
2008-09-18 17:20:25 +04:00
|
|
|
|
2008-09-15 21:46:42 +04:00
|
|
|
// These are for back-compatibility only:
|
2008-10-04 18:15:16 +04:00
|
|
|
/** back-compatibility only: Gets the widget owning the current selection
|
|
|
|
\see Fl_Widget* selection_owner(Fl_Widget*) */
|
2002-07-14 23:08:25 +04:00
|
|
|
static Fl_Widget* selection_owner() {return selection_owner_;}
|
|
|
|
static void selection_owner(Fl_Widget*);
|
|
|
|
static void selection(Fl_Widget &owner, const char*, int len);
|
|
|
|
static void paste(Fl_Widget &receiver);
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
2008-10-03 12:05:48 +04:00
|
|
|
/** \defgroup fl_screen Screen functions
|
2008-09-18 17:20:25 +04:00
|
|
|
fl global screen functions
|
|
|
|
@{ */
|
1998-10-06 22:21:25 +04:00
|
|
|
// screen size:
|
2008-09-14 02:33:03 +04:00
|
|
|
/** Returns the origin of the current screen, where 0 indicates the left side of the screen. */
|
|
|
|
static int x(); // platform dependent
|
2008-12-10 23:58:10 +03:00
|
|
|
/** Returns the origin of the current screen, where 0 indicates the top edge of the screen. */
|
2008-09-14 02:33:03 +04:00
|
|
|
static int y(); // platform dependent
|
|
|
|
/** Returns the width of the screen in pixels. */
|
|
|
|
static int w(); // platform dependent
|
|
|
|
/** Returns the height of the screen in pixels. */
|
|
|
|
static int h(); // platform dependent
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2005-03-31 20:01:24 +04:00
|
|
|
// multi-head support:
|
|
|
|
static int screen_count();
|
2008-10-04 19:27:12 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Gets the bounding box of a screen that contains the mouse pointer.
|
2008-10-04 19:27:12 +04:00
|
|
|
\param[out] X,Y,W,H the corresponding screen bounding box
|
|
|
|
\see void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my)
|
|
|
|
*/
|
2007-05-20 20:18:31 +04:00
|
|
|
static void screen_xywh(int &X, int &Y, int &W, int &H) {
|
|
|
|
screen_xywh(X, Y, W, H, e_x_root, e_y_root);
|
2005-03-31 20:01:24 +04:00
|
|
|
}
|
2007-05-20 20:18:31 +04:00
|
|
|
static void screen_xywh(int &X, int &Y, int &W, int &H, int mx, int my);
|
|
|
|
static void screen_xywh(int &X, int &Y, int &W, int &H, int n);
|
2005-03-31 20:01:24 +04:00
|
|
|
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
|
|
|
|
2008-10-03 12:05:48 +04:00
|
|
|
/** \defgroup fl_attributes Color & Font functions
|
2008-09-18 17:20:25 +04:00
|
|
|
fl global color, font functions
|
|
|
|
@{ */
|
2008-12-28 14:21:03 +03:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// color map:
|
2002-07-14 23:08:25 +04:00
|
|
|
static void set_color(Fl_Color, uchar, uchar, uchar);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Sets an entry in the fl_color index table. You can set it to any
|
|
|
|
8-bit RGB color. The color is not allocated until fl_color(i) is used.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2008-12-10 23:58:10 +03:00
|
|
|
static void set_color(Fl_Color, unsigned); // platform dependent
|
2009-09-27 15:09:03 +04:00
|
|
|
static Fl_Color get_color(Fl_Color);
|
2002-07-14 23:08:25 +04:00
|
|
|
static void get_color(Fl_Color, uchar&, uchar&, uchar&);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Frees the specified color from the colormap, if applicable.
|
|
|
|
If overlay is non-zero then the color is freed from the
|
|
|
|
overlay colormap.
|
|
|
|
*/
|
|
|
|
static void free_color(Fl_Color, int overlay = 0); // platform dependent
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// fonts:
|
2002-07-14 23:08:25 +04:00
|
|
|
static const char* get_font(Fl_Font);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Get a human-readable string describing the family of this face. This
|
|
|
|
is useful if you are presenting a choice to the user. There is no
|
|
|
|
guarantee that each face has a different name. The return value points
|
|
|
|
to a static buffer that is overwritten each call.
|
|
|
|
|
2009-03-24 04:40:44 +03:00
|
|
|
The integer pointed to by \p attributes (if the pointer is not
|
2008-09-14 02:33:03 +04:00
|
|
|
zero) is set to zero, FL_BOLD or FL_ITALIC or
|
2008-09-17 19:44:43 +04:00
|
|
|
FL_BOLD | FL_ITALIC. To locate a "family" of fonts, search
|
2008-09-14 02:33:03 +04:00
|
|
|
forward and back for a set with non-zero attributes, these faces along
|
|
|
|
with the face with a zero attribute before them constitute a family.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static const char* get_font_name(Fl_Font, int* attributes = 0);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2009-03-24 04:40:44 +03:00
|
|
|
Return an array of sizes in \p sizep. The return value is the
|
2008-09-14 02:33:03 +04:00
|
|
|
length of this array. The sizes are sorted from smallest to largest
|
|
|
|
and indicate what sizes can be given to fl_font() that will
|
|
|
|
be matched exactly (fl_font() will pick the closest size for
|
|
|
|
other sizes). A zero in the first location of the array indicates a
|
|
|
|
scalable font, where any size works, although the array may list sizes
|
2008-09-17 19:44:43 +04:00
|
|
|
that work "better" than others. Warning: the returned array
|
2008-09-14 02:33:03 +04:00
|
|
|
points at a static buffer that is overwritten each call. Under X this
|
|
|
|
will open the display.
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int get_font_sizes(Fl_Font, int*& sizep);
|
|
|
|
static void set_font(Fl_Font, const char*);
|
|
|
|
static void set_font(Fl_Font, Fl_Font);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
FLTK will open the display, and add every fonts on the server to the
|
2008-09-17 19:44:43 +04:00
|
|
|
face table. It will attempt to put "families" of faces together, so
|
2008-09-14 02:33:03 +04:00
|
|
|
that the normal one is first, followed by bold, italic, and bold
|
|
|
|
italic.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
The optional argument is a string to describe the set of fonts to
|
2008-09-14 02:33:03 +04:00
|
|
|
add. Passing NULL will select only fonts that have the
|
|
|
|
ISO8859-1 character set (and are thus usable by normal text). Passing
|
2008-09-17 19:44:43 +04:00
|
|
|
"-*" will select all fonts with any encoding as long as they have
|
|
|
|
normal X font names with dashes in them. Passing "*" will list every
|
2008-09-14 02:33:03 +04:00
|
|
|
font that exists (on X this may produce some strange output). Other
|
|
|
|
values may be useful but are system dependent. With WIN32 NULL
|
|
|
|
selects fonts with ISO8859-1 encoding and non-NULL selects
|
|
|
|
all fonts.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
The return value is how many faces are in the table after this is done.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
|
|
|
static Fl_Font set_fonts(const char* = 0); // platform dependent
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
2008-12-28 14:21:03 +03:00
|
|
|
/** \defgroup fl_drawings Drawing functions
|
|
|
|
fl global graphics and gui drawing functions
|
|
|
|
@{ */
|
|
|
|
// <Hack to re-order the 'Drawing functions' group>
|
|
|
|
/** @} */
|
2008-09-18 17:20:25 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// labeltypes:
|
2002-07-14 23:08:25 +04:00
|
|
|
static void set_labeltype(Fl_Labeltype,Fl_Label_Draw_F*,Fl_Label_Measure_F*);
|
2008-09-14 02:33:03 +04:00
|
|
|
/** Sets the functions to call to draw and measure a specific labeltype. */
|
|
|
|
static void set_labeltype(Fl_Labeltype, Fl_Labeltype from); // is it defined ?
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// boxtypes:
|
2002-07-30 18:57:02 +04:00
|
|
|
static Fl_Box_Draw_F *get_boxtype(Fl_Boxtype);
|
2002-07-14 23:08:25 +04:00
|
|
|
static void set_boxtype(Fl_Boxtype, Fl_Box_Draw_F*,uchar,uchar,uchar,uchar);
|
|
|
|
static void set_boxtype(Fl_Boxtype, Fl_Boxtype from);
|
|
|
|
static int box_dx(Fl_Boxtype);
|
|
|
|
static int box_dy(Fl_Boxtype);
|
|
|
|
static int box_dw(Fl_Boxtype);
|
|
|
|
static int box_dh(Fl_Boxtype);
|
|
|
|
static int draw_box_active();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-15 21:46:42 +04:00
|
|
|
// back compatibility:
|
2008-09-18 17:20:25 +04:00
|
|
|
/** \addtogroup fl_windows
|
|
|
|
@{ */
|
2008-10-04 18:15:16 +04:00
|
|
|
/** For back compatibility, sets the void Fl::fatal handler callback */
|
2002-07-14 23:08:25 +04:00
|
|
|
static void set_abort(void (*f)(const char*,...)) {fatal = f;}
|
|
|
|
static void (*atclose)(Fl_Window*,void*);
|
|
|
|
static void default_atclose(Fl_Window*,void*);
|
2008-10-04 18:15:16 +04:00
|
|
|
/** For back compatibility, sets the Fl::atclose handler callback. You
|
2008-12-10 23:58:10 +03:00
|
|
|
can now simply change the callback for the window instead.
|
|
|
|
\see Fl_Window::callback(Fl_Callback*) */
|
2002-07-14 23:08:25 +04:00
|
|
|
static void set_atclose(void (*f)(Fl_Window*,void*)) {atclose = f;}
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/** \addtogroup fl_events
|
|
|
|
@{ */
|
2008-09-14 02:33:03 +04:00
|
|
|
/** Returns non-zero if the Shift key is pressed. */
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_shift() {return e_state&FL_SHIFT;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/** Returns non-zero if the Control key is pressed. */
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_ctrl() {return e_state&FL_CTRL;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/** Returns non-zero if the Alt key is pressed. */
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_alt() {return e_state&FL_ALT;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-10-04 18:15:16 +04:00
|
|
|
Returns the mouse buttons state bits; if non-zero, then at least one
|
|
|
|
button is pressed now. This function returns the button state at the
|
2008-09-14 02:33:03 +04:00
|
|
|
time of the event. During an FL_RELEASE event, the state
|
|
|
|
of the released button will be 0. To find out, which button
|
2008-10-04 18:15:16 +04:00
|
|
|
caused an FL_RELEASE event, you can use Fl::event_button() instead.
|
|
|
|
\return a bit mask value like { [FL_BUTTON1] | [FL_BUTTON2] | [FL_BUTTON3] }
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_buttons() {return e_state&0x7f000000;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-10-04 18:15:16 +04:00
|
|
|
Returns non-zero if mouse button 1 is currently held down.
|
2008-09-14 02:33:03 +04:00
|
|
|
For more details, see Fl::event_buttons().
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_button1() {return e_state&FL_BUTTON1;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns non-zero if button 2 is currently held down.
|
|
|
|
For more details, see Fl::event_buttons().
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_button2() {return e_state&FL_BUTTON2;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Returns non-zero if button 3 is currently held down.
|
|
|
|
For more details, see Fl::event_buttons().
|
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static int event_button3() {return e_state&FL_BUTTON3;}
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
|
|
|
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Sets an idle callback.
|
2008-12-10 23:58:10 +03:00
|
|
|
|
|
|
|
\deprecated This method is obsolete - use the add_idle() method instead.
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
2002-07-14 23:08:25 +04:00
|
|
|
static void set_idle(void (*cb)()) {idle = cb;}
|
2008-09-14 02:33:03 +04:00
|
|
|
/** See Fl_Window* grab() */
|
2002-08-09 05:09:49 +04:00
|
|
|
static void grab(Fl_Window&win) {grab(&win);}
|
2008-12-10 23:58:10 +03:00
|
|
|
/** Releases the current grabbed window, equals grab(0).
|
|
|
|
\deprecated Use Fl::grab(0) instead.
|
|
|
|
\see Fl_Window* grab() */
|
2002-07-14 23:08:25 +04:00
|
|
|
static void release() {grab(0);}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-03 08:11:34 +03:00
|
|
|
// Visible focus methods...
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Gets or sets the visible keyboard focus on buttons and other
|
|
|
|
non-text widgets. The default mode is to enable keyboard focus
|
|
|
|
for all widgets.
|
|
|
|
*/
|
2001-11-03 08:11:34 +03:00
|
|
|
static void visible_focus(int v) { visible_focus_ = v; }
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Gets or sets the visible keyboard focus on buttons and other
|
|
|
|
non-text widgets. The default mode is to enable keyboard focus
|
|
|
|
for all widgets.
|
|
|
|
*/
|
2001-11-03 08:11:34 +03:00
|
|
|
static int visible_focus() { return visible_focus_; }
|
2001-12-07 01:16:49 +03:00
|
|
|
|
2002-04-14 02:17:46 +04:00
|
|
|
// Drag-n-drop text operation methods...
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Gets or sets whether drag and drop text operations are supported.
|
|
|
|
This specifically affects whether selected text can
|
2008-09-14 02:33:03 +04:00
|
|
|
be dragged from text fields or dragged within a text field as a
|
|
|
|
cut/paste shortcut.
|
|
|
|
*/
|
2002-04-14 02:17:46 +04:00
|
|
|
static void dnd_text_ops(int v) { dnd_text_ops_ = v; }
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
Gets or sets whether drag and drop text operations are
|
|
|
|
supported. This specifically affects whether selected text can
|
|
|
|
be dragged from text fields or dragged within a text field as a
|
|
|
|
cut/paste shortcut.
|
|
|
|
*/
|
2002-04-14 02:17:46 +04:00
|
|
|
static int dnd_text_ops() { return dnd_text_ops_; }
|
2008-10-03 12:05:48 +04:00
|
|
|
/** \defgroup fl_multithread Multithreading support functions
|
2008-09-18 17:20:25 +04:00
|
|
|
fl multithreading support functions
|
|
|
|
@{ */
|
2002-04-14 02:17:46 +04:00
|
|
|
|
2001-12-07 01:16:49 +03:00
|
|
|
// Multithreading support:
|
2002-07-14 23:08:25 +04:00
|
|
|
static void lock();
|
|
|
|
static void unlock();
|
|
|
|
static void awake(void* message = 0);
|
2008-09-14 02:33:03 +04:00
|
|
|
/** See void awake(void* message=0). */
|
2007-03-06 20:15:03 +03:00
|
|
|
static int awake(Fl_Awake_Handler cb, void* message = 0);
|
2008-09-14 02:33:03 +04:00
|
|
|
/**
|
|
|
|
The thread_message() method returns the last message
|
|
|
|
that was sent from a child by the awake() method.
|
|
|
|
|
2008-12-10 23:58:10 +03:00
|
|
|
See also: multithreading
|
2008-09-14 02:33:03 +04:00
|
|
|
*/
|
|
|
|
static void* thread_message(); // platform dependent
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
2004-11-23 22:47:52 +03:00
|
|
|
|
2008-10-03 12:05:48 +04:00
|
|
|
/** \defgroup fl_del_widget Safe widget deletion support functions
|
2008-12-10 02:14:25 +03:00
|
|
|
|
2009-02-08 17:44:15 +03:00
|
|
|
These functions support deletion of widgets inside callbacks.
|
2008-12-10 02:14:25 +03:00
|
|
|
|
2009-04-19 16:47:36 +04:00
|
|
|
Fl::delete_widget() should be called when deleting widgets
|
|
|
|
or complete widget trees (Fl_Group, Fl_Window, ...) inside
|
2009-02-08 17:44:15 +03:00
|
|
|
callbacks.
|
2008-12-10 02:14:25 +03:00
|
|
|
|
2009-02-08 17:44:15 +03:00
|
|
|
The other functions are intended for internal use. The preferred
|
2009-04-19 16:47:36 +04:00
|
|
|
way to use them is by using the helper class Fl_Widget_Tracker.
|
2009-02-08 17:44:15 +03:00
|
|
|
|
|
|
|
The following is to show how it works ...
|
|
|
|
|
|
|
|
There are three groups of related methods:
|
|
|
|
|
|
|
|
-# scheduled widget deletion
|
2009-04-19 16:47:36 +04:00
|
|
|
- Fl::delete_widget() schedules widgets for deletion
|
|
|
|
- Fl::do_widget_deletion() deletes all scheduled widgets
|
2009-02-08 17:44:15 +03:00
|
|
|
-# widget watch list ("smart pointers")
|
2009-04-19 16:47:36 +04:00
|
|
|
- Fl::watch_widget_pointer() adds a widget pointer to the watch list
|
|
|
|
- Fl::release_widget_pointer() removes a widget pointer from the watch list
|
|
|
|
- Fl::clear_widget_pointer() clears a widget pointer \e in the watch list
|
2009-02-15 16:49:34 +03:00
|
|
|
-# the class Fl_Widget_Tracker:
|
2009-04-19 16:47:36 +04:00
|
|
|
- the constructor calls Fl::watch_widget_pointer()
|
|
|
|
- the destructor calls Fl::release_widget_pointer()
|
2009-02-08 17:44:15 +03:00
|
|
|
- the access methods can be used to test, if a widget has been deleted
|
2009-04-19 16:47:36 +04:00
|
|
|
\see Fl_Widget_Tracker.
|
2008-12-10 02:14:25 +03:00
|
|
|
|
2008-09-18 17:20:25 +04:00
|
|
|
@{ */
|
2004-11-23 22:47:52 +03:00
|
|
|
// Widget deletion:
|
|
|
|
static void delete_widget(Fl_Widget *w);
|
|
|
|
static void do_widget_deletion();
|
2006-04-28 01:40:47 +04:00
|
|
|
static void watch_widget_pointer(Fl_Widget *&w);
|
|
|
|
static void release_widget_pointer(Fl_Widget *&w);
|
|
|
|
static void clear_widget_pointer(Fl_Widget const *w);
|
2008-09-18 17:20:25 +04:00
|
|
|
/** @} */
|
|
|
|
|
2008-09-25 22:26:33 +04:00
|
|
|
#ifdef HAVE_CAIRO
|
2008-10-03 15:20:50 +04:00
|
|
|
/** \defgroup group_cairo Cairo support functions and classes
|
2008-09-25 22:26:33 +04:00
|
|
|
@{
|
|
|
|
*/
|
|
|
|
public:
|
|
|
|
// Cairo support API
|
|
|
|
static cairo_t * cairo_make_current(Fl_Window* w);
|
|
|
|
/** when HAVE_CAIRO is defined and cairo_autolink_context() is true,
|
2008-12-10 23:58:10 +03:00
|
|
|
any current window dc is linked to a current context.
|
|
|
|
This is not the default, because it may not be necessary
|
2008-09-25 22:26:33 +04:00
|
|
|
to add cairo support to all fltk supported windows.
|
|
|
|
When you wish to associate a cairo context in this mode,
|
2008-12-10 23:58:10 +03:00
|
|
|
you need to call explicitly in your draw() overridden method,
|
2008-09-25 22:26:33 +04:00
|
|
|
FL::cairo_make_current(Fl_Window*). This will create a cairo context
|
|
|
|
but only for this Window.
|
|
|
|
Still in custom cairo application it is possible to handle
|
2009-03-24 04:40:44 +03:00
|
|
|
completely this process automatically by setting \p alink to true.
|
2008-12-10 23:58:10 +03:00
|
|
|
In this last case, you don't need anymore to call Fl::cairo_make_current().
|
|
|
|
You can use Fl::cairo_cc() to get the current cairo context anytime.
|
2008-09-25 22:26:33 +04:00
|
|
|
\note Only available when configure has the --enable-cairo option
|
|
|
|
*/
|
|
|
|
static void cairo_autolink_context(bool alink) {cairo_state_.autolink(alink);}
|
|
|
|
/**
|
2008-12-10 23:58:10 +03:00
|
|
|
Gets the current autolink mode for cairo support.
|
2008-09-25 22:26:33 +04:00
|
|
|
\retval false if no cairo context autolink is made for each window.
|
|
|
|
\retval true if any fltk window is attached a cairo context when it
|
|
|
|
is current. \see void cairo_autolink_context(bool alink)
|
|
|
|
\note Only available when configure has the --enable-cairo option
|
|
|
|
*/
|
|
|
|
static bool cairo_autolink_context() {return cairo_state_.autolink();}
|
|
|
|
/** Gets the current cairo context linked with a fltk window. */
|
|
|
|
static cairo_t * cairo_cc() { return cairo_state_.cc(); }
|
2009-03-24 04:40:44 +03:00
|
|
|
/** Sets the current cairo context to \p c.
|
|
|
|
Set \p own to true if you want fltk to handle this cc deletion.
|
2008-09-25 22:26:33 +04:00
|
|
|
\note Only available when configure has the --enable-cairo option
|
|
|
|
*/
|
|
|
|
static void cairo_cc(cairo_t * c, bool own=false){ cairo_state_.cc(c, own); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
static cairo_t * cairo_make_current(void* gc);
|
|
|
|
static cairo_t * cairo_make_current(void* gc, int W, int H);
|
|
|
|
static Fl_Cairo_State cairo_state_;
|
|
|
|
public:
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#endif // HAVE_CAIRO
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
2009-02-08 17:44:15 +03:00
|
|
|
/**
|
|
|
|
This class should be used to control safe widget deletion.
|
|
|
|
|
2009-04-19 16:47:36 +04:00
|
|
|
You can use an Fl_Widget_Tracker object to watch another widget, if you
|
2009-02-08 17:44:15 +03:00
|
|
|
need to know, if this widget has been deleted during a callback.
|
|
|
|
|
|
|
|
This simplifies the use of the "safe widget deletion" methods
|
2009-04-19 16:47:36 +04:00
|
|
|
Fl::watch_widget_pointer() and Fl::release_widget_pointer() and
|
2009-02-08 17:44:15 +03:00
|
|
|
makes their use more reliable, because the destructor autmatically
|
|
|
|
releases the widget pointer from the widget watch list.
|
|
|
|
|
|
|
|
It is intended to be used as an automatic (local/stack) variable,
|
|
|
|
such that the automatic destructor is called when the object's
|
|
|
|
scope is left. This ensures that no stale widget pointers are
|
|
|
|
left in the widget watch list (see example below).
|
|
|
|
|
2009-04-19 16:47:36 +04:00
|
|
|
You can also create Fl_Widget_Tracker objects with \c new, but then it
|
2009-02-08 17:44:15 +03:00
|
|
|
is your responsibility to delete the object (and thus remove the
|
|
|
|
widget pointer from the watch list) when it is not needed any more.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
\code
|
|
|
|
int MyClass::handle (int event) {
|
|
|
|
|
|
|
|
if (...) {
|
2009-02-15 16:49:34 +03:00
|
|
|
Fl_Widget_Tracker wp(this); // watch myself
|
|
|
|
do_callback(); // call the callback
|
2009-02-08 17:44:15 +03:00
|
|
|
|
2009-02-15 16:49:34 +03:00
|
|
|
if (wp.deleted()) return 1; // exit, if deleted
|
2009-02-08 17:44:15 +03:00
|
|
|
|
|
|
|
// Now we are sure that the widget has not been deleted.
|
|
|
|
// It is safe to access the widget
|
|
|
|
|
2009-02-15 16:49:34 +03:00
|
|
|
clear_changed(); // access the widget
|
2009-02-08 17:44:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
\endcode
|
|
|
|
|
|
|
|
*/
|
2009-02-15 16:49:34 +03:00
|
|
|
class FL_EXPORT Fl_Widget_Tracker {
|
2009-02-08 17:44:15 +03:00
|
|
|
|
|
|
|
Fl_Widget* wp_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2009-02-15 16:49:34 +03:00
|
|
|
Fl_Widget_Tracker(Fl_Widget *wi);
|
|
|
|
~Fl_Widget_Tracker();
|
2009-02-08 17:44:15 +03:00
|
|
|
|
|
|
|
/**
|
2009-04-18 22:52:59 +04:00
|
|
|
Returns a pointer to the watched widget.
|
2009-02-08 17:44:15 +03:00
|
|
|
|
2009-04-18 22:52:59 +04:00
|
|
|
This pointer is \c NULL, if the widget has been deleted.
|
2009-02-08 17:44:15 +03:00
|
|
|
*/
|
|
|
|
Fl_Widget *widget() {return wp_;}
|
|
|
|
|
|
|
|
/**
|
2009-04-18 22:52:59 +04:00
|
|
|
Returns 1, if the watched widget has been deleted.
|
2009-02-08 17:44:15 +03:00
|
|
|
|
|
|
|
This is a convenience method. You can also use something like
|
|
|
|
|
2009-04-18 22:52:59 +04:00
|
|
|
<tt> if (wp.widget() == 0) // ...</tt>
|
2009-02-08 17:44:15 +03:00
|
|
|
|
2009-04-19 16:47:36 +04:00
|
|
|
where \p wp is an Fl_Widget_Tracker object.
|
2009-02-08 17:44:15 +03:00
|
|
|
*/
|
|
|
|
int deleted() {return wp_ == 0;}
|
|
|
|
|
|
|
|
/**
|
2009-04-18 22:52:59 +04:00
|
|
|
Returns 1, if the watched widget exists (has not been deleted).
|
2009-02-08 17:44:15 +03:00
|
|
|
|
|
|
|
This is a convenience method. You can also use something like
|
|
|
|
|
2009-04-18 22:52:59 +04:00
|
|
|
<tt> if (wp.widget() != 0) // ...</tt>
|
2009-02-08 17:44:15 +03:00
|
|
|
|
2009-04-19 16:47:36 +04:00
|
|
|
where \p wp is an Fl_Widget_Tracker object.
|
2009-02-08 17:44:15 +03:00
|
|
|
*/
|
|
|
|
int exists() {return wp_ != 0;}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-04-15 12:35:28 +04:00
|
|
|
/** \defgroup fl_unicode Unicode and UTF-8 functions
|
2009-04-17 01:10:49 +04:00
|
|
|
fl global Unicode and UTF-8 handling functions
|
2009-04-15 12:35:28 +04:00
|
|
|
@{ */
|
|
|
|
/** @} */
|
|
|
|
|
2001-11-28 23:43:44 +03:00
|
|
|
#endif // !Fl_H
|
1998-10-20 01:39:29 +04:00
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|