32 #ifndef Fl_Enumerations_H
33 #define Fl_Enumerations_H
35 # include "Fl_Export.H"
51 #define FL_MAJOR_VERSION 1
58 #define FL_MINOR_VERSION 3
65 #define FL_PATCH_VERSION 0
78 #define FL_VERSION ((double)FL_MAJOR_VERSION + \
79 (double)FL_MINOR_VERSION * 0.01 + \
80 (double)FL_PATCH_VERSION * 0.0001)
333 #define FL_Button 0xfee8
334 #define FL_BackSpace 0xff08
335 #define FL_Tab 0xff09
336 #define FL_Enter 0xff0d
337 #define FL_Pause 0xff13
338 #define FL_Scroll_Lock 0xff14
339 #define FL_Escape 0xff1b
340 #define FL_Home 0xff50
341 #define FL_Left 0xff51
343 #define FL_Right 0xff53
344 #define FL_Down 0xff54
345 #define FL_Page_Up 0xff55
346 #define FL_Page_Down 0xff56
347 #define FL_End 0xff57
348 #define FL_Print 0xff61
349 #define FL_Insert 0xff63
350 #define FL_Menu 0xff67
351 #define FL_Help 0xff68
352 #define FL_Num_Lock 0xff7f
354 #define FL_KP_Enter 0xff8d
355 #define FL_KP_Last 0xffbd
357 #define FL_F_Last 0xffe0
358 #define FL_Shift_L 0xffe1
359 #define FL_Shift_R 0xffe2
360 #define FL_Control_L 0xffe3
361 #define FL_Control_R 0xffe4
362 #define FL_Caps_Lock 0xffe5
363 #define FL_Meta_L 0xffe7
364 #define FL_Meta_R 0xffe8
365 #define FL_Alt_L 0xffe9
366 #define FL_Alt_R 0xffea
367 #define FL_Delete 0xffff
373 #define FL_Volume_Down 0xEF11
374 #define FL_Volume_Mute 0xEF12
375 #define FL_Volume_Up 0xEF13
376 #define FL_Media_Play 0xEF14
377 #define FL_Media_Stop 0xEF15
378 #define FL_Media_Prev 0xEF16
379 #define FL_Media_Next 0xEF17
380 #define FL_Home_Page 0xEF18
381 #define FL_Mail 0xEF19
382 #define FL_Search 0xEF1B
383 #define FL_Back 0xEF26
384 #define FL_Forward 0xEF27
385 #define FL_Stop 0xEF28
386 #define FL_Refresh 0xEF29
387 #define FL_Sleep 0xEF2F
388 #define FL_Favorites 0xEF30
401 #define FL_LEFT_MOUSE 1
402 #define FL_MIDDLE_MOUSE 2
403 #define FL_RIGHT_MOUSE 3
418 #define FL_SHIFT 0x00010000
419 #define FL_CAPS_LOCK 0x00020000
420 #define FL_CTRL 0x00040000
421 #define FL_ALT 0x00080000
422 #define FL_NUM_LOCK 0x00100000
423 // most X servers do this?
424 #define FL_META 0x00400000
425 // correct for XFree86
426 #define FL_SCROLL_LOCK 0x00800000
427 // correct for XFree86
428 #define FL_BUTTON1 0x01000000
429 #define FL_BUTTON2 0x02000000
430 #define FL_BUTTON3 0x04000000
431 #define FL_BUTTONS 0x7f000000
432 #define FL_BUTTON(n) (0x00800000<<(n))
434 #define FL_KEY_MASK 0x0000ffff
435 // FIXME: Unicode needs 24 bits!
438 # define FL_COMMAND FL_META
439 # define FL_CONTROL FL_CTRL
441 # define FL_COMMAND FL_CTRL
442 # define FL_CONTROL FL_META
516 extern FL_EXPORT
Fl_Boxtype fl_define_FL_ROUND_UP_BOX();
517 #define FL_ROUND_UP_BOX fl_define_FL_ROUND_UP_BOX()
518 #define FL_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_ROUND_UP_BOX()+1)
519 extern FL_EXPORT
Fl_Boxtype fl_define_FL_SHADOW_BOX();
520 #define FL_SHADOW_BOX fl_define_FL_SHADOW_BOX()
521 #define FL_SHADOW_FRAME (Fl_Boxtype)(fl_define_FL_SHADOW_BOX()+2)
522 extern FL_EXPORT
Fl_Boxtype fl_define_FL_ROUNDED_BOX();
523 #define FL_ROUNDED_BOX fl_define_FL_ROUNDED_BOX()
524 #define FL_ROUNDED_FRAME (Fl_Boxtype)(fl_define_FL_ROUNDED_BOX()+2)
525 extern FL_EXPORT
Fl_Boxtype fl_define_FL_RFLAT_BOX();
526 #define FL_RFLAT_BOX fl_define_FL_RFLAT_BOX()
527 extern FL_EXPORT
Fl_Boxtype fl_define_FL_RSHADOW_BOX();
528 #define FL_RSHADOW_BOX fl_define_FL_RSHADOW_BOX()
529 extern FL_EXPORT
Fl_Boxtype fl_define_FL_DIAMOND_BOX();
530 #define FL_DIAMOND_UP_BOX fl_define_FL_DIAMOND_BOX()
531 #define FL_DIAMOND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_DIAMOND_BOX()+1)
532 extern FL_EXPORT
Fl_Boxtype fl_define_FL_OVAL_BOX();
533 #define FL_OVAL_BOX fl_define_FL_OVAL_BOX()
534 #define FL_OSHADOW_BOX (Fl_Boxtype)(fl_define_FL_OVAL_BOX()+1)
535 #define FL_OVAL_FRAME (Fl_Boxtype)(fl_define_FL_OVAL_BOX()+2)
536 #define FL_OFLAT_BOX (Fl_Boxtype)(fl_define_FL_OVAL_BOX()+3)
538 extern FL_EXPORT
Fl_Boxtype fl_define_FL_PLASTIC_UP_BOX();
539 #define FL_PLASTIC_UP_BOX fl_define_FL_PLASTIC_UP_BOX()
540 #define FL_PLASTIC_DOWN_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+1)
541 #define FL_PLASTIC_UP_FRAME (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+2)
542 #define FL_PLASTIC_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+3)
543 #define FL_PLASTIC_THIN_UP_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+4)
544 #define FL_PLASTIC_THIN_DOWN_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+5)
545 #define FL_PLASTIC_ROUND_UP_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+6)
546 #define FL_PLASTIC_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+7)
548 extern FL_EXPORT
Fl_Boxtype fl_define_FL_GTK_UP_BOX();
549 #define FL_GTK_UP_BOX fl_define_FL_GTK_UP_BOX()
550 #define FL_GTK_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+1)
551 #define FL_GTK_UP_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+2)
552 #define FL_GTK_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+3)
553 #define FL_GTK_THIN_UP_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+4)
554 #define FL_GTK_THIN_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+5)
555 #define FL_GTK_THIN_UP_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+6)
556 #define FL_GTK_THIN_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+7)
557 #define FL_GTK_ROUND_UP_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+8)
558 #define FL_GTK_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+9)
567 return (
Fl_Boxtype)((b<FL_UP_BOX||b%4>1)?b:(b-2));
587 #define FL_FRAME FL_ENGRAVED_FRAME
588 #define FL_FRAME_BOX FL_ENGRAVED_BOX
589 #define FL_CIRCLE_BOX FL_ROUND_DOWN_BOX
590 #define FL_DIAMOND_BOX FL_DIAMOND_DOWN_BOX
623 #define FL_SYMBOL_LABEL FL_NORMAL_LABEL
624 extern Fl_Labeltype FL_EXPORT fl_define_FL_SHADOW_LABEL();
625 #define FL_SHADOW_LABEL fl_define_FL_SHADOW_LABEL()
626 extern Fl_Labeltype FL_EXPORT fl_define_FL_ENGRAVED_LABEL();
627 #define FL_ENGRAVED_LABEL fl_define_FL_ENGRAVED_LABEL()
628 extern Fl_Labeltype FL_EXPORT fl_define_FL_EMBOSSED_LABEL();
629 #define FL_EMBOSSED_LABEL fl_define_FL_EMBOSSED_LABEL()
697 const Fl_Align FL_ALIGN_LEFT_TOP = 0x0007;
698 const Fl_Align FL_ALIGN_RIGHT_TOP = 0x000b;
699 const Fl_Align FL_ALIGN_LEFT_BOTTOM = 0x000d;
700 const Fl_Align FL_ALIGN_RIGHT_BOTTOM = 0x000e;
702 const Fl_Align FL_ALIGN_POSITION_MASK = 0x000f;
703 const Fl_Align FL_ALIGN_IMAGE_MASK = 0x0320;
784 const Fl_Color FL_BACKGROUND_COLOR = 49;
803 const Fl_Color FL_DARK_MAGENTA = 152;
809 #define FL_FREE_COLOR (Fl_Color)16
810 #define FL_NUM_FREE_COLOR 16
811 #define FL_GRAY_RAMP (Fl_Color)32
812 #define FL_NUM_GRAY 24
813 #define FL_GRAY FL_BACKGROUND_COLOR
814 #define FL_COLOR_CUBE (Fl_Color)56
816 #define FL_NUM_GREEN 8
817 #define FL_NUM_BLUE 5
833 if (!r && !g && !b)
return FL_BLACK;
834 else return (
Fl_Color)(((((r << 8) | g) << 8) | b) << 8);
839 if (!g)
return FL_BLACK;
840 else return (
Fl_Color)(((((g << 8) | g) << 8) | g) << 8);
868 return (
Fl_Color)((b*FL_NUM_RED + r) * FL_NUM_GREEN + g + FL_COLOR_CUBE);}
934 #define FL_IMAGE_WITH_ALPHA 0x40000000
948 # ifdef FLTK_1_0_COMPAT
949 # define contrast fl_contrast
950 # define down fl_down
951 # define frame fl_frame
952 # define inactive fl_inactive
953 # endif // FLTK_1_0_COMPAT
const Fl_Align FL_ALIGN_CLIP
All parts of the label that are lager than the widget will not be drawn .
Definition: Enumerations.H:684
watch or hourglass.
Definition: Enumerations.H:886
invisible.
Definition: Enumerations.H:896
Do the callback when the button or key is released and the value changes.
Definition: Enumerations.H:309
Fl_Boxtype fl_box(Fl_Boxtype b)
Get the filled version of a frame.
Definition: Enumerations.H:566
gtk+ version of FL_DOWN_RAME
Definition: Enumerations.H:507
The Fl::selection_owner() will get this event before the selection is moved to another widget...
Definition: Enumerations.H:268
Fl_Color fl_darker(Fl_Color c)
Returns a darker version of the specified color.
Definition: Enumerations.H:829
Fl_Cursor
The following constants define the mouse cursors that are available in FLTK.
Definition: Enumerations.H:882
Fl_Boxtype fl_frame(Fl_Boxtype b)
Get the unfilled, frame only version of a box.
Definition: Enumerations.H:582
const Fl_Font FL_FREE_FONT
first one to allocate
Definition: Enumerations.H:731
const Fl_Font FL_HELVETICA_BOLD
Helvetica (or Arial) bold.
Definition: Enumerations.H:715
plastic version of FL_THIN_DOWN_BOX
Definition: Enumerations.H:501
const Fl_Font FL_COURIER_ITALIC
Courier italic.
Definition: Enumerations.H:720
const Fl_Color FL_BACKGROUND2_COLOR
the default background color for text, list, and valuator widgets
Definition: Enumerations.H:773
for back compatibility.
Definition: Enumerations.H:903
gtk+ version of FL_ROUND_DOWN_BOX
Definition: Enumerations.H:513
Call the callback if an exception occurs on the file.
Definition: Enumerations.H:913
Second user-defined damage bit.
Definition: Enumerations.H:943
const Fl_Align FL_ALIGN_IMAGE_NEXT_TO_TEXT
If the label contains an image, draw the text to the right of the image.
Definition: Enumerations.H:688
see figure 1
Definition: Enumerations.H:489
see figure 1
Definition: Enumerations.H:481
see figure 1
Definition: Enumerations.H:491
You should get this event some time after you call Fl::paste().
Definition: Enumerations.H:261
plastic version of FL_UP_FRAME
Definition: Enumerations.H:498
question mark.
Definition: Enumerations.H:889
const Fl_Font FL_TIMES_BOLD
Times roman bold.
Definition: Enumerations.H:723
A mouse button has gone down with the mouse pointing at this widget.
Definition: Enumerations.H:114
This indicates an attempt to give a widget the keyboard focus.
Definition: Enumerations.H:161
hand (uparrow on MSWindows).
Definition: Enumerations.H:888
see figure 1
Definition: Enumerations.H:469
Fl_Color fl_gray_ramp(int i)
Returns a gray color value from black (i == 0) to white (i == FL_NUM_GRAY - 1).
Definition: Enumerations.H:851
const Fl_Font FL_ZAPF_DINGBATS
Zapf-dingbats font.
Definition: Enumerations.H:729
Everything needs to be redrawn.
Definition: Enumerations.H:944
see figure 1
Definition: Enumerations.H:480
This widget is no longer active, due to Fl_Widget::deactivate() being called on it or one of its pare...
Definition: Enumerations.H:234
This widget is no longer visible, due to Fl_Widget::hide() being called on it or one of its parents...
Definition: Enumerations.H:247
const Fl_Align FL_ALIGN_IMAGE_OVER_TEXT
If the label contains an image, draw the text below the image.
Definition: Enumerations.H:682
Fl_Color fl_lighter(Fl_Color c)
Returns a lighter version of the specified color.
Definition: Enumerations.H:826
This widget is now active, due to Fl_Widget::activate() being called on it or one of its parents...
Definition: Enumerations.H:239
Do the callback whenever the user interacts with the widget.
Definition: Enumerations.H:308
see figure 1
Definition: Enumerations.H:494
const Fl_Font FL_COURIER
Courier normal.
Definition: Enumerations.H:718
Do the callback when the user presses the ENTER key and the value changes.
Definition: Enumerations.H:311
Fl_When
These constants determine when a callback is performed.
Definition: Enumerations.H:305
see figure 1
Definition: Enumerations.H:471
see figure 1
Definition: Enumerations.H:476
const Fl_Color FL_FOREGROUND_COLOR
the default foreground color (0) used for labels and text
Definition: Enumerations.H:772
?
Definition: Enumerations.H:614
see figure 1
Definition: Enumerations.H:495
for back compatibility.
Definition: Enumerations.H:902
plastic version of FL_DOWN_BOX
Definition: Enumerations.H:497
The user has released the mouse button dropping data into the widget.
Definition: Enumerations.H:295
const Fl_Color FL_INACTIVE_COLOR
the inactive foreground color
Definition: Enumerations.H:774
Fl_Color fl_rgb_color(uchar r, uchar g, uchar b)
Returns the 24-bit color value closest to r, g, b.
Definition: Enumerations.H:832
The mouse has been moved inside a widget while dragging data.
Definition: Enumerations.H:285
gtk+ version of FL_THIN_DOWN_FRAME
Definition: Enumerations.H:511
Fl_Mode
visual types and Fl_Gl_Window::mode() (values match Glut)
Definition: Enumerations.H:917
Fl_Damage
Damage masks.
Definition: Enumerations.H:937
A mouse button has been released.
Definition: Enumerations.H:122
see figure 1
Definition: Enumerations.H:490
A key was pressed (FL_KEYDOWN) or released (FL_KEYUP).
Definition: Enumerations.H:188
see figure 1
Definition: Enumerations.H:475
FL_EXPORT Fl_Color fl_contrast(Fl_Color fg, Fl_Color bg)
Returns a color that contrasts with the background color.
Definition: fl_color.cxx:444
?
Definition: Enumerations.H:612
A child needs to be redrawn.
Definition: Enumerations.H:938
see figure 1
Definition: Enumerations.H:486
diagonal arrow.
Definition: Enumerations.H:894
Do the callback only when the widget value changes.
Definition: Enumerations.H:307
const Fl_Font FL_ITALIC
add this to helvetica, courier, or times
Definition: Enumerations.H:733
const Fl_Align FL_ALIGN_CENTER
Align the label horizontally in the middle.
Definition: Enumerations.H:665
plastic version of FL_THIN_UP_BOX
Definition: Enumerations.H:500
Fl_Event
Every time a user moves the mouse pointer, clicks a button, or presses a key, an event is generated a...
Definition: Enumerations.H:99
Fl_Boxtype
Definition: Enumerations.H:464
see figure 1
Definition: Enumerations.H:484
diagonal arrow.
Definition: Enumerations.H:895
The user has moved the mouse wheel.
Definition: Enumerations.H:273
see figure 1
Definition: Enumerations.H:473
const Fl_Align FL_ALIGN_INSIDE
Draw the label inside of the widget.
Definition: Enumerations.H:678
gtk+ version of FL_ROUND_UP_BOX
Definition: Enumerations.H:512
see figure 1
Definition: Enumerations.H:482
The mouse has been moved to point at this widget.
Definition: Enumerations.H:279
see figure 1
Definition: Enumerations.H:468
up/down arrow.
Definition: Enumerations.H:892
draws the text (0)
Definition: Enumerations.H:607
Key release event.
Definition: Enumerations.H:198
gtk+ version of FL_UP_BOX
Definition: Enumerations.H:504
see figure 1
Definition: Enumerations.H:479
I-beam.
Definition: Enumerations.H:887
const Fl_Font FL_TIMES_BOLD_ITALIC
Times roman bold-italic.
Definition: Enumerations.H:725
plastic version of FL_UP_BOX
Definition: Enumerations.H:496
The user clicked the close button of a window.
Definition: Enumerations.H:205
gtk+ version of FL_DOWN_BOX
Definition: Enumerations.H:505
for back compatibility.
Definition: Enumerations.H:904
draws a drop shadow under the text
Definition: Enumerations.H:609
see figure 1
Definition: Enumerations.H:492
FL_EXPORT Fl_Color fl_inactive(Fl_Color c)
Returns the inactive, dimmed version of the given color.
Definition: fl_color.cxx:432
The Fl_Scroll widget was scrolled.
Definition: Enumerations.H:940
see figure 1
Definition: Enumerations.H:478
const Fl_Font FL_COURIER_BOLD
Courier bold.
Definition: Enumerations.H:719
nothing is drawn at all, this box is invisible
Definition: Enumerations.H:466
for back compatibility.
Definition: Enumerations.H:898
const Fl_Font FL_SCREEN_BOLD
Default monospaced bold screen font.
Definition: Enumerations.H:728
left/right arrow.
Definition: Enumerations.H:893
draws edges as though the text is engraved
Definition: Enumerations.H:610
Do the callback when the button or key is released, even if the value doesn't change.
Definition: Enumerations.H:310
The overlay planes need to be redrawn.
Definition: Enumerations.H:941
const Fl_Font FL_BOLD_ITALIC
add this to helvetica, courier, or times
Definition: Enumerations.H:734
gtk+ version of FL_THIN_DOWN_BOX
Definition: Enumerations.H:509
This event is sent to the previous Fl::focus() widget when another widget gets the focus or the windo...
Definition: Enumerations.H:166
const Fl_Font FL_HELVETICA_ITALIC
Helvetica (or Arial) oblique.
Definition: Enumerations.H:716
for back compatibility.
Definition: Enumerations.H:905
Call the callback when data can be written without blocking.
Definition: Enumerations.H:912
an arrow pointer.
Definition: Enumerations.H:884
for back compatibility.
Definition: Enumerations.H:901
int Fl_Fontsize
Size of a font in pixels.
Definition: Enumerations.H:741
Never call the callback.
Definition: Enumerations.H:306
The mouse has moved with a button held down.
Definition: Enumerations.H:146
const Fl_Color FL_SELECTION_COLOR
the default selection/highlight color
Definition: Enumerations.H:775
see figure 1
Definition: Enumerations.H:485
plastic version of FL_DOWN_FRAME
Definition: Enumerations.H:499
const Fl_Align FL_ALIGN_WRAP
Wrap text that does not fit the width of the widget.
Definition: Enumerations.H:686
gtk+ version of FL_UP_FRAME
Definition: Enumerations.H:506
4-pointed arrow.
Definition: Enumerations.H:890
see figure 1
Definition: Enumerations.H:470
const Fl_Font FL_BOLD
add this to helvetica, courier, or times
Definition: Enumerations.H:732
crosshair.
Definition: Enumerations.H:885
FL_EXPORT Fl_Fontsize FL_NORMAL_SIZE
normal font size
Definition: Fl_Widget.cxx:111
unsigned int Fl_Color
an FLTK color value
Definition: Enumerations.H:769
Fl_Labeltype
The labeltype() method sets the type of the label.
Definition: Enumerations.H:606
This widget is visible again, due to Fl_Widget::show() being called on it or one of its parents...
Definition: Enumerations.H:255
the default cursor, usually an arrow.
Definition: Enumerations.H:883
This file contains simple "C"-style type definitions.
int Fl_Font
A font number is an index into the internal font table.
Definition: Enumerations.H:712
const Fl_Align FL_ALIGN_TOP
Align the label at the top of the widget.
Definition: Enumerations.H:668
draws the icon associated with the text
Definition: Enumerations.H:613
see figure 1
Definition: Enumerations.H:472
a flat box
Definition: Enumerations.H:467
unsigned Fl_Align
FLTK type for alignment control.
Definition: Enumerations.H:663
const Fl_Font FL_SYMBOL
Standard symbol font.
Definition: Enumerations.H:726
The mouse has moved without any mouse buttons held down.
Definition: Enumerations.H:213
The window was exposed.
Definition: Enumerations.H:939
plastic version of FL_ROUND_UP_BOX
Definition: Enumerations.H:502
Fl_Color fl_color_cube(int r, int g, int b)
Returns a color out of the color cube.
Definition: Enumerations.H:867
see figure 1
Definition: Enumerations.H:477
see figure 1
Definition: Enumerations.H:493
const Fl_Font FL_HELVETICA_BOLD_ITALIC
Helvetica (or Arial) bold-oblique.
Definition: Enumerations.H:717
see figure 1
Definition: Enumerations.H:488
const Fl_Font FL_HELVETICA
Helvetica (or Arial) normal (0)
Definition: Enumerations.H:714
gtk+ version of FL_THIN_UP_BOX
Definition: Enumerations.H:508
Do the callback when the user presses the ENTER key, even if the value doesn't change.
Definition: Enumerations.H:312
?
Definition: Enumerations.H:313
for back compatibility.
Definition: Enumerations.H:899
does nothing
Definition: Enumerations.H:608
see figure 1
Definition: Enumerations.H:487
first free labeltype to use for creating own labeltypes
Definition: Enumerations.H:616
FL_EXPORT Fl_Color fl_color_average(Fl_Color c1, Fl_Color c2, float weight)
Returns the weighted average color between the two given colors.
Definition: fl_color.cxx:411
const Fl_Align FL_ALIGN_BOTTOM
Align the label at the bottom of the widget.
Definition: Enumerations.H:670
const Fl_Font FL_TIMES_ITALIC
Times roman italic.
Definition: Enumerations.H:724
the first free box type for creation of new box types
Definition: Enumerations.H:514
const Fl_Font FL_TIMES
Times roman.
Definition: Enumerations.H:722
The mouse has been moved to point at this widget.
Definition: Enumerations.H:131
The mouse has moved out of the widget.
Definition: Enumerations.H:289
const Fl_Align FL_ALIGN_TEXT_NEXT_TO_IMAGE
If the label contains an image, draw the text to the left of the image.
Definition: Enumerations.H:690
const Fl_Align FL_ALIGN_LEFT
Align the label at the left of the widget.
Definition: Enumerations.H:674
const Fl_Align FL_ALIGN_TEXT_OVER_IMAGE
If the label contains an image, draw the text on top of the image.
Definition: Enumerations.H:680
The mouse has moved out of the widget.
Definition: Enumerations.H:137
First user-defined damage bit.
Definition: Enumerations.H:942
Call the callback when there is data to be read.
Definition: Enumerations.H:911
const Fl_Font FL_COURIER_BOLD_ITALIC
Courier bold-italic.
Definition: Enumerations.H:721
Equivalent to FL_KEYDOWN.
Definition: Enumerations.H:193
for back compatibility.
Definition: Enumerations.H:900
plastic version of FL_ROUND_DOWN_BOX
Definition: Enumerations.H:503
see figure 1
Definition: Enumerations.H:483
see figure 1
Definition: Enumerations.H:474
unsigned char uchar
unsigned char
Definition: fl_types.h:39
If the Fl::focus() widget is zero or ignores an FL_KEYBOARD event then FLTK tries sending this event ...
Definition: Enumerations.H:227
const Fl_Font FL_SCREEN
Default monospaced screen font.
Definition: Enumerations.H:727
No event.
Definition: Enumerations.H:101
const Fl_Align FL_ALIGN_IMAGE_BACKDROP
If the label contains an image, draw the image or deimage in the background.
Definition: Enumerations.H:692
gtk+ version of FL_UP_FRAME
Definition: Enumerations.H:510
Fl_Boxtype fl_down(Fl_Boxtype b)
Get the "pressed" or "down" version of a box.
Definition: Enumerations.H:574
const Fl_Align FL_ALIGN_RIGHT
Align the label to the right of the widget.
Definition: Enumerations.H:676
draws edges as though the text is raised
Definition: Enumerations.H:611