NTK 1.3.0
Fl_Widget.H
Go to the documentation of this file.
1//
2// "$Id: Fl_Widget.H 8623 2011-04-24 17:09:41Z AlbrechtS $"
3//
4// Widget header file for the Fast Light Tool Kit (FLTK).
5//
6// Copyright 1998-2010 by Bill Spitzak and others.
7//
8// This library is free software; you can redistribute it and/or
9// modify it under the terms of the GNU Library General Public
10// License as published by the Free Software Foundation; either
11// version 2 of the License, or (at your option) any later version.
12//
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16// Library General Public License for more details.
17//
18// You should have received a copy of the GNU Library General Public
19// License along with this library; if not, write to the Free Software
20// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21// USA.
22//
23// Please report all bugs and problems on the following page:
24//
25// http://www.fltk.org/str.php
26//
27
30
31#ifndef Fl_Widget_H
32#define Fl_Widget_H
33
34#include "Enumerations.H"
35
39#ifdef _WIN64
40#ifdef __GNUC__
41#include <stdint.h>
42#else
43#include <stddef.h> // M$VC
44#endif
45typedef intptr_t fl_intptr_t;
46typedef uintptr_t fl_uintptr_t;
47#else
48typedef long fl_intptr_t;
49typedef unsigned long fl_uintptr_t;
50#endif
51
52typedef unsigned char fl_damage_t;
53
54class Fl_Widget;
55class Fl_Window;
56class Fl_Group;
57class Fl_Image;
58
60typedef void (Fl_Callback )(Fl_Widget*, void*);
62typedef Fl_Callback* Fl_Callback_p; // needed for BORLAND
64typedef void (Fl_Callback0)(Fl_Widget*);
66typedef void (Fl_Callback1)(Fl_Widget*, long);
67
75struct FL_EXPORT Fl_Label {
77 const char* value;
92
94 void draw(int,int,int,int, Fl_Align) const ;
95 void measure(int &w, int &h) const ;
96};
97
98
111class FL_EXPORT Fl_Widget {
112 friend class Fl_Group;
113 friend class Fl_X;
114
115 Fl_Group* parent_;
116 Fl_Callback* callback_;
117 void* user_data_;
118 int x_,y_,w_,h_;
119 Fl_Label label_;
120 unsigned int flags_;
121 Fl_Color color_;
122 Fl_Color color2_;
123 uchar type_;
124 fl_damage_t damage_;
125 uchar box_;
126 uchar when_;
127
128 const char *tooltip_;
129
131 Fl_Widget(const Fl_Widget &);
133 Fl_Widget& operator=(const Fl_Widget &);
134
135protected:
136
147 Fl_Widget(int x, int y, int w, int h, const char *label=0L);
148
150 void x(int v) {x_ = v;}
152 void y(int v) {y_ = v;}
154 void w(int v) {w_ = v;}
156 void h(int v) {h_ = v;}
158 unsigned int flags() const {return flags_;}
160 void set_flag(unsigned int c) {flags_ |= c;}
162 void clear_flag(unsigned int c) {flags_ &= ~c;}
166 enum {
167 INACTIVE = 1<<0,
168 INVISIBLE = 1<<1,
169 OUTPUT = 1<<2,
170 NOBORDER = 1<<3,
172 NON_MODAL = 1<<5,
174 CHANGED = 1<<7,
175 OVERRIDE = 1<<8,
177 COPIED_LABEL = 1<<10,
179 MENU_WINDOW = 1<<12,
181 MODAL = 1<<14,
182 NO_OVERLAY = 1<<15,
185 // (space for more flags)
186 USERFLAG3 = 1<<29,
187 USERFLAG2 = 1<<30,
188 USERFLAG1 = 1<<31
189 };
190 void draw_box() const;
191 void draw_box(Fl_Boxtype t, Fl_Color c) const;
192 void draw_box(Fl_Boxtype t, int x,int y,int w,int h, Fl_Color c) const;
193 void draw_backdrop() const;
195 void draw_focus() {draw_focus(box(),x(),y(),w(),h());}
196 void draw_focus(Fl_Boxtype t, int x,int y,int w,int h) const;
197 void draw_label() const;
198 void draw_label(int, int, int, int) const;
199
200public:
201
210 virtual ~Fl_Widget();
211
228 virtual void draw() = 0;
229
246 virtual int handle(int event);
247
253 Fl_Group* parent() const {return parent_;}
254
263 void parent(Fl_Group* p) {parent_ = p;} // for hacks only, use Fl_Group::add()
264
273 uchar type() const {return type_;}
274
278 void type(uchar t) {type_ = t;}
279
283 int x() const {return x_;}
284
288 int y() const {return y_;}
289
293 int w() const {return w_;}
294
298 int h() const {return h_;}
299
319 virtual void resize(int x, int y, int w, int h);
320
322 int damage_resize(int,int,int,int);
323
331 void position(int X,int Y) {resize(X,Y,w_,h_);}
332
340 void size(int W,int H) {resize(x_,y_,W,H);}
341
347 Fl_Align align() const {return label_.align_;}
348
356 void align(Fl_Align alignment) {label_.align_ = alignment;}
357
362 Fl_Boxtype box() const {return (Fl_Boxtype)box_;}
363
371 void box(Fl_Boxtype new_box) {box_ = new_box;}
372
377 Fl_Color color() const {return color_;}
378
389 void color(Fl_Color bg) {color_ = bg;}
390
395 Fl_Color selection_color() const {return color2_;}
396
405 void selection_color(Fl_Color a) {color2_ = a;}
406
414 void color(Fl_Color bg, Fl_Color sel) {color_=bg; color2_=sel;}
415
420 const char* label() const {return label_.value;}
421
432 void label(const char* text);
433
444 void copy_label(const char *new_label);
445
449 void label(Fl_Labeltype a, const char* b) {label_.type = a; label_.value = b;}
450
455 Fl_Labeltype labeltype() const {return (Fl_Labeltype)label_.type;}
456
465 void labeltype(Fl_Labeltype a) {label_.type = a;}
466
471 Fl_Color labelcolor() const {return label_.color;}
472
477 void labelcolor(Fl_Color c) {label_.color=c;}
478
486 Fl_Font labelfont() const {return label_.font;}
487
495 void labelfont(Fl_Font f) {label_.font=f;}
496
501 Fl_Fontsize labelsize() const {return label_.size;}
502
507 void labelsize(Fl_Fontsize pix) {label_.size=pix;}
508
513 Fl_Image* image() {return label_.image;}
514 const Fl_Image* image() const {return label_.image;}
515
520 void image(Fl_Image* img) {label_.image=img;}
521
526 void image(Fl_Image& img) {label_.image=&img;}
527
532 Fl_Image* deimage() {return label_.deimage;}
533 const Fl_Image* deimage() const {return label_.deimage;}
534
539 void deimage(Fl_Image* img) {label_.deimage=img;}
540
545 void deimage(Fl_Image& img) {label_.deimage=&img;}
546
551 const char *tooltip() const {return tooltip_;}
552
553 void tooltip(const char *text); // see Fl_Tooltip
554 void copy_tooltip(const char *text); // see Fl_Tooltip
555
560 Fl_Callback_p callback() const {return callback_;}
561
567 void callback(Fl_Callback* cb, void* p) {callback_=cb; user_data_=p;}
568
573 void callback(Fl_Callback* cb) {callback_=cb;}
574
579 void callback(Fl_Callback0*cb) {callback_=(Fl_Callback*)cb;}
580
586 void callback(Fl_Callback1*cb, long p=0) {callback_=(Fl_Callback*)cb; user_data_=(void*)p;}
587
592 void* user_data() const {return user_data_;}
593
598 void user_data(void* v) {user_data_ = v;}
599
602 long argument() const {return (long)(fl_intptr_t)user_data_;}
603
608 void argument(long v) {user_data_ = (void*)v;}
609
618 Fl_When when() const {return (Fl_When)when_;}
619
651 void when(uchar i) {when_ = i;}
652
657 unsigned int visible() const {return !(flags_&INVISIBLE);}
658
663 int visible_r() const;
664
682 virtual void show();
683
687 virtual void hide();
688
693 void set_visible() {flags_ &= ~INVISIBLE;}
694
699 void clear_visible() {flags_ |= INVISIBLE;}
700
705 unsigned int active() const {return !(flags_&INACTIVE);}
706
711 int active_r() const;
712
718 void activate();
719
734 void deactivate();
735
744 unsigned int output() const {return (flags_&OUTPUT);}
745
749 void set_output() {flags_ |= OUTPUT;}
750
754 void clear_output() {flags_ &= ~OUTPUT;}
755
761 unsigned int takesevents() const {return !(flags_&(INACTIVE|INVISIBLE|OUTPUT));}
762
778 unsigned int changed() const {return flags_&CHANGED;}
779
783 void set_changed() {flags_ |= CHANGED;}
784
788 void clear_changed() {flags_ &= ~CHANGED;}
789
797 int take_focus();
798
805 void set_visible_focus() { flags_ |= VISIBLE_FOCUS; }
806
812
817 void visible_focus(int v) { if (v) set_visible_focus(); else clear_visible_focus(); }
818
823 unsigned int visible_focus() { return flags_ & VISIBLE_FOCUS; }
824
832 static void default_callback(Fl_Widget *cb, void *d);
833
838 void do_callback() {do_callback(this,user_data_);}
839
846 void do_callback(Fl_Widget* o,long arg) {do_callback(o,(void*)arg);}
847
848 // Causes a widget to invoke its callback function with arbitrary arguments.
849 // Documentation and implementation in Fl_Widget.cxx
850 void do_callback(Fl_Widget* o,void* arg=0);
851
852 /* Internal use only. */
853 int test_shortcut();
854 /* Internal use only. */
855 static unsigned int label_shortcut(const char *t);
856 /* Internal use only. */
857 static int test_shortcut(const char*, const bool require_alt = false);
858
864 int contains(const Fl_Widget *w) const ;
865
872 int inside(const Fl_Widget* w) const {return w ? w->contains(this) : 0;}
873
877 void redraw();
878
883 void redraw_label();
884
891 fl_damage_t damage() const {return damage_;}
892
905 void clear_damage(fl_damage_t c = 0) {damage_ = c;}
906
912 void damage(fl_damage_t c);
913
920 void damage(fl_damage_t c, int x, int y, int w, int h);
921
922 void draw_label(int, int, int, int, Fl_Align) const;
923
927 void measure_label(int& ww, int& hh) const {label_.measure(ww, hh);}
928
934 Fl_Window* window() const ;
935
959 virtual Fl_Group* as_group() {return 0;}
960
973 virtual Fl_Window* as_window() {return 0;}
974
985 virtual class Fl_Gl_Window* as_gl_window() {return 0;}
986
990 Fl_Color color2() const {return (Fl_Color)color2_;}
991
995 void color2(unsigned a) {color2_ = a;}
996};
997
1003#define FL_RESERVED_TYPE 100
1004
1005#endif
1006
1007//
1008// End of "$Id: Fl_Widget.H 8623 2011-04-24 17:09:41Z AlbrechtS $".
1009//
This file contains type definitions and general enumerations.
int Fl_Font
A font number is an index into the internal font table.
Definition Enumerations.H:707
unsigned Fl_Align
FLTK type for alignment control.
Definition Enumerations.H:658
unsigned int Fl_Color
an FLTK color value
Definition Enumerations.H:764
Fl_Labeltype
The labeltype() method sets the type of the label.
Definition Enumerations.H:601
int Fl_Fontsize
Size of a font in pixels.
Definition Enumerations.H:736
Fl_When
These constants determine when a callback is performed.
Definition Enumerations.H:313
Fl_Boxtype
Definition Enumerations.H:472
void Fl_Callback(Fl_Widget *, void *)
Default callback type definition for all fltk widgets (by far the most used)
Definition Fl_Widget.H:60
void Fl_Callback0(Fl_Widget *)
One parameter callback type definition passing only the widget.
Definition Fl_Widget.H:64
void Fl_Callback1(Fl_Widget *, long)
Callback type definition passing the widget and a long data value.
Definition Fl_Widget.H:66
long fl_intptr_t
Definition Fl_Widget.H:48
Fl_Callback * Fl_Callback_p
Default callback type pointer definition for all fltk widgets.
Definition Fl_Widget.H:62
The Fl_Gl_Window widget sets things up so OpenGL works.
Definition Fl_Gl_Window.H:65
The Fl_Group class is the FLTK container widget.
Definition Fl_Group.H:45
Fl_Image is the base class used for caching and drawing all kinds of images in FLTK.
Definition Fl_Image.H:51
Fl_Widget is the base class for all widgets in FLTK.
Definition Fl_Widget.H:111
Fl_Color labelcolor() const
Gets the label color.
Definition Fl_Widget.H:471
virtual class Fl_Gl_Window * as_gl_window()
Returns an Fl_Gl_Window pointer if this widget is an Fl_Gl_Window.
Definition Fl_Widget.H:985
Fl_Font labelfont() const
Gets the font to use.
Definition Fl_Widget.H:486
Fl_Color color() const
Gets the background color of the widget.
Definition Fl_Widget.H:377
int inside(const Fl_Widget *w) const
Checks if this widget is a child of w.
Definition Fl_Widget.H:872
void clear_damage(fl_damage_t c=0)
Clears or sets the damage flags.
Definition Fl_Widget.H:905
void clear_visible()
Hides the widget.
Definition Fl_Widget.H:699
unsigned int visible_focus()
Checks whether this widget has a visible focus.
Definition Fl_Widget.H:823
virtual void draw()=0
Draws the widget.
long argument() const
Gets the current user data (long) argument that is passed to the callback function.
Definition Fl_Widget.H:602
void user_data(void *v)
Sets the user data for this widget.
Definition Fl_Widget.H:598
void image(Fl_Image *img)
Sets the image to use as part of the widget label.
Definition Fl_Widget.H:520
void callback(Fl_Callback *cb)
Sets the current callback function for the widget.
Definition Fl_Widget.H:573
void deimage(Fl_Image *img)
Sets the image to use as part of the widget label.
Definition Fl_Widget.H:539
void do_callback()
Calls the widget callback.
Definition Fl_Widget.H:838
Fl_Image * deimage()
Gets the image that is used as part of the widget label.
Definition Fl_Widget.H:532
void argument(long v)
Sets the current user data (long) argument that is passed to the callback function.
Definition Fl_Widget.H:608
void clear_output()
Sets a widget to accept input.
Definition Fl_Widget.H:754
void box(Fl_Boxtype new_box)
Sets the box type for the widget.
Definition Fl_Widget.H:371
const char * label() const
Gets the current label text.
Definition Fl_Widget.H:420
int y() const
Gets the widget position in its window.
Definition Fl_Widget.H:288
void clear_visible_focus()
Disables keyboard focus navigation with this widget.
Definition Fl_Widget.H:811
int h() const
Gets the widget height.
Definition Fl_Widget.H:298
void color(Fl_Color bg, Fl_Color sel)
Sets the background and selection color of the widget.
Definition Fl_Widget.H:414
unsigned int flags() const
Gets the widget flags mask.
Definition Fl_Widget.H:158
void draw_focus()
draws a focus rectangle around the widget
Definition Fl_Widget.H:195
void visible_focus(int v)
Modifies keyboard focus navigation.
Definition Fl_Widget.H:817
Fl_Align align() const
Gets the label alignment.
Definition Fl_Widget.H:347
void parent(Fl_Group *p)
Internal use only - "for hacks only".
Definition Fl_Widget.H:263
virtual Fl_Group * as_group()
Returns an Fl_Group pointer if this widget is an Fl_Group.
Definition Fl_Widget.H:959
void set_flag(unsigned int c)
Sets a flag in the flags mask.
Definition Fl_Widget.H:160
void deimage(Fl_Image &img)
Sets the image to use as part of the widget label.
Definition Fl_Widget.H:545
const char * tooltip() const
Gets the current tooltip text.
Definition Fl_Widget.H:551
void color(Fl_Color bg)
Sets the background color of the widget.
Definition Fl_Widget.H:389
void align(Fl_Align alignment)
Sets the label alignment.
Definition Fl_Widget.H:356
void set_changed()
Marks the value of the widget as changed.
Definition Fl_Widget.H:783
void set_visible()
Makes the widget visible.
Definition Fl_Widget.H:693
void do_callback(Fl_Widget *o, long arg)
Calls the widget callback.
Definition Fl_Widget.H:846
void measure_label(int &ww, int &hh) const
Sets width ww and height hh accordingly with the label size.
Definition Fl_Widget.H:927
void callback(Fl_Callback1 *cb, long p=0)
Sets the current callback function for the widget.
Definition Fl_Widget.H:586
void labeltype(Fl_Labeltype a)
Sets the label type.
Definition Fl_Widget.H:465
void set_output()
Sets a widget to output only.
Definition Fl_Widget.H:749
void * user_data() const
Gets the user data for this widget.
Definition Fl_Widget.H:592
void labelsize(Fl_Fontsize pix)
Sets the font size in pixels.
Definition Fl_Widget.H:507
int w() const
Gets the widget width.
Definition Fl_Widget.H:293
virtual int handle(int event)
Handles the specified event.
Definition Fl_Widget.cxx:106
Fl_Boxtype box() const
Gets the box type of the widget.
Definition Fl_Widget.H:362
Fl_Fontsize labelsize() const
Gets the font size in pixels.
Definition Fl_Widget.H:501
Fl_Color selection_color() const
Gets the selection color.
Definition Fl_Widget.H:395
void label(Fl_Labeltype a, const char *b)
Shortcut to set the label text and type in one call.
Definition Fl_Widget.H:449
void labelcolor(Fl_Color c)
Sets the label color.
Definition Fl_Widget.H:477
virtual Fl_Window * as_window()
Returns an Fl_Window pointer if this widget is an Fl_Window.
Definition Fl_Widget.H:973
void callback(Fl_Callback0 *cb)
Sets the current callback function for the widget.
Definition Fl_Widget.H:579
void selection_color(Fl_Color a)
Sets the selection color.
Definition Fl_Widget.H:405
void clear_changed()
Marks the value of the widget as unchanged.
Definition Fl_Widget.H:788
Fl_Labeltype labeltype() const
Gets the label type.
Definition Fl_Widget.H:455
void x(int v)
Internal use only.
Definition Fl_Widget.H:150
unsigned int visible() const
Returns whether a widget is visible.
Definition Fl_Widget.H:657
unsigned int output() const
Returns if a widget is used for output only.
Definition Fl_Widget.H:744
Fl_Callback_p callback() const
Gets the current callback function for the widget.
Definition Fl_Widget.H:560
void position(int X, int Y)
Repositions the window or widget.
Definition Fl_Widget.H:331
virtual void resize(int x, int y, int w, int h)
Changes the size or position of the widget.
Definition Fl_Widget.cxx:140
void when(uchar i)
Sets the flags used to decide when a callback is called.
Definition Fl_Widget.H:651
Fl_Group * parent() const
Returns a pointer to the parent widget.
Definition Fl_Widget.H:253
void set_visible_focus()
Enables keyboard focus navigation with this widget.
Definition Fl_Widget.H:805
void type(uchar t)
Sets the widget type.
Definition Fl_Widget.H:278
Fl_Color color2() const
For back compatibility only.
Definition Fl_Widget.H:990
Fl_Image * image()
Gets the image that is used as part of the widget label.
Definition Fl_Widget.H:513
Fl_When when() const
Returns the conditions under which the callback is called.
Definition Fl_Widget.H:618
void w(int v)
Internal use only.
Definition Fl_Widget.H:154
void callback(Fl_Callback *cb, void *p)
Sets the current callback function for the widget.
Definition Fl_Widget.H:567
fl_damage_t damage() const
Returns non-zero if draw() needs to be called.
Definition Fl_Widget.H:891
void labelfont(Fl_Font f)
Sets the font to use.
Definition Fl_Widget.H:495
uchar type() const
Gets the widget type.
Definition Fl_Widget.H:273
unsigned int active() const
Returns whether the widget is active.
Definition Fl_Widget.H:705
void size(int W, int H)
Changes the size of the widget.
Definition Fl_Widget.H:340
unsigned int takesevents() const
Returns if the widget is able to take events.
Definition Fl_Widget.H:761
void color2(unsigned a)
For back compatibility only.
Definition Fl_Widget.H:995
void y(int v)
Internal use only.
Definition Fl_Widget.H:152
@ OVERRIDE
position window on top (Fl_Window)
Definition Fl_Widget.H:175
@ COPIED_TOOLTIP
the widget tooltip is internally copied, its destruction is handled by the widget
Definition Fl_Widget.H:184
@ USERFLAG2
reserved for 3rd party extensions
Definition Fl_Widget.H:187
@ INACTIVE
the widget can't receive focus, and is disabled but potentially visible
Definition Fl_Widget.H:167
@ FORCE_POSITION
don't let the window manager position the window (Fl_Window)
Definition Fl_Widget.H:171
@ NOBORDER
don't draw a decoration (Fl_Window)
Definition Fl_Widget.H:170
@ TOOLTIP_WINDOW
a temporary popup, transparent to events, and dismissed easily (Fl_Window)
Definition Fl_Widget.H:180
@ GROUP_RELATIVE
position this widget relative to the parent group, not to the window
Definition Fl_Widget.H:183
@ USERFLAG3
reserved for 3rd party extensions
Definition Fl_Widget.H:186
@ USERFLAG1
reserved for 3rd party extensions
Definition Fl_Widget.H:188
@ CHANGED
the widget value changed
Definition Fl_Widget.H:174
@ MODAL
a window blocking input to all other winows (Fl_Window)
Definition Fl_Widget.H:181
@ MENU_WINDOW
a temporary popup window, dismissed by clicking outside (Fl_Window)
Definition Fl_Widget.H:179
@ CLIP_CHILDREN
all drawing within this widget will be clipped (Fl_Group)
Definition Fl_Widget.H:178
@ SHORTCUT_LABEL
the label contains a shortcut we need to draw
Definition Fl_Widget.H:173
@ INVISIBLE
the widget is not drawn, but can receive a few special events
Definition Fl_Widget.H:168
@ VISIBLE_FOCUS
accepts keyboard focus navigation if the widget can have the focus
Definition Fl_Widget.H:176
@ NON_MODAL
this is a hovering toolbar window (Fl_Window)
Definition Fl_Widget.H:172
@ COPIED_LABEL
the widget label is internally copied, its destruction is handled by the widget
Definition Fl_Widget.H:177
@ NO_OVERLAY
window not using a hardware overlay plane (Fl_Menu_Window)
Definition Fl_Widget.H:182
@ OUTPUT
for output only
Definition Fl_Widget.H:169
void clear_flag(unsigned int c)
Clears a flag in the flags mask.
Definition Fl_Widget.H:162
void h(int v)
Internal use only.
Definition Fl_Widget.H:156
int x() const
Gets the widget position in its window.
Definition Fl_Widget.H:283
unsigned int changed() const
Checks if the widget value changed since the last callback.
Definition Fl_Widget.H:778
void image(Fl_Image &img)
Sets the image to use as part of the widget label.
Definition Fl_Widget.H:526
This widget produces an actual window.
Definition Fl_Window.H:58
unsigned char uchar
unsigned char
Definition fl_types.h:39
This struct stores all information for a text or mixed graphics label.
Definition Fl_Widget.H:75
void draw(int, int, int, int, Fl_Align) const
Draws the label aligned to the given box.
Definition fl_labeltype.cxx:86
uchar type
type of label.
Definition Fl_Widget.H:91
Fl_Image * deimage
optional image for a deactivated label
Definition Fl_Widget.H:81
void measure(int &w, int &h) const
Measures the size of the label.
Definition fl_labeltype.cxx:95
Fl_Fontsize size
size of label font
Definition Fl_Widget.H:85
const char * value
label text
Definition Fl_Widget.H:77
Fl_Align align_
alignment of label
Definition Fl_Widget.H:89
Fl_Color color
text color
Definition Fl_Widget.H:87
Fl_Image * image
optional image for an active label
Definition Fl_Widget.H:79
Fl_Font font
label font used in text
Definition Fl_Widget.H:83