summaryrefslogtreecommitdiff
path: root/src/fl_labeltype.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-08-06 03:17:43 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-08-06 03:17:43 +0000
commit28c0d4ffa1ccd9828f00be1c96405484b5e5d681 (patch)
tree1d3b2b901ccbfdf6e50168f7ff51dd7954b50c3c /src/fl_labeltype.cxx
parent7ebaf77cdcbcadb4706c87f1662730a4687caf20 (diff)
Symbols are now supported by main label drawing code - @@ to insert a
single @. Currently only 1 symbol per label, at the beginning or end of the label string, with the remaining text (and image) getting formatted as usual. The size of the symbol == lines * labelsize, unless there is no text in which case the size == height of label area. Fl_Menu_Item::draw() didn't clear the image field in the Fl_Label structure. Removed Fl::enable_symbols(), which is now the default. Dropped FL_IMAGE_LABEL, FL_PIXMAP_LABEL, and FL_BITMAP_LABEL types, which are no longer needed. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1561 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_labeltype.cxx')
-rw-r--r--src/fl_labeltype.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/fl_labeltype.cxx b/src/fl_labeltype.cxx
index 32cc94775..ce503bc55 100644
--- a/src/fl_labeltype.cxx
+++ b/src/fl_labeltype.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_labeltype.cxx,v 1.6.2.3.2.1 2001/08/05 23:58:54 easysw Exp $"
+// "$Id: fl_labeltype.cxx,v 1.6.2.3.2.2 2001/08/06 03:17:43 easysw Exp $"
//
// Label drawing routines for the Fast Light Tool Kit (FLTK).
//
@@ -63,16 +63,15 @@ fl_normal_measure(const Fl_Label* o, int& W, int& H) {
static Fl_Label_Draw_F* table[MAX_LABELTYPE] = {
fl_normal_label,
fl_no_label,
- fl_normal_label, // _FL_SYMBOL_LABEL,
fl_normal_label, // _FL_SHADOW_LABEL,
fl_normal_label, // _FL_ENGRAVED_LABEL,
fl_normal_label, // _FL_EMBOSSED_LABEL,
- fl_no_label, // _FL_BITMAP_LABEL,
- fl_no_label, // _FL_PIXMAP_LABEL,
- fl_no_label, // _FL_IMAGE_LABEL,
+ fl_no_label, // _FL_MULTI_LABEL,
+ fl_no_label, // _FL_ICON_LABEL,
// FL_FREE_LABELTYPE+n:
fl_no_label, fl_no_label, fl_no_label,
- fl_no_label, fl_no_label, fl_no_label, fl_no_label,
+ fl_no_label, fl_no_label, fl_no_label,
+ fl_no_label, fl_no_label, fl_no_label
};
static Fl_Label_Measure_F* measure[MAX_LABELTYPE];
@@ -132,5 +131,5 @@ void Fl_Widget::draw_label(int X, int Y, int W, int H, Fl_Align a) const {
#include <FL/Fl_Input_.H>
//
-// End of "$Id: fl_labeltype.cxx,v 1.6.2.3.2.1 2001/08/05 23:58:54 easysw Exp $".
+// End of "$Id: fl_labeltype.cxx,v 1.6.2.3.2.2 2001/08/06 03:17:43 easysw Exp $".
//