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
|
|
|
//
|
|
|
|
// Widget header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2008-09-16 11:26:22 +04:00
|
|
|
// Copyright 1998-2008 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2005-04-16 04:13:17 +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-08-11 12:35:34 +04:00
|
|
|
/** \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Widget, Fl_Label classes . */
|
2008-08-11 12:35:34 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Widget_H
|
|
|
|
#define Fl_Widget_H
|
|
|
|
|
|
|
|
#include "Enumerations.H"
|
|
|
|
|
|
|
|
class Fl_Widget;
|
|
|
|
class Fl_Window;
|
2001-10-23 01:15:11 +04:00
|
|
|
class Fl_Group;
|
2001-08-06 03:58:54 +04:00
|
|
|
class Fl_Image;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
typedef void (Fl_Callback )(Fl_Widget*, void*);
|
1999-03-18 23:04:13 +03:00
|
|
|
typedef Fl_Callback* Fl_Callback_p; // needed for BORLAND
|
1998-10-06 22:21:25 +04:00
|
|
|
typedef void (Fl_Callback0)(Fl_Widget*);
|
|
|
|
typedef void (Fl_Callback1)(Fl_Widget*, long);
|
|
|
|
|
2008-08-12 19:04:35 +04:00
|
|
|
|
2008-08-11 12:35:34 +04:00
|
|
|
/** This struct stores all information for a text or mixed graphics label.
|
|
|
|
*
|
2008-08-12 18:30:43 +04:00
|
|
|
* \todo For FLTK1.3, the Fl_Label type will become a widget by itself. That way
|
2008-08-11 12:35:34 +04:00
|
|
|
* we will be avoiding a lot of code duplication by handling labels in
|
|
|
|
* a similar fashion to widgets containing text. We also provide an easy
|
|
|
|
* interface for very complex labels, containing html or vector graphics.
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
struct FL_EXPORT Fl_Label {
|
2008-08-12 18:30:43 +04:00
|
|
|
/** label text */
|
1998-10-06 22:21:25 +04:00
|
|
|
const char* value;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** optional image for an active label */
|
2001-08-06 03:58:54 +04:00
|
|
|
Fl_Image* image;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** optional image for a deactivated label */
|
2001-08-06 03:58:54 +04:00
|
|
|
Fl_Image* deimage;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** type of label. \see Fl_Labeltype */
|
1998-10-06 22:21:25 +04:00
|
|
|
uchar type;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** label font used in text */
|
2008-04-23 23:09:28 +04:00
|
|
|
Fl_Font font;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** size of label font */
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize size;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** text color */
|
2001-10-29 06:44:33 +03:00
|
|
|
unsigned color;
|
2008-08-12 21:44:34 +04:00
|
|
|
/** draw the label aligned to the given box */
|
2002-08-14 20:19:48 +04:00
|
|
|
void draw(int,int,int,int, Fl_Align) const ;
|
2008-08-12 18:30:43 +04:00
|
|
|
/** measure the size of the label.
|
2008-08-12 19:04:35 +04:00
|
|
|
* \param w, h on input, this is the requested size for the label text plus image;
|
2008-08-12 18:30:43 +04:00
|
|
|
* on return, this will contain the size needed to fit the label
|
|
|
|
*/
|
2008-08-12 19:04:35 +04:00
|
|
|
void measure(int &w, int &h) const ;
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Fl_Widget is the base class for all widgets in FLTK.
|
|
|
|
*
|
|
|
|
* You can't create one of these because the constructor is not public. However
|
|
|
|
* you can subclass it.
|
|
|
|
*
|
|
|
|
* All "property" accessing methods, such as color(), parent(), or argument()
|
|
|
|
* are implemented as trivial inline functions and thus are as fast and small
|
|
|
|
* as accessing fields in a structure. Unless otherwise noted, the property
|
|
|
|
* setting methods such as color(n) or label(s) are also trivial inline functions,
|
|
|
|
* even if they change the widget's appearance. It is up to the user code to call
|
|
|
|
* redraw() after these.
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
class FL_EXPORT Fl_Widget {
|
1998-10-06 22:21:25 +04:00
|
|
|
friend class Fl_Group;
|
|
|
|
|
2001-10-23 01:15:11 +04:00
|
|
|
Fl_Group* parent_;
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Callback* callback_;
|
|
|
|
void* user_data_;
|
2008-04-23 19:07:13 +04:00
|
|
|
int x_,y_,w_,h_;
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Label label_;
|
2001-10-18 22:53:20 +04:00
|
|
|
int flags_;
|
2001-10-29 06:44:33 +03:00
|
|
|
unsigned color_;
|
|
|
|
unsigned color2_;
|
|
|
|
uchar type_;
|
1998-10-06 22:21:25 +04:00
|
|
|
uchar damage_;
|
|
|
|
uchar box_;
|
2008-08-16 00:32:01 +04:00
|
|
|
Fl_Align align_:8;
|
1998-10-06 22:21:25 +04:00
|
|
|
uchar when_;
|
|
|
|
|
2001-08-02 01:24:49 +04:00
|
|
|
const char *tooltip_;
|
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** unimplemented copy ctor */
|
2005-07-15 13:34:53 +04:00
|
|
|
Fl_Widget(const Fl_Widget &);
|
2008-08-12 18:30:43 +04:00
|
|
|
/** unimplemented assignment operator */
|
2005-07-15 13:34:53 +04:00
|
|
|
Fl_Widget& operator=(const Fl_Widget &);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2008-08-11 12:35:34 +04:00
|
|
|
/** Creates a widget at the given position and size.
|
|
|
|
* The Fl_Widget is a protected constructor, but all derived widgets have a
|
|
|
|
* matching public constructor. It takes a value for x(), y(), w(), h(), and
|
|
|
|
* an optional value for label().
|
|
|
|
*
|
|
|
|
* \param[in] x, y the position of the widget relative to the enclosing window
|
|
|
|
* \param[in] w, h size of the widget in pixels
|
|
|
|
* \param[in] label optional text for the widget label
|
|
|
|
*/
|
|
|
|
Fl_Widget(int x, int y, int w, int h, Fl_CString label=0L);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. Use position(int,int), size(int, int) or resize(int,int,int,int) instead. */
|
2008-04-23 19:07:13 +04:00
|
|
|
void x(int v) {x_ = v;}
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. Use position(int,int), size(int, int) or resize(int,int,int,int) instead. */
|
2008-04-23 19:07:13 +04:00
|
|
|
void y(int v) {y_ = v;}
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. Use position(int,int), size(int, int) or resize(int,int,int,int) instead. */
|
2008-04-23 19:07:13 +04:00
|
|
|
void w(int v) {w_ = v;}
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. Use position(int,int), size(int, int) or resize(int,int,int,int) instead. */
|
2008-04-23 19:07:13 +04:00
|
|
|
void h(int v) {h_ = v;}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-10-18 22:53:20 +04:00
|
|
|
int flags() const {return flags_;}
|
1998-10-06 22:21:25 +04:00
|
|
|
void set_flag(int c) {flags_ |= c;}
|
|
|
|
void clear_flag(int c) {flags_ &= ~c;}
|
2002-07-23 19:07:33 +04:00
|
|
|
enum {INACTIVE=1, INVISIBLE=2, OUTPUT=4, SHORTCUT_LABEL=64,
|
2004-11-23 22:47:52 +03:00
|
|
|
CHANGED=128, VISIBLE_FOCUS=512, COPIED_LABEL = 1024};
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-08-14 20:19:48 +04:00
|
|
|
void draw_box() const;
|
|
|
|
void draw_box(Fl_Boxtype, Fl_Color) const;
|
|
|
|
void draw_box(Fl_Boxtype, int,int,int,int, Fl_Color) const;
|
2001-11-03 08:11:34 +03:00
|
|
|
void draw_focus() {draw_focus(box(),x(),y(),w(),h());}
|
2002-08-14 20:19:48 +04:00
|
|
|
void draw_focus(Fl_Boxtype, int,int,int,int) const;
|
|
|
|
void draw_label() const;
|
|
|
|
void draw_label(int, int, int, int) const;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-08-11 12:35:34 +04:00
|
|
|
/** Destroys the widget.
|
|
|
|
* Destroying single widgets is not very common, and it is your responsibility
|
|
|
|
* to either remove() them from any enclosing group or destroy that group
|
|
|
|
* \em immediately after destroying the children. You almost always want to
|
|
|
|
* destroy the parent group instead which will destroy all of the child widgets
|
|
|
|
* and groups in that group.
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
virtual ~Fl_Widget();
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Draw the widget.
|
2008-08-12 21:44:34 +04:00
|
|
|
* Never call this function directly. FLTK will schedule redrawing whenever
|
2008-08-12 18:30:43 +04:00
|
|
|
* needed. If your widget must be redrawn as soon as possible, call redraw()
|
|
|
|
* instead.
|
|
|
|
*
|
|
|
|
* Override this function to draw your own widgets.
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
virtual void draw() = 0;
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Handles the specified event.
|
|
|
|
* You normally don't call this method directly, but instead let FLTK do
|
|
|
|
* it when the user interacts with the widget.
|
|
|
|
*
|
|
|
|
* When implemented in a new widget, this function must return 0 if the
|
2008-09-17 11:56:15 +04:00
|
|
|
* widget does not use the event or 1 otherwise.<BR>
|
|
|
|
* Most of the time, you want to call the inherited handle() method in
|
|
|
|
* your overriden method so that you don't short-circuit events that you
|
|
|
|
* don't handle. In this last case you should return the callee retval.
|
2008-08-11 12:35:34 +04:00
|
|
|
*
|
|
|
|
* \param[in] event the kind of event received
|
|
|
|
* \retval 0 if the event was not used or understood
|
|
|
|
* \retval 1 if the event was used and can be deleted
|
|
|
|
* \see Fl_Event
|
|
|
|
*/
|
|
|
|
virtual int handle(int event);
|
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Returns a pointer to the parent widget.
|
|
|
|
* Usually this is a Fl_Group or Fl_Window.
|
|
|
|
* \retval NULL if the widget has no parent
|
|
|
|
* \see Fl_Group::add(Fl_Widget*)
|
|
|
|
*/
|
2001-10-23 01:15:11 +04:00
|
|
|
Fl_Group* parent() const {return parent_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Internal use only. Use Fl_Group::add(Fl_Widget*) instead. */
|
2002-08-09 05:09:49 +04:00
|
|
|
void parent(Fl_Group* p) {parent_ = p;} // for hacks only, Fl_Group::add()
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-09-17 11:56:15 +04:00
|
|
|
/** Gets the widget type.
|
2008-08-12 18:30:43 +04:00
|
|
|
* Returns the widget type value, which is used for Forms
|
2008-08-12 21:44:34 +04:00
|
|
|
* compatibility and to simulate RTTI.
|
2008-08-12 18:30:43 +04:00
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
uchar type() const {return type_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
2008-09-17 11:56:15 +04:00
|
|
|
/** Sets the widget type.
|
2008-08-12 18:30:43 +04:00
|
|
|
* This is used for Forms compatibility.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void type(uchar t) {type_ = t;}
|
|
|
|
|
2008-09-17 11:56:15 +04:00
|
|
|
/** Gets the widget position in its window.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \return the x position relative to the window
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int x() const {return x_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
2008-09-17 11:56:15 +04:00
|
|
|
/** Gets the widget position in its window.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \return the y position relative to the window
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int y() const {return y_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
2008-09-17 11:56:15 +04:00
|
|
|
/** Gets the widget width.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \return the width of the widget in pixels.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int w() const {return w_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
2008-09-17 11:56:15 +04:00
|
|
|
/** Gets the widget height.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \return the height of the widget in pixels.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int h() const {return h_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Change the size or position of the widget.
|
|
|
|
* This is a virtual function so that the widget may implement its
|
|
|
|
* own handling of resizing. The default version does <I>not</I>
|
|
|
|
* call the redraw() method, but instead relies on the parent widget
|
|
|
|
* to do so because the parent may know a faster way to update the
|
|
|
|
* display, such as scrolling from the old position.
|
|
|
|
*
|
|
|
|
* Some window managers under X11 call resize() a lot more often
|
|
|
|
* than needed. Please verify that the position or size of a widget
|
2008-08-12 21:44:34 +04:00
|
|
|
* did actually change before doing any extensive calculations.
|
2008-08-12 18:30:43 +04:00
|
|
|
*
|
|
|
|
* position(x,y) is a shortcut for resize(x,y,w(),h()), and size(w,h) is a shortcut for resize(x(),y(),w,h).
|
|
|
|
*
|
|
|
|
* \param[in] x, y new position relative to the parent window
|
|
|
|
* \param[in] w, h new size
|
|
|
|
* \see position(int, int), size(int, int)
|
|
|
|
*/
|
|
|
|
virtual void resize(int x, int y, int w, int h);
|
|
|
|
|
|
|
|
/** Internal use only. */
|
2002-08-14 20:19:48 +04:00
|
|
|
int damage_resize(int,int,int,int);
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Reposition the window or widget.
|
|
|
|
* position(x,y) is a shortcut for resize(x,y,w(),h()).
|
|
|
|
*
|
|
|
|
* \param[in] x, y new position relative to the parent window
|
|
|
|
* \see resize(int, int, int, int), size(int, int)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void position(int X,int Y) {resize(X,Y,w_,h_);}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Change the size of the widget.
|
|
|
|
* size(w,h) is a shortcut for resize(x(),y(),w,h).
|
|
|
|
*
|
2008-08-12 19:04:35 +04:00
|
|
|
* \param[in] W, H new size
|
2008-08-12 18:30:43 +04:00
|
|
|
* \see position(int, int), resize(int, int, int, int)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void size(int W,int H) {resize(x_,y_,W,H);}
|
|
|
|
|
2008-08-11 12:35:34 +04:00
|
|
|
/** Gets the label alignment.
|
|
|
|
* \return label alignment
|
2008-08-16 00:32:01 +04:00
|
|
|
* \see label(), align(Fl_Align), Fl_Align
|
2008-09-14 15:15:17 +04:00
|
|
|
* \todo This function should not take uchar as an argument. Apart from the fact that uchar is too short
|
2008-08-11 12:35:34 +04:00
|
|
|
* with only 8 bits, it does not provide type safety (in which case we don't need to declare Fl_Type
|
|
|
|
* an enum to begin with).
|
|
|
|
*/
|
2008-08-16 00:32:01 +04:00
|
|
|
Fl_Align align() const {return align_;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the label alignment.
|
|
|
|
* This controls how the label is displayed next to or inside the widget.
|
|
|
|
* The default value is FL_ALIGN_CENTER, which centers the label inside the widget.
|
|
|
|
* \param[in] alignment new label alignment
|
|
|
|
* \see align(), Fl_Align
|
|
|
|
*/
|
2008-08-16 00:32:01 +04:00
|
|
|
void align(Fl_Align alignment) {align_ = alignment;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets the box type for the widget.
|
|
|
|
* \return the current box type
|
|
|
|
* \see box(Fl_Boxtype), Fl_Boxtype
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Boxtype box() const {return (Fl_Boxtype)box_;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the box type for the widget.
|
|
|
|
* This identifies a routine that draws the background of the widget.
|
|
|
|
* See Fl_Boxtype for the available types. The default depends on the widget,
|
|
|
|
* but is usually FL_NO_BOX or FL_UP_BOX.
|
|
|
|
* \param[in] new_box the new box type
|
|
|
|
* \see box(), Fl_Boxtype
|
|
|
|
*/
|
|
|
|
void box(Fl_Boxtype new_box) {box_ = new_box;}
|
|
|
|
|
|
|
|
/** Gets the background color of the widget.
|
|
|
|
* \return current background color
|
|
|
|
* \see color(unsigned), color(unsigned, unsigned)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Color color() const {return (Fl_Color)color_;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the background color of the widget.
|
|
|
|
* The color is passed to the box routine. The color is either an index into an
|
|
|
|
* internal table of RGB colors or an RGB color value generated using fl_rgb_color().
|
|
|
|
* The default for most widgets is FL_BACKGROUND_COLOR. Use Fl::set_color() to
|
|
|
|
* redefine colors in the color map.
|
|
|
|
* \param[in] bg background color
|
|
|
|
* \see color(), color(unsigned, unsigned), selection_color(unsigned)
|
|
|
|
*/
|
2008-08-12 17:08:26 +04:00
|
|
|
void color(unsigned bg) {color_ = bg;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Gets the selection color.
|
|
|
|
* \return the current selection color
|
|
|
|
* \see selection_color(unsigned), color(unsigned, unsigned)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Color selection_color() const {return (Fl_Color)color2_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Gets or sets the selection color.
|
|
|
|
* The selection color is defined for Forms compatibility and is usually
|
|
|
|
* used to color the widget when it is selected, although some widgets
|
|
|
|
* use this color for other purposes. You can set both colors at once
|
|
|
|
* with color(int, int).
|
|
|
|
* \param[in] a the new selection color
|
|
|
|
* \see selection_color(), color(unsigned, unsigned)
|
|
|
|
*/
|
2001-10-29 06:44:33 +03:00
|
|
|
void selection_color(unsigned a) {color2_ = a;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the background and selection color of the widget.
|
|
|
|
* The two color form sets both the background and selection colors.
|
|
|
|
* \param[in] bg background color
|
|
|
|
* \param[in] sel selection color
|
|
|
|
* \see color(unsigned), selection_color(unsigned)
|
|
|
|
*/
|
2008-08-12 17:08:26 +04:00
|
|
|
void color(unsigned bg, unsigned sel) {color_=bg; color2_=sel;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Get the current label text.
|
|
|
|
* \return a pointer to the current label text
|
|
|
|
* \see label(Fl_CString), copy_label(Fl_CString)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
const char* label() const {return label_.value;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Get or set the current label pointer.
|
|
|
|
* The label is shown somewhere on or next to the widget. The passed pointer
|
|
|
|
* is stored unchanged in the widget (the string is \em not copied), so if
|
|
|
|
* you need to set the label to a formatted value, make sure the buffer is
|
2008-09-15 23:21:20 +04:00
|
|
|
* static, global, or allocated. The copy_label() method can be used
|
2008-08-11 12:35:34 +04:00
|
|
|
* to make a copy of the label string automatically.
|
|
|
|
* \param[in] text pointer to new label text
|
|
|
|
* \see copy_label()
|
|
|
|
*/
|
|
|
|
void label(const char* text);
|
|
|
|
|
|
|
|
/** Sets the current label.
|
|
|
|
* Unlike label(), this method allocates a copy of the label
|
|
|
|
* string instead of using the original string pointer.
|
|
|
|
* \param[in] new_label the new label text
|
|
|
|
* \see label()
|
|
|
|
*/
|
|
|
|
void copy_label(Fl_CString new_label);
|
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Shortcut to set the label text and type in one call.
|
|
|
|
* \see label(FL_CString), labeltype(Fl_Labeltype)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void label(Fl_Labeltype a,const char* b) {label_.type = a; label_.value = b;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets the label type.
|
|
|
|
* \return the current label type.
|
|
|
|
* \see Fl_Labeltype
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Labeltype labeltype() const {return (Fl_Labeltype)label_.type;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the label type.
|
|
|
|
* The label type identifies the function that draws the label of the widget.
|
|
|
|
* This is generally used for special effects such as embossing or for using
|
|
|
|
* the label() pointer as another form of data such as an icon. The value
|
|
|
|
* FL_NORMAL_LABEL prints the label as plain text.
|
|
|
|
* \param a new label type
|
|
|
|
* \see Fl_Labeltype
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void labeltype(Fl_Labeltype a) {label_.type = a;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets the label color.
|
|
|
|
* The default color is FL_FOREGROUND_COLOR.
|
|
|
|
* \return the current label color
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Color labelcolor() const {return (Fl_Color)label_.color;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the label color.
|
|
|
|
* The default color is FL_FOREGROUND_COLOR.
|
|
|
|
* \param[in] c the new label color
|
|
|
|
*/
|
|
|
|
void labelcolor(unsigned c) {label_.color=c;}
|
|
|
|
|
|
|
|
/** Gets the font to use.
|
|
|
|
* Fonts are identified by indexes into a table. The default value uses a
|
|
|
|
* Helvetica typeface (Arial for Microsoft® Windows®). The function
|
|
|
|
* Fl::set_font() can define new typefaces.
|
|
|
|
* \return current font used by the label
|
|
|
|
* \see Fl_Font
|
|
|
|
*/
|
2008-04-23 23:09:28 +04:00
|
|
|
Fl_Font labelfont() const {return label_.font;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the font to use.
|
|
|
|
* Fonts are identified by indexes into a table. The default value uses a
|
|
|
|
* Helvetica typeface (Arial for Microsoft® Windows®). The function
|
|
|
|
* Fl::set_font() can define new typefaces.
|
|
|
|
* \param[in] f the new font for the label
|
|
|
|
* \see Fl_Font
|
|
|
|
*/
|
|
|
|
void labelfont(Fl_Font f) {label_.font=f;}
|
|
|
|
|
|
|
|
/** Gets the font size in pixels.
|
|
|
|
* The default size is 14 pixels.
|
|
|
|
* \return the current font size
|
|
|
|
*/
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize labelsize() const {return label_.size;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets or sets the font size in pixels.
|
|
|
|
* The default size is 14 pixels.
|
|
|
|
* \param[in] pix the new font size
|
|
|
|
*/
|
2008-08-16 01:11:21 +04:00
|
|
|
void labelsize(Fl_Fontsize pix) {label_.size=pix;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets or sets the image to use as part of the widget label.
|
|
|
|
* This image is used when drawing the widget in the active state.
|
|
|
|
* \return the current image
|
|
|
|
*/
|
2001-08-06 03:58:54 +04:00
|
|
|
Fl_Image* image() {return label_.image;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets or sets the image to use as part of the widget label.
|
|
|
|
* This image is used when drawing the widget in the active state.
|
|
|
|
* \param[in] img the new image for the label
|
|
|
|
*/
|
|
|
|
void image(Fl_Image* img) {label_.image=img;}
|
|
|
|
|
|
|
|
/** Gets or sets the image to use as part of the widget label.
|
|
|
|
* This image is used when drawing the widget in the active state.
|
|
|
|
* \param[in] img the new image for the label
|
|
|
|
*/
|
|
|
|
void image(Fl_Image& img) {label_.image=&img;}
|
|
|
|
|
|
|
|
/** Gets the image to use as part of the widget label.
|
|
|
|
* This image is used when drawing the widget in the inactive state.
|
|
|
|
* \return the current deactivated image for this widget
|
|
|
|
*/
|
2001-08-06 03:58:54 +04:00
|
|
|
Fl_Image* deimage() {return label_.deimage;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the image to use as part of the widget label.
|
|
|
|
* This image is used when drawing the widget in the inactive state.
|
|
|
|
* \param[in] img the new image for the deactivated widget
|
|
|
|
*/
|
|
|
|
void deimage(Fl_Image* img) {label_.deimage=img;}
|
|
|
|
|
|
|
|
/** Sets the image to use as part of the widget label.
|
|
|
|
* This image is used when drawing the widget in the inactive state.
|
|
|
|
* \param[in] img the new image for the deactivated widget
|
|
|
|
*/
|
|
|
|
void deimage(Fl_Image& img) {label_.deimage=&img;}
|
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Gets the current tooltip text.
|
|
|
|
* \return a pointer to the tooltip text or NULL
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
const char *tooltip() const {return tooltip_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Sets the current tooltip text.
|
|
|
|
* Sets a string of text to display in a popup tooltip window when the user
|
|
|
|
* hovers the mouse over the widget. The string is <I>not</I> copied, so
|
2008-09-15 23:21:20 +04:00
|
|
|
* make sure any formatted string is stored in a static, global,
|
2008-08-12 18:30:43 +04:00
|
|
|
* or allocated buffer.
|
|
|
|
*
|
|
|
|
* If no tooltip is set, the tooltip of the parent is inherited. Setting a
|
|
|
|
* tooltip for a group and setting no tooltip for a child will show the
|
|
|
|
* group's tooltip instead. To avoid this behavior, you can set the child's
|
2008-09-17 19:44:43 +04:00
|
|
|
* tooltip to an empty string ("").
|
2008-08-12 18:30:43 +04:00
|
|
|
* \param[in] t new tooltip
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void tooltip(const char *t);
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets the current callback function for the widget.
|
|
|
|
* Each widget has a single callback.
|
|
|
|
* \return current callback
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Callback_p callback() const {return callback_;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the current callback function for the widget.
|
|
|
|
* Each widget has a single callback.
|
|
|
|
* \param[in] cb new callback
|
|
|
|
* \param[in] p user data
|
|
|
|
*/
|
2008-08-12 17:08:26 +04:00
|
|
|
void callback(Fl_Callback* cb, void* p) {callback_=cb; user_data_=p;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the current callback function for the widget.
|
|
|
|
* Each widget has a single callback.
|
|
|
|
* \param[in] cb new callback
|
|
|
|
*/
|
2008-08-12 17:08:26 +04:00
|
|
|
void callback(Fl_Callback* cb) {callback_=cb;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the current callback function for the widget.
|
|
|
|
* Each widget has a single callback.
|
|
|
|
* \param[in] cb new callback
|
|
|
|
*/
|
2008-08-12 17:08:26 +04:00
|
|
|
void callback(Fl_Callback0*cb) {callback_=(Fl_Callback*)cb;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the current callback function for the widget.
|
|
|
|
* Each widget has a single callback.
|
|
|
|
* \param[in] cb new callback
|
|
|
|
* \param[in] p user data
|
|
|
|
*/
|
2008-08-12 17:08:26 +04:00
|
|
|
void callback(Fl_Callback1*cb, long p=0) {callback_=(Fl_Callback*)cb; user_data_=(void*)p;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Gets the user data for this widget.
|
2008-09-15 23:21:20 +04:00
|
|
|
* Gets the current user data (void *) argument
|
2008-08-12 18:30:43 +04:00
|
|
|
* that is passed to the callback function.
|
|
|
|
* \return user data as a pointer
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void* user_data() const {return user_data_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Sets the user data for this widget.
|
2008-09-15 23:21:20 +04:00
|
|
|
* Sets the new user data (void *) argument
|
2008-08-12 18:30:43 +04:00
|
|
|
* that is passed to the callback function.
|
|
|
|
* \param[in] v new user data
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void user_data(void* v) {user_data_ = v;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Gets the current user data (long) argument that is passed to the callback function.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
long argument() const {return (long)user_data_;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Sets the current user data (long) argument that is passed to the callback function.
|
|
|
|
* \todo The user data value must be implemented using a \em union to avoid 64 bit machine incompatibilities.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void argument(long v) {user_data_ = (void*)v;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
2008-09-15 15:10:51 +04:00
|
|
|
/**
|
|
|
|
Controls when callbacks are done. The following values are useful,
|
|
|
|
the default value is FL_WHEN_RELEASE:
|
|
|
|
|
|
|
|
<UL>
|
|
|
|
|
|
|
|
<LI>0: The callback is not done, but
|
|
|
|
changed() is turned on.</LI>
|
|
|
|
|
|
|
|
<LI>FL_WHEN_CHANGED: The callback is done each
|
|
|
|
time the text is changed by the user.</LI>
|
|
|
|
|
|
|
|
<LI>FL_WHEN_RELEASE: The callback will be done
|
|
|
|
when this widget loses the focus, including when the
|
|
|
|
window is unmapped. This is a useful value for text
|
|
|
|
fields in a panel where doing the callback on every
|
|
|
|
change is wasteful. However the callback will also
|
|
|
|
happen if the mouse is moved out of the window, which
|
|
|
|
means it should not do anything visible (like pop up an
|
|
|
|
error message). You might do better setting this to
|
|
|
|
zero, and scanning all the items for changed()
|
|
|
|
when the OK button on a panel is pressed.</LI>
|
|
|
|
|
|
|
|
<LI>FL_WHEN_ENTER_KEY: If the user types the
|
|
|
|
Enter key, the entire text is selected, and the callback
|
|
|
|
is done if the text has changed. Normally the Enter key
|
|
|
|
will navigate to the next field (or insert a newline for
|
|
|
|
a Fl_Mulitline_Input), this changes the
|
|
|
|
behavior.</LI>
|
|
|
|
|
|
|
|
<LI>FL_WHEN_ENTER_KEY|FL_WHEN_NOT_CHANGED: The
|
|
|
|
Enter key will do the callback even if the text has not
|
|
|
|
changed. Useful for command fields.</LI>
|
|
|
|
|
|
|
|
</UL>
|
|
|
|
Return the conditions under which the callback is called.
|
|
|
|
\return set of flags
|
2008-08-12 18:30:43 +04:00
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_When when() const {return (Fl_When)when_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Flags used to decide when a callback is called.
|
2008-09-15 23:21:20 +04:00
|
|
|
* Fl_Widget::when() is a set of bitflags used by subclasses of
|
|
|
|
* Fl_Widget to decide when to do the callback. If the value
|
2008-08-12 18:30:43 +04:00
|
|
|
* is zero then the callback is never done. Other values are described
|
|
|
|
* in the individual widgets. This field is in the base class so that
|
2008-09-15 23:21:20 +04:00
|
|
|
* you can scan a panel and do_callback() on all the ones that
|
2008-09-17 19:44:43 +04:00
|
|
|
* don't do their own callbacks in response to an "OK" button.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \param[in] i set of flags
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void when(uchar i) {when_ = i;}
|
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Returns whether a widget is visble.
|
2008-08-12 21:44:34 +04:00
|
|
|
* \retval 0 if the widget is not drawn and hence invisible.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \see show(), hide(), visible_r()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int visible() const {return !(flags_&INVISIBLE);}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Returns whether a widget and all its parents are visible.
|
|
|
|
* \retval 0 if the widget or any of its parents are invisible.
|
|
|
|
* \see show(), hide(), visible()
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
int visible_r() const;
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Makes a widget visible.
|
|
|
|
* An invisible widget never gets redrawn and does not get events.
|
2008-09-15 23:21:20 +04:00
|
|
|
* The visible() method returns true if the widget is set to be
|
|
|
|
* visible. The visible_r() method returns true if the widget and
|
2008-08-12 18:30:43 +04:00
|
|
|
* all of its parents are visible. A widget is only visible if
|
2008-09-15 23:21:20 +04:00
|
|
|
* visible() is true on it <I>and all of its parents</I>.
|
2008-08-12 18:30:43 +04:00
|
|
|
*
|
2008-09-15 23:21:20 +04:00
|
|
|
* Changing it will send FL_SHOW or FL_HIDE events to
|
2008-08-12 18:30:43 +04:00
|
|
|
* the widget. <I>Do not change it if the parent is not visible, as this
|
2008-09-15 23:21:20 +04:00
|
|
|
* will send false FL_SHOW or FL_HIDE events to the
|
|
|
|
* widget</I>. redraw() is called if necessary on this or the parent.
|
2008-08-12 18:30:43 +04:00
|
|
|
*
|
|
|
|
* \see hide(), visible(), visible_r()
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void show();
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Makes a widget invisible.
|
|
|
|
* \see show(), visible(), visible_r()
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void hide();
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Makes the widget visible.
|
|
|
|
* You must still redraw the parent widget to see a change in the
|
|
|
|
* window. Normally you want to use the show() method instead.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void set_visible() {flags_ &= ~INVISIBLE;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Hides the widget.
|
|
|
|
* You must still redraw the parent to see a change in the window.
|
|
|
|
* Normally you want to use the hide() method instead.
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void clear_visible() {flags_ |= INVISIBLE;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Returns whether the widget is active.
|
|
|
|
* \retval 0 if the widget is inactive
|
|
|
|
* \see active_r(), activate(), deactivate()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int active() const {return !(flags_&INACTIVE);}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** active_r() returns whether the widget and all of its
|
|
|
|
* parents are active.
|
|
|
|
* \retval 0 if this or any of the parent widgets are inactive
|
|
|
|
* \see active(), activate(), deactivate()
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
int active_r() const;
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Activate a widget.
|
|
|
|
* Changing this value will send FL_ACTIVATE to the widget if
|
|
|
|
* active_r() is true.
|
|
|
|
* \see active(), active_r(), deactivate()
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void activate();
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Deactivate a widget.
|
|
|
|
* Inactive widgets will be drawn "grayed out", e.g. with less contrast
|
|
|
|
* than the active widget. Inactive widgets will not receive any keyboard
|
|
|
|
* or mouse button events. Other events (including FL_ENTER, FL_MOVE,
|
|
|
|
* FL_LEAVE, FL_SHORTCUT, and others) will still be sent. A widget is
|
|
|
|
* only active if active() is true on it <I>and all of its parents</I>.
|
|
|
|
*
|
|
|
|
* Changing this value will send FL_DEACTIVATE to the widget if
|
|
|
|
* active_r() is true.
|
|
|
|
*
|
|
|
|
* Currently you cannot deactivate Fl_Window widgets.
|
|
|
|
*
|
|
|
|
* \see activate(), active(), active_r()
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void deactivate();
|
2008-08-11 12:35:34 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Return if a widget is used for output only.
|
|
|
|
* output() means the same as !active() except it does not change how the
|
|
|
|
* widget is drawn. The widget will not receive any events. This is useful
|
|
|
|
* for making scrollbars or buttons that work as displays rather than input devices.
|
2008-08-12 21:44:34 +04:00
|
|
|
* \retval 0 if the widget is used for input and output
|
2008-08-12 18:30:43 +04:00
|
|
|
* \see set_output(), clear_output()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int output() const {return (flags_&OUTPUT);}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Set a widget to output only.
|
|
|
|
* \see output(), clear_output()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void set_output() {flags_ |= OUTPUT;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Set a widget to accept input.
|
|
|
|
* \see set_output(), output()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void clear_output() {flags_ &= ~OUTPUT;}
|
2008-08-12 18:30:43 +04:00
|
|
|
|
2008-08-12 21:44:34 +04:00
|
|
|
/** Returns if the widget is able to take events.
|
2008-09-15 23:21:20 +04:00
|
|
|
* This is the same as (active() && !output()
|
|
|
|
* && visible()) but is faster.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \retval 0 if the widget takes no events
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int takesevents() const {return !(flags_&(INACTIVE|INVISIBLE|OUTPUT));}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Check if the widget value changed since the last callback.
|
|
|
|
* "Changed" is a flag that is turned on when the user changes the value stored
|
|
|
|
* in the widget. This is only used by subclasses of Fl_Widget that store values,
|
|
|
|
* but is in the base class so it is easier to scan all the widgets in a panel
|
|
|
|
* and do_callback() on the changed ones in response to an "OK" button.
|
|
|
|
*
|
|
|
|
* Most widgets turn this flag off when they do the callback, and when the program
|
|
|
|
* sets the stored value.
|
|
|
|
*
|
|
|
|
* \retval 0 if the value did not change
|
|
|
|
* \see set_changed(), clear_changed()`
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
int changed() const {return flags_&CHANGED;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Mark the value of the widget as changed.
|
|
|
|
* \see changed(), clear_changed()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void set_changed() {flags_ |= CHANGED;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Mark the value of the widget as unchanged.
|
|
|
|
* \see changed(), set_changed()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void clear_changed() {flags_ &= ~CHANGED;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Give the widget the keyboard focus.
|
|
|
|
* Tries to make this widget be the Fl::focus() widget, by first sending
|
2008-09-15 23:21:20 +04:00
|
|
|
* it an FL_FOCUS event, and if it returns non-zero, setting
|
|
|
|
* Fl::focus() to this widget. You should use this method to
|
2008-08-12 18:30:43 +04:00
|
|
|
* assign the focus to a widget.
|
|
|
|
* \return true if the widget accepted the focus.
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
int take_focus();
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Enables keyboard focus navigation with this widget.
|
|
|
|
* Note, however, that this will not necessarily mean that the widget will
|
|
|
|
* accept focus, but for widgets that can accept focus, this method enables
|
|
|
|
* it if it has been disabled.
|
|
|
|
* \see visible_focus(), clear_visible_focus(), visible_focus(int)
|
|
|
|
*/
|
2002-07-23 19:07:33 +04:00
|
|
|
void set_visible_focus() { flags_ |= VISIBLE_FOCUS; }
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Disables keyboard focus navigation with this widget.
|
|
|
|
* Normally, all widgets participate in keyboard focus navigation.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \see set_visible_focus(), visible_focus(), visible_focus(int)
|
2008-08-11 12:35:34 +04:00
|
|
|
*/
|
2002-07-23 19:07:33 +04:00
|
|
|
void clear_visible_focus() { flags_ &= ~VISIBLE_FOCUS; }
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Modifies keyboard focus navigation.
|
|
|
|
* \param[in] v set or clear visible focus
|
|
|
|
* \see set_visible_focus(), clear_visible_focus(), visible_focus()
|
|
|
|
*/
|
2002-07-23 19:07:33 +04:00
|
|
|
void visible_focus(int v) { if (v) set_visible_focus(); else clear_visible_focus(); }
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Check whether this widget has a visible focus.
|
2008-08-12 21:44:34 +04:00
|
|
|
* \retval 0 if this widget has no visible focus.
|
2008-08-12 18:30:43 +04:00
|
|
|
* \see visible_focus(int), set_visible_focus(), clear_visible_focus()
|
|
|
|
*/
|
2002-07-23 19:07:33 +04:00
|
|
|
int visible_focus() { return flags_ & VISIBLE_FOCUS; }
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-08-12 19:04:35 +04:00
|
|
|
/** Sets the default callback for all widgets.
|
2008-08-11 12:35:34 +04:00
|
|
|
* Sets the default callback, which puts a pointer to the widget on the queue
|
|
|
|
* returned by Fl::readqueue(). You may want to call this from your own callback.
|
|
|
|
* \param cb the new callback
|
|
|
|
* \param d user data associated with that callback
|
|
|
|
* \see callback(), do_callback(), Fl::readqueu()
|
|
|
|
*/
|
|
|
|
static void default_callback(Fl_Widget *cb, void *d);
|
|
|
|
|
|
|
|
/** Call the widget callback.
|
|
|
|
* Causes a widget to invoke its callback function, optionally
|
|
|
|
* with arbitrary arguments.
|
|
|
|
* \see callback()
|
|
|
|
*/
|
2004-07-27 20:02:21 +04:00
|
|
|
void do_callback() {callback_(this,user_data_); if (callback_ != default_callback) clear_changed();}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Call the widget callback.
|
|
|
|
* Causes a widget to invoke its callback function, optionally
|
|
|
|
* with arbitrary arguments.
|
|
|
|
* \param o call the callback with \em o as the widget argument
|
|
|
|
* \param arg call the callback with \em arg as the user data argument
|
|
|
|
* \see callback()
|
|
|
|
*/
|
2004-07-27 20:02:21 +04:00
|
|
|
void do_callback(Fl_Widget* o,void* arg=0) {callback_(o,arg); if (callback_ != default_callback) clear_changed();}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Call the widget callback.
|
|
|
|
* Causes a widget to invoke its callback function, optionally
|
|
|
|
* with arbitrary arguments.
|
|
|
|
* \param o call the callback with \em o as the widget argument
|
|
|
|
* \param arg call the callback with \em arg as the user data argument
|
|
|
|
* \see callback()
|
|
|
|
*/
|
2004-07-27 20:02:21 +04:00
|
|
|
void do_callback(Fl_Widget* o,long arg) {callback_(o,(void*)arg); if (callback_ != default_callback) clear_changed();}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. */
|
2002-08-14 20:19:48 +04:00
|
|
|
int test_shortcut();
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. */
|
2007-11-19 19:21:48 +03:00
|
|
|
static char label_shortcut(const char *t);
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Internal use only. */
|
2002-08-14 20:19:48 +04:00
|
|
|
static int test_shortcut(const char*);
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Checks if w is a child of this widget.
|
|
|
|
* \param[in] w potential child widget
|
|
|
|
* \return Returns 1 if \em w is a child of this widget, or is
|
2008-08-12 19:04:35 +04:00
|
|
|
* equal to this widget. Returns 0 if \em w is NULL.
|
2008-08-11 12:35:34 +04:00
|
|
|
*/
|
|
|
|
int contains(const Fl_Widget *w) const ;
|
|
|
|
|
|
|
|
/** Check if this widget is a child of w.
|
|
|
|
* Returns 1 if this widget is a child of \em w, or is
|
|
|
|
* equal to \em w. Returns 0 if \em w is NULL.
|
|
|
|
* \param[in] w the possible parent widget.
|
|
|
|
* \see contains()
|
|
|
|
*/
|
|
|
|
int inside(const Fl_Widget* w) const {return w ? w->contains(this) : 0;}
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Schedule the drawing of the widget.
|
|
|
|
* Marks the widget as needing its draw() routine called.
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void redraw();
|
2008-08-12 18:30:43 +04:00
|
|
|
|
|
|
|
/** Schedule the drawing of the label.
|
|
|
|
* Marks the widget or the parent as needing a redraw for the label area of a widget.
|
|
|
|
*/
|
2002-10-04 19:59:29 +04:00
|
|
|
void redraw_label();
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Returns non-zero if draw() needs to be called.
|
|
|
|
* The damage value is actually a bit field that the widget
|
|
|
|
* subclass can use to figure out what parts to draw.
|
|
|
|
* \return a bitmap of flags describing the kind of damage to the widget
|
|
|
|
* \see damage(uchar), clear_damage(uchar)
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
uchar damage() const {return damage_;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Clear damage flags.
|
|
|
|
* Damage flags are cleared when parts of the widget drawing is repaired.
|
|
|
|
* \param[in] c bitmask of flags to clear
|
|
|
|
* \see damage(uchar), damage()
|
|
|
|
*/
|
2001-08-02 01:24:49 +04:00
|
|
|
void clear_damage(uchar c = 0) {damage_ = c;}
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Set the damage bits for the widget.
|
|
|
|
* Setting damage bits will schedule the widget for the next redraw.
|
|
|
|
* \param[in] c bitmask of flags to set
|
|
|
|
* \see damage(), clear_damage(uchar)
|
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
void damage(uchar c);
|
2008-08-11 12:35:34 +04:00
|
|
|
|
|
|
|
/** Set the damage bits for an area inside the widget.
|
|
|
|
* Setting damage bits will schedule the widget for the next redraw.
|
|
|
|
* \param[in] c bitmask of flags to set
|
|
|
|
* \param x, y, w, h size of damaged area
|
|
|
|
* \see damage(), clear_damage(uchar)
|
|
|
|
*/
|
|
|
|
void damage(uchar c, int x, int y, int w, int h);
|
|
|
|
|
2002-08-14 20:19:48 +04:00
|
|
|
void draw_label(int, int, int, int, Fl_Align) const;
|
2008-09-14 16:45:42 +04:00
|
|
|
/** Sets width ww, height hh accordingly with the labeltype size, label with images will return w() h() of the image. */
|
|
|
|
void measure_label(int& ww, int& hh) {label_.measure(ww, hh);}
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** Returns a pointer to the primary Fl_Window widget.
|
|
|
|
* \retval NULL if no window is associated with this widget.
|
2008-09-15 23:21:20 +04:00
|
|
|
* \note for an Fl_Window widget, this returns its <I>parent</I> window (if any), not <I>this</I> window.
|
2008-08-12 18:30:43 +04:00
|
|
|
*/
|
2002-08-14 20:19:48 +04:00
|
|
|
Fl_Window* window() const ;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-08-12 18:30:43 +04:00
|
|
|
/** For back compatibility only. */
|
2001-08-02 01:24:49 +04:00
|
|
|
Fl_Color color2() const {return (Fl_Color)color2_;}
|
2008-08-12 18:30:43 +04:00
|
|
|
/** For back compatibility only. */
|
2001-10-29 06:44:33 +03:00
|
|
|
void color2(unsigned a) {color2_ = a;}
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// reserved type numbers (necessary for my cheapo RTTI) start here.
|
|
|
|
// grep the header files for "RESERVED_TYPE" to find the next available
|
|
|
|
// number.
|
|
|
|
#define FL_RESERVED_TYPE 100
|
|
|
|
|
|
|
|
#endif
|
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
|
|
|
//
|