FLTK 1.3.3
Enumerations.H
Go to the documentation of this file.
1 //
2 // "$Id: Enumerations.H 10382 2014-10-15 21:00:20Z ianmacarthur $"
3 //
4 // Enumerations for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2014 by Bill Spitzak and others.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // http://www.fltk.org/COPYING.php
13 //
14 // Please report all bugs and problems on the following page:
15 //
16 // http://www.fltk.org/str.php
17 //
18 
23 #ifndef Fl_Enumerations_H
24 #define Fl_Enumerations_H
25 
26 /* Uncomment the following FLTK_ABI_VERSION line to enable ABI breaking fixes
27  * in the current patch release of FLTK. ** Use for static builds only! **
28  * For more info on this macro, see: http://fltk.org/cmp.php#FLTK_ABI_VERSION
29  */
30 //#define FLTK_ABI_VERSION 10303
31 
32 # include "Fl_Export.H"
33 # include "fl_types.h"
34 
43 
48 #define FL_MAJOR_VERSION 1
49 
55 #define FL_MINOR_VERSION 3
56 
62 #define FL_PATCH_VERSION 3
63 
75 #define FL_VERSION ((double)FL_MAJOR_VERSION + \
76  (double)FL_MINOR_VERSION * 0.01 + \
77  (double)FL_PATCH_VERSION * 0.0001)
78  // group: Version Numbers
80 
96 enum Fl_Event { // events
99 
111  FL_PUSH = 1,
112 
120 
128  FL_ENTER = 3,
129 
134  FL_LEAVE = 4,
135 
143  FL_DRAG = 5,
144 
158  FL_FOCUS = 6,
159 
164 
186 
191 
195  FL_KEYUP = 9,
196 
202  FL_CLOSE = 10,
203 
210  FL_MOVE = 11,
211 
225 
232 
237 
244  FL_HIDE = 15,
245 
252  FL_SHOW = 16,
253 
258  FL_PASTE = 17,
259 
266 
271 
277 
283 
287 
300 };
301 
309 enum Fl_When { // Fl_Widget::when():
318 };
319  // group: When Conditions
321 
334 
335 // FIXME: These codes collide with valid Unicode keys
336 
337 #define FL_Button 0xfee8
338 #define FL_BackSpace 0xff08
339 #define FL_Tab 0xff09
340 #define FL_Iso_Key 0xff0c
341 #define FL_Enter 0xff0d
342 #define FL_Pause 0xff13
343 #define FL_Scroll_Lock 0xff14
344 #define FL_Escape 0xff1b
345 #define FL_Kana 0xff2e
346 #define FL_Eisu 0xff2f
347 #define FL_Yen 0xff30
348 #define FL_JIS_Underscore 0xff31
349 #define FL_Home 0xff50
350 #define FL_Left 0xff51
351 #define FL_Up 0xff52
352 #define FL_Right 0xff53
353 #define FL_Down 0xff54
354 #define FL_Page_Up 0xff55
355 #define FL_Page_Down 0xff56
356 #define FL_End 0xff57
357 #define FL_Print 0xff61
358 #define FL_Insert 0xff63
359 #define FL_Menu 0xff67
360 #define FL_Help 0xff68
361 #define FL_Num_Lock 0xff7f
362 #define FL_KP 0xff80
363 #define FL_KP_Enter 0xff8d
364 #define FL_KP_Last 0xffbd
365 #define FL_F 0xffbd
366 #define FL_F_Last 0xffe0
367 #define FL_Shift_L 0xffe1
368 #define FL_Shift_R 0xffe2
369 #define FL_Control_L 0xffe3
370 #define FL_Control_R 0xffe4
371 #define FL_Caps_Lock 0xffe5
372 #define FL_Meta_L 0xffe7
373 #define FL_Meta_R 0xffe8
374 #define FL_Alt_L 0xffe9
375 #define FL_Alt_R 0xffea
376 #define FL_Delete 0xffff
377 
378 // These use the Private Use Area (PUA) of the Basic Multilingual Plane
379 // of Unicode. Guaranteed not to conflict with a proper Unicode character.
380 
381 // These primarily map to the XFree86 keysym range
382 #define FL_Volume_Down 0xEF11 /* Volume control down */
383 #define FL_Volume_Mute 0xEF12 /* Mute sound from the system */
384 #define FL_Volume_Up 0xEF13 /* Volume control up */
385 #define FL_Media_Play 0xEF14 /* Start playing of audio */
386 #define FL_Media_Stop 0xEF15 /* Stop playing audio */
387 #define FL_Media_Prev 0xEF16 /* Previous track */
388 #define FL_Media_Next 0xEF17 /* Next track */
389 #define FL_Home_Page 0xEF18 /* Display user's home page */
390 #define FL_Mail 0xEF19 /* Invoke user's mail program */
391 #define FL_Search 0xEF1B /* Search */
392 #define FL_Back 0xEF26 /* Like back on a browser */
393 #define FL_Forward 0xEF27 /* Like forward on a browser */
394 #define FL_Stop 0xEF28 /* Stop current operation */
395 #define FL_Refresh 0xEF29 /* Refresh the page */
396 #define FL_Sleep 0xEF2F /* Put system to sleep */
397 #define FL_Favorites 0xEF30 /* Show favorite locations */
398  // group: Mouse and Keyboard Events
400 
409 
410 #define FL_LEFT_MOUSE 1
411 #define FL_MIDDLE_MOUSE 2
412 #define FL_RIGHT_MOUSE 3
413 
414  // group: Mouse Buttons
415 
416 
422  // group: Event States
423 
424 // FIXME: it would be nice to have the modifiers in the upper 8 bit so that
425 // a unicode ke (24bit) can be sent as an unsigned with the modifiers.
426 
427 #define FL_SHIFT 0x00010000
428 #define FL_CAPS_LOCK 0x00020000
429 #define FL_CTRL 0x00040000
430 #define FL_ALT 0x00080000
431 #define FL_NUM_LOCK 0x00100000
432  // most X servers do this?
433 #define FL_META 0x00400000
434  // correct for XFree86
435 #define FL_SCROLL_LOCK 0x00800000
436  // correct for XFree86
437 #define FL_BUTTON1 0x01000000
438 #define FL_BUTTON2 0x02000000
439 #define FL_BUTTON3 0x04000000
440 #define FL_BUTTONS 0x7f000000
441 #define FL_BUTTON(n) (0x00800000<<(n))
442 
443 #define FL_KEY_MASK 0x0000ffff
444  // FIXME: Unicode needs 24 bits!
445 
446 #ifdef __APPLE__
447 # define FL_COMMAND FL_META
448 # define FL_CONTROL FL_CTRL
449 #else
450 # define FL_COMMAND FL_CTRL
451 # define FL_CONTROL FL_META
452 #endif // __APPLE__
453  // group: Event States
455 
473 enum Fl_Boxtype { // boxtypes (if you change these you must fix fl_boxtype.C):
474 
475  FL_NO_BOX = 0,
532 };
533 extern FL_EXPORT Fl_Boxtype fl_define_FL_ROUND_UP_BOX();
534 #define FL_ROUND_UP_BOX fl_define_FL_ROUND_UP_BOX()
535 #define FL_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_ROUND_UP_BOX()+1)
536 extern FL_EXPORT Fl_Boxtype fl_define_FL_SHADOW_BOX();
537 #define FL_SHADOW_BOX fl_define_FL_SHADOW_BOX()
538 #define FL_SHADOW_FRAME (Fl_Boxtype)(fl_define_FL_SHADOW_BOX()+2)
539 extern FL_EXPORT Fl_Boxtype fl_define_FL_ROUNDED_BOX();
540 #define FL_ROUNDED_BOX fl_define_FL_ROUNDED_BOX()
541 #define FL_ROUNDED_FRAME (Fl_Boxtype)(fl_define_FL_ROUNDED_BOX()+2)
542 extern FL_EXPORT Fl_Boxtype fl_define_FL_RFLAT_BOX();
543 #define FL_RFLAT_BOX fl_define_FL_RFLAT_BOX()
544 extern FL_EXPORT Fl_Boxtype fl_define_FL_RSHADOW_BOX();
545 #define FL_RSHADOW_BOX fl_define_FL_RSHADOW_BOX()
546 extern FL_EXPORT Fl_Boxtype fl_define_FL_DIAMOND_BOX();
547 #define FL_DIAMOND_UP_BOX fl_define_FL_DIAMOND_BOX()
548 #define FL_DIAMOND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_DIAMOND_BOX()+1)
549 extern FL_EXPORT Fl_Boxtype fl_define_FL_OVAL_BOX();
550 #define FL_OVAL_BOX fl_define_FL_OVAL_BOX()
551 #define FL_OSHADOW_BOX (Fl_Boxtype)(fl_define_FL_OVAL_BOX()+1)
552 #define FL_OVAL_FRAME (Fl_Boxtype)(fl_define_FL_OVAL_BOX()+2)
553 #define FL_OFLAT_BOX (Fl_Boxtype)(fl_define_FL_OVAL_BOX()+3)
554 
555 extern FL_EXPORT Fl_Boxtype fl_define_FL_PLASTIC_UP_BOX();
556 #define FL_PLASTIC_UP_BOX fl_define_FL_PLASTIC_UP_BOX()
557 #define FL_PLASTIC_DOWN_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+1)
558 #define FL_PLASTIC_UP_FRAME (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+2)
559 #define FL_PLASTIC_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+3)
560 #define FL_PLASTIC_THIN_UP_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+4)
561 #define FL_PLASTIC_THIN_DOWN_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+5)
562 #define FL_PLASTIC_ROUND_UP_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+6)
563 #define FL_PLASTIC_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_PLASTIC_UP_BOX()+7)
564 
565 extern FL_EXPORT Fl_Boxtype fl_define_FL_GTK_UP_BOX();
566 #define FL_GTK_UP_BOX fl_define_FL_GTK_UP_BOX()
567 #define FL_GTK_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+1)
568 #define FL_GTK_UP_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+2)
569 #define FL_GTK_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+3)
570 #define FL_GTK_THIN_UP_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+4)
571 #define FL_GTK_THIN_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+5)
572 #define FL_GTK_THIN_UP_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+6)
573 #define FL_GTK_THIN_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+7)
574 #define FL_GTK_ROUND_UP_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+8)
575 #define FL_GTK_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GTK_UP_BOX()+9)
576 
577 extern FL_EXPORT Fl_Boxtype fl_define_FL_GLEAM_UP_BOX();
578 #define FL_GLEAM_UP_BOX fl_define_FL_GLEAM_UP_BOX()
579 #define FL_GLEAM_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+1)
580 #define FL_GLEAM_UP_FRAME (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+2)
581 #define FL_GLEAM_DOWN_FRAME (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+3)
582 #define FL_GLEAM_THIN_UP_BOX (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+4)
583 #define FL_GLEAM_THIN_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+5)
584 #define FL_GLEAM_ROUND_UP_BOX (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+6)
585 #define FL_GLEAM_ROUND_DOWN_BOX (Fl_Boxtype)(fl_define_FL_GLEAM_UP_BOX()+7)
586 
587 // conversions of box types to other boxtypes:
594  return (Fl_Boxtype)((b<FL_UP_BOX||b%4>1)?b:(b-2));
595 }
602  return (Fl_Boxtype)((b<FL_UP_BOX)?b:(b|1));
603 }
610  return (Fl_Boxtype)((b%4<2)?b:(b+2));
611 }
612 
613 // back-compatibility box types:
614 #define FL_FRAME FL_ENGRAVED_FRAME
615 #define FL_FRAME_BOX FL_ENGRAVED_BOX
616 #define FL_CIRCLE_BOX FL_ROUND_DOWN_BOX
617 #define FL_DIAMOND_BOX FL_DIAMOND_DOWN_BOX
618  // group: Box Types
620 
633 enum Fl_Labeltype { // labeltypes:
642 
644 };
645 
650 #define FL_SYMBOL_LABEL FL_NORMAL_LABEL
651 extern Fl_Labeltype FL_EXPORT fl_define_FL_SHADOW_LABEL();
652 #define FL_SHADOW_LABEL fl_define_FL_SHADOW_LABEL()
653 extern Fl_Labeltype FL_EXPORT fl_define_FL_ENGRAVED_LABEL();
654 #define FL_ENGRAVED_LABEL fl_define_FL_ENGRAVED_LABEL()
655 extern Fl_Labeltype FL_EXPORT fl_define_FL_EMBOSSED_LABEL();
656 #define FL_EMBOSSED_LABEL fl_define_FL_EMBOSSED_LABEL()
657 
690 typedef unsigned Fl_Align;
720 const Fl_Align FL_ALIGN_TOP_LEFT = FL_ALIGN_TOP | FL_ALIGN_LEFT;
721 const Fl_Align FL_ALIGN_TOP_RIGHT = FL_ALIGN_TOP | FL_ALIGN_RIGHT;
722 const Fl_Align FL_ALIGN_BOTTOM_LEFT = FL_ALIGN_BOTTOM | FL_ALIGN_LEFT;
723 const Fl_Align FL_ALIGN_BOTTOM_RIGHT = FL_ALIGN_BOTTOM | FL_ALIGN_RIGHT;
724 const Fl_Align FL_ALIGN_LEFT_TOP = 0x0007; // magic value
725 const Fl_Align FL_ALIGN_RIGHT_TOP = 0x000b; // magic value
726 const Fl_Align FL_ALIGN_LEFT_BOTTOM = 0x000d; // magic value
727 const Fl_Align FL_ALIGN_RIGHT_BOTTOM = 0x000e; // magic value
728 const Fl_Align FL_ALIGN_NOWRAP = (Fl_Align)0; // for back compatibility
729 const Fl_Align FL_ALIGN_POSITION_MASK = 0x000f; // left, right, top, bottom
730 const Fl_Align FL_ALIGN_IMAGE_MASK = 0x0320; // l/r, t/b, backdrop
739 typedef int Fl_Font;
740 
745 const Fl_Font FL_COURIER = 4;
749 const Fl_Font FL_TIMES = 8;
753 const Fl_Font FL_SYMBOL = 12;
754 const Fl_Font FL_SCREEN = 13;
757 
758 const Fl_Font FL_FREE_FONT = 16;
759 const Fl_Font FL_BOLD = 1;
760 const Fl_Font FL_ITALIC = 2;
762 
768 typedef int Fl_Fontsize;
769 
770 extern FL_EXPORT Fl_Fontsize FL_NORMAL_SIZE;
771 
796 typedef unsigned int Fl_Color;
797 
798 // Standard colors. These are used as default colors in widgets and altered as necessary
803 
804  // boxtypes generally limit themselves to these colors so
805  // the whole ramp is not allocated:
806 
807 const Fl_Color FL_GRAY0 = 32; // 'A'
808 const Fl_Color FL_DARK3 = 39; // 'H'
809 const Fl_Color FL_DARK2 = 45; // 'N'
810 const Fl_Color FL_DARK1 = 47; // 'P'
811 const Fl_Color FL_BACKGROUND_COLOR = 49; // 'R' default background color
812 const Fl_Color FL_LIGHT1 = 50; // 'S'
813 const Fl_Color FL_LIGHT2 = 52; // 'U'
814 const Fl_Color FL_LIGHT3 = 54; // 'W'
815 
816  // FLTK provides a 5x8x5 color cube that is used with colormap visuals
817 
818 const Fl_Color FL_BLACK = 56;
819 const Fl_Color FL_RED = 88;
820 const Fl_Color FL_GREEN = 63;
821 const Fl_Color FL_YELLOW = 95;
822 const Fl_Color FL_BLUE = 216;
823 const Fl_Color FL_MAGENTA = 248;
824 const Fl_Color FL_CYAN = 223;
825 const Fl_Color FL_DARK_RED = 72;
826 
827 const Fl_Color FL_DARK_GREEN = 60;
828 const Fl_Color FL_DARK_YELLOW = 76;
829 const Fl_Color FL_DARK_BLUE = 136;
830 const Fl_Color FL_DARK_MAGENTA = 152;
831 const Fl_Color FL_DARK_CYAN = 140;
832 
833 const Fl_Color FL_WHITE = 255;
834 
835 
836 #define FL_FREE_COLOR (Fl_Color)16
837 #define FL_NUM_FREE_COLOR 16
838 #define FL_GRAY_RAMP (Fl_Color)32
839 #define FL_NUM_GRAY 24
840 #define FL_GRAY FL_BACKGROUND_COLOR
841 #define FL_COLOR_CUBE (Fl_Color)56
842 #define FL_NUM_RED 5
843 #define FL_NUM_GREEN 8
844 #define FL_NUM_BLUE 5
845 
846 FL_EXPORT Fl_Color fl_inactive(Fl_Color c);
847 
848 FL_EXPORT Fl_Color fl_contrast(Fl_Color fg, Fl_Color bg);
849 
850 FL_EXPORT Fl_Color fl_color_average(Fl_Color c1, Fl_Color c2, float weight);
851 
853 inline Fl_Color fl_lighter(Fl_Color c) { return fl_color_average(c, FL_WHITE, .67f); }
854 
856 inline Fl_Color fl_darker(Fl_Color c) { return fl_color_average(c, FL_BLACK, .67f); }
857 
860  if (!r && !g && !b) return FL_BLACK;
861  else return (Fl_Color)(((((r << 8) | g) << 8) | b) << 8);
862 }
863 
866  if (!g) return FL_BLACK;
867  else return (Fl_Color)(((((g << 8) | g) << 8) | g) << 8);
868 }
869 
878 inline Fl_Color fl_gray_ramp(int i) {return (Fl_Color)(i+FL_GRAY_RAMP);}
879 
894 inline Fl_Color fl_color_cube(int r, int g, int b) {
895  return (Fl_Color)((b*FL_NUM_RED + r) * FL_NUM_GREEN + g + FL_COLOR_CUBE);}
896  // group: Colors
898 
901 
909 /* FIXME: We should renumber these, but that will break the ABI */
910 enum Fl_Cursor {
920  /* Resize indicators */
925  FL_CURSOR_N = 70,
927  FL_CURSOR_E = 49,
931  FL_CURSOR_W = 36,
935 }; // group: Cursors
937 
939 enum { // values for "when" passed to Fl::add_fd()
940  FL_READ = 1,
941  FL_WRITE = 4,
943 };
944 
946 enum Fl_Mode {
947  FL_RGB = 0,
948  FL_INDEX = 1,
949  FL_SINGLE = 0,
950  FL_DOUBLE = 2,
951  FL_ACCUM = 4,
952  FL_ALPHA = 8,
953  FL_DEPTH = 16,
954  FL_STENCIL = 32,
955  FL_RGB8 = 64,
956  FL_MULTISAMPLE= 128,
957  FL_STEREO = 256,
958  FL_FAKE_SINGLE = 512 // Fake single buffered windows using double-buffer
959 };
960 
961 // image alpha blending
962 
963 #define FL_IMAGE_WITH_ALPHA 0x40000000
964 
966 enum Fl_Damage {
974 };
975 
976 // FLTK 1.0.x compatibility definitions...
977 # ifdef FLTK_1_0_COMPAT
978 # define contrast fl_contrast
979 # define down fl_down
980 # define frame fl_frame
981 # define inactive fl_inactive
982 # endif // FLTK_1_0_COMPAT
983 
984 #endif
985 
986 //
987 // End of "$Id: Enumerations.H 10382 2014-10-15 21:00:20Z ianmacarthur $".
988 //
const Fl_Align FL_ALIGN_CLIP
All parts of the label that are lager than the widget will not be drawn .
Definition: Enumerations.H:711
busy indicator (e.g.
Definition: Enumerations.H:914
invisible.
Definition: Enumerations.H:934
Do the callback when the button or key is released and the value changes.
Definition: Enumerations.H:313
Fl_Boxtype fl_box(Fl_Boxtype b)
Get the filled version of a frame.
Definition: Enumerations.H:593
gtk+ version of FL_DOWN_RAME
Definition: Enumerations.H:516
The Fl::selection_owner() will get this event before the selection is moved to another widget...
Definition: Enumerations.H:265
Fl_Color fl_darker(Fl_Color c)
Returns a darker version of the specified color.
Definition: Enumerations.H:856
Fl_Cursor
The following constants define the mouse cursors that are available in FLTK.
Definition: Enumerations.H:910
Fl_Boxtype fl_frame(Fl_Boxtype b)
Get the unfilled, frame only version of a box.
Definition: Enumerations.H:609
const Fl_Font FL_FREE_FONT
first one to allocate
Definition: Enumerations.H:758
const Fl_Font FL_HELVETICA_BOLD
Helvetica (or Arial) bold.
Definition: Enumerations.H:742
plastic version of FL_THIN_DOWN_BOX
Definition: Enumerations.H:510
const Fl_Font FL_COURIER_ITALIC
Courier italic.
Definition: Enumerations.H:747
const Fl_Color FL_BACKGROUND2_COLOR
the default background color for text, list, and valuator widgets
Definition: Enumerations.H:800
downwards, left resize.
Definition: Enumerations.H:930
gtk+ version of FL_ROUND_DOWN_BOX
Definition: Enumerations.H:522
Call the callback if an exception occurs on the file.
Definition: Enumerations.H:942
Second user-defined damage bit.
Definition: Enumerations.H:972
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:715
see figure 1
Definition: Enumerations.H:498
see figure 1
Definition: Enumerations.H:490
see figure 1
Definition: Enumerations.H:500
You should get this event some time after you call Fl::paste().
Definition: Enumerations.H:258
plastic version of FL_UP_FRAME
Definition: Enumerations.H:507
question mark pointer.
Definition: Enumerations.H:917
const Fl_Font FL_TIMES_BOLD
Times roman bold.
Definition: Enumerations.H:750
A mouse button has gone down with the mouse pointing at this widget.
Definition: Enumerations.H:111
This indicates an attempt to give a widget the keyboard focus.
Definition: Enumerations.H:158
pointing hand.
Definition: Enumerations.H:916
see figure 1
Definition: Enumerations.H:478
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:878
const Fl_Font FL_ZAPF_DINGBATS
Zapf-dingbats font.
Definition: Enumerations.H:756
Everything needs to be redrawn.
Definition: Enumerations.H:973
see figure 1
Definition: Enumerations.H:489
This widget is no longer active, due to Fl_Widget::deactivate() being called on it or one of its pare...
Definition: Enumerations.H:231
This widget is no longer visible, due to Fl_Widget::hide() being called on it or one of its parents...
Definition: Enumerations.H:244
const Fl_Align FL_ALIGN_IMAGE_OVER_TEXT
If the label contains an image, draw the text below the image.
Definition: Enumerations.H:709
Fl_Color fl_lighter(Fl_Color c)
Returns a lighter version of the specified color.
Definition: Enumerations.H:853
This widget is now active, due to Fl_Widget::activate() being called on it or one of its parents...
Definition: Enumerations.H:236
Do the callback whenever the user interacts with the widget.
Definition: Enumerations.H:312
see figure 1
Definition: Enumerations.H:503
const Fl_Font FL_COURIER
Courier normal.
Definition: Enumerations.H:745
Do the callback when the user presses the ENTER key and the value changes.
Definition: Enumerations.H:315
Fl_When
These constants determine when a callback is performed.
Definition: Enumerations.H:309
see figure 1
Definition: Enumerations.H:480
see figure 1
Definition: Enumerations.H:485
const Fl_Color FL_FOREGROUND_COLOR
the default foreground color (0) used for labels and text
Definition: Enumerations.H:799
?
Definition: Enumerations.H:641
see figure 1
Definition: Enumerations.H:504
downwards resize.
Definition: Enumerations.H:929
plastic version of FL_DOWN_BOX
Definition: Enumerations.H:506
The user has released the mouse button dropping data into the widget.
Definition: Enumerations.H:292
const Fl_Color FL_INACTIVE_COLOR
the inactive foreground color
Definition: Enumerations.H:801
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:859
The mouse has been moved inside a widget while dragging data.
Definition: Enumerations.H:282
gtk+ version of FL_THIN_DOWN_FRAME
Definition: Enumerations.H:520
Fl_Mode
visual types and Fl_Gl_Window::mode() (values match Glut)
Definition: Enumerations.H:946
Fl_Damage
Damage masks.
Definition: Enumerations.H:966
A mouse button has been released.
Definition: Enumerations.H:119
see figure 1
Definition: Enumerations.H:499
A key was pressed (FL_KEYDOWN) or released (FL_KEYUP).
Definition: Enumerations.H:185
see figure 1
Definition: Enumerations.H:484
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:435
?
Definition: Enumerations.H:639
A child needs to be redrawn.
Definition: Enumerations.H:967
see figure 1
Definition: Enumerations.H:495
diagonal resize.
Definition: Enumerations.H:923
Do the callback only when the widget value changes.
Definition: Enumerations.H:311
const Fl_Font FL_ITALIC
add this to helvetica, courier, or times
Definition: Enumerations.H:760
const Fl_Align FL_ALIGN_CENTER
Align the label horizontally in the middle.
Definition: Enumerations.H:692
plastic version of FL_THIN_UP_BOX
Definition: Enumerations.H:509
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:96
Fl_Boxtype
Definition: Enumerations.H:473
see figure 1
Definition: Enumerations.H:493
diagonal resize.
Definition: Enumerations.H:924
The user has moved the mouse wheel.
Definition: Enumerations.H:270
see figure 1
Definition: Enumerations.H:482
const Fl_Align FL_ALIGN_INSIDE
Draw the label inside of the widget.
Definition: Enumerations.H:705
gtk+ version of FL_ROUND_UP_BOX
Definition: Enumerations.H:521
see figure 1
Definition: Enumerations.H:491
The mouse has been moved to point at this widget.
Definition: Enumerations.H:276
see figure 1
Definition: Enumerations.H:477
up/down resize.
Definition: Enumerations.H:921
draws the text (0)
Definition: Enumerations.H:634
Key release event.
Definition: Enumerations.H:195
gtk+ version of FL_UP_BOX
Definition: Enumerations.H:513
see figure 1
Definition: Enumerations.H:488
The fullscreen state of the window has changed.
Definition: Enumerations.H:299
gleam version of FL_GLEAM_ROUND_DOWN_BOX
Definition: Enumerations.H:530
I-beam.
Definition: Enumerations.H:915
const Fl_Font FL_TIMES_BOLD_ITALIC
Times roman bold-italic.
Definition: Enumerations.H:752
plastic version of FL_UP_BOX
Definition: Enumerations.H:505
The user clicked the close button of a window.
Definition: Enumerations.H:202
gtk+ version of FL_DOWN_BOX
Definition: Enumerations.H:514
leftwards resize.
Definition: Enumerations.H:931
draws a drop shadow under the text
Definition: Enumerations.H:636
see figure 1
Definition: Enumerations.H:501
FL_EXPORT Fl_Color fl_inactive(Fl_Color c)
Returns the inactive, dimmed version of the given color.
Definition: fl_color.cxx:423
The Fl_Scroll widget was scrolled.
Definition: Enumerations.H:969
see figure 1
Definition: Enumerations.H:487
gleam version of FL_GLEAM_DOWN_FRAME
Definition: Enumerations.H:526
const Fl_Font FL_COURIER_BOLD
Courier bold.
Definition: Enumerations.H:746
nothing is drawn at all, this box is invisible
Definition: Enumerations.H:475
upwards resize.
Definition: Enumerations.H:925
const Fl_Font FL_SCREEN_BOLD
Default monospaced bold screen font.
Definition: Enumerations.H:755
left/right resize.
Definition: Enumerations.H:922
draws edges as though the text is engraved
Definition: Enumerations.H:637
gleam version of FL_GLEAM_DOWN_BOX
Definition: Enumerations.H:524
Do the callback when the button or key is released, even if the value doesn't change.
Definition: Enumerations.H:314
The overlay planes need to be redrawn.
Definition: Enumerations.H:970
const Fl_Font FL_BOLD_ITALIC
add this to helvetica, courier, or times
Definition: Enumerations.H:761
gtk+ version of FL_THIN_DOWN_BOX
Definition: Enumerations.H:518
This event is sent to the previous Fl::focus() widget when another widget gets the focus or the windo...
Definition: Enumerations.H:163
const Fl_Font FL_HELVETICA_ITALIC
Helvetica (or Arial) oblique.
Definition: Enumerations.H:743
upwards, left resize.
Definition: Enumerations.H:932
Call the callback when data can be written without blocking.
Definition: Enumerations.H:941
an arrow pointer.
Definition: Enumerations.H:912
downwards, right resize.
Definition: Enumerations.H:928
int Fl_Fontsize
Size of a font in pixels.
Definition: Enumerations.H:768
Never call the callback.
Definition: Enumerations.H:310
The mouse has moved with a button held down.
Definition: Enumerations.H:143
const Fl_Color FL_SELECTION_COLOR
the default selection/highlight color
Definition: Enumerations.H:802
see figure 1
Definition: Enumerations.H:494
plastic version of FL_DOWN_FRAME
Definition: Enumerations.H:508
const Fl_Align FL_ALIGN_WRAP
Wrap text that does not fit the width of the widget.
Definition: Enumerations.H:713
gleam version of FL_GLEAM_THIN_UP_BOX
Definition: Enumerations.H:527
gtk+ version of FL_UP_FRAME
Definition: Enumerations.H:515
4-pointed arrow or hand.
Definition: Enumerations.H:918
see figure 1
Definition: Enumerations.H:479
const Fl_Font FL_BOLD
add this to helvetica, courier, or times
Definition: Enumerations.H:759
crosshair.
Definition: Enumerations.H:913
gleam version of FL_GLEAM_ROUND_UP_BOX
Definition: Enumerations.H:529
gleam version of FL_GLEAM_UP_BOX
Definition: Enumerations.H:523
The screen configuration (number, positions) was changed.
Definition: Enumerations.H:296
FL_EXPORT Fl_Fontsize FL_NORMAL_SIZE
normal font size
Definition: Fl_Widget.cxx:102
unsigned int Fl_Color
An FLTK color value; see also Colors.
Definition: Enumerations.H:796
Fl_Labeltype
The labeltype() method sets the type of the label.
Definition: Enumerations.H:633
This widget is visible again, due to Fl_Widget::show() being called on it or one of its parents...
Definition: Enumerations.H:252
the default cursor, usually an arrow.
Definition: Enumerations.H:911
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:739
const Fl_Align FL_ALIGN_TOP
Align the label at the top of the widget.
Definition: Enumerations.H:695
draws the icon associated with the text
Definition: Enumerations.H:640
see figure 1
Definition: Enumerations.H:481
a flat box
Definition: Enumerations.H:476
unsigned Fl_Align
FLTK type for alignment control.
Definition: Enumerations.H:690
const Fl_Font FL_SYMBOL
Standard symbol font.
Definition: Enumerations.H:753
The mouse has moved without any mouse buttons held down.
Definition: Enumerations.H:210
The window was exposed.
Definition: Enumerations.H:968
plastic version of FL_ROUND_UP_BOX
Definition: Enumerations.H:511
Fl_Color fl_color_cube(int r, int g, int b)
Returns a color out of the color cube.
Definition: Enumerations.H:894
see figure 1
Definition: Enumerations.H:486
see figure 1
Definition: Enumerations.H:502
const Fl_Font FL_HELVETICA_BOLD_ITALIC
Helvetica (or Arial) bold-oblique.
Definition: Enumerations.H:744
see figure 1
Definition: Enumerations.H:497
const Fl_Font FL_HELVETICA
Helvetica (or Arial) normal (0)
Definition: Enumerations.H:741
gtk+ version of FL_THIN_UP_BOX
Definition: Enumerations.H:517
Do the callback when the user presses the ENTER key, even if the value doesn't change.
Definition: Enumerations.H:316
?
Definition: Enumerations.H:317
upwards, right resize.
Definition: Enumerations.H:926
does nothing
Definition: Enumerations.H:635
see figure 1
Definition: Enumerations.H:496
first free labeltype to use for creating own labeltypes
Definition: Enumerations.H:643
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:402
const Fl_Align FL_ALIGN_BOTTOM
Align the label at the bottom of the widget.
Definition: Enumerations.H:697
const Fl_Font FL_TIMES_ITALIC
Times roman italic.
Definition: Enumerations.H:751
the first free box type for creation of new box types
Definition: Enumerations.H:531
const Fl_Font FL_TIMES
Times roman.
Definition: Enumerations.H:749
The mouse has been moved to point at this widget.
Definition: Enumerations.H:128
The mouse has moved out of the widget.
Definition: Enumerations.H:286
gleam version of FL_GLEAM_THIN_DOWN_BOX
Definition: Enumerations.H:528
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:717
const Fl_Align FL_ALIGN_LEFT
Align the label at the left of the widget.
Definition: Enumerations.H:701
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:707
The mouse has moved out of the widget.
Definition: Enumerations.H:134
First user-defined damage bit.
Definition: Enumerations.H:971
Call the callback when there is data to be read.
Definition: Enumerations.H:940
const Fl_Font FL_COURIER_BOLD_ITALIC
Courier bold-italic.
Definition: Enumerations.H:748
Equivalent to FL_KEYDOWN.
Definition: Enumerations.H:190
rightwards resize.
Definition: Enumerations.H:927
plastic version of FL_ROUND_DOWN_BOX
Definition: Enumerations.H:512
see figure 1
Definition: Enumerations.H:492
see figure 1
Definition: Enumerations.H:483
gleam version of FL_GLEAM_UP_FRAME
Definition: Enumerations.H:525
unsigned char uchar
unsigned char
Definition: fl_types.h:30
If the Fl::focus() widget is zero or ignores an FL_KEYBOARD event then FLTK tries sending this event ...
Definition: Enumerations.H:224
const Fl_Font FL_SCREEN
Default monospaced screen font.
Definition: Enumerations.H:754
No event.
Definition: Enumerations.H:98
const Fl_Align FL_ALIGN_IMAGE_BACKDROP
If the label contains an image, draw the image or deimage in the background.
Definition: Enumerations.H:719
gtk+ version of FL_UP_FRAME
Definition: Enumerations.H:519
Fl_Boxtype fl_down(Fl_Boxtype b)
Get the "pressed" or "down" version of a box.
Definition: Enumerations.H:601
const Fl_Align FL_ALIGN_RIGHT
Align the label to the right of the widget.
Definition: Enumerations.H:703
draws edges as though the text is raised
Definition: Enumerations.H:638