FLTK 1.3.2
Fl_Menu_.H
1 //
2 // "$Id: Fl_Menu_.H 9202 2011-12-08 17:10:11Z greg.ercolano $"
3 //
4 // Menu base class 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. 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 
19 /* \file
20  Fl_Menu_ widget . */
21 
22 #ifndef Fl_Menu__H
23 #define Fl_Menu__H
24 
25 #ifndef Fl_Widget_H
26 #include "Fl_Widget.H"
27 #endif
28 #include "Fl_Menu_Item.H"
29 
39 class FL_EXPORT Fl_Menu_ : public Fl_Widget {
40 
41  Fl_Menu_Item *menu_;
42  const Fl_Menu_Item *value_;
43 
44 protected:
45 
46  uchar alloc; // flag indicates if menu_ is a dynamic copy (=1) or not (=0)
47  uchar down_box_;
48  Fl_Font textfont_;
49  Fl_Fontsize textsize_;
50  Fl_Color textcolor_;
51 
52 public:
53  Fl_Menu_(int,int,int,int,const char * =0);
54  ~Fl_Menu_();
55 
56  int item_pathname(char *name, int namelen, const Fl_Menu_Item *finditem=0) const;
57  const Fl_Menu_Item* picked(const Fl_Menu_Item*);
58  const Fl_Menu_Item* find_item(const char *name);
59  const Fl_Menu_Item* find_item(Fl_Callback*);
60  int find_index(const char *name) const;
61  int find_index(const Fl_Menu_Item *item) const;
62  int find_index(Fl_Callback *cb) const;
63 
75  const Fl_Menu_Item* test_shortcut() {return picked(menu()->test_shortcut());}
76  void global();
77 
96  const Fl_Menu_Item *menu() const {return menu_;}
97  void menu(const Fl_Menu_Item *m);
98  void copy(const Fl_Menu_Item *m, void* user_data = 0);
99  int insert(int index, const char*, int shortcut, Fl_Callback*, void* = 0, int = 0);
100  int add(const char*, int shortcut, Fl_Callback*, void* = 0, int = 0);
102  int add(const char* a, const char* b, Fl_Callback* c, void* d = 0, int e = 0) {
103  return add(a,fl_old_shortcut(b),c,d,e);
104  }
106  int insert(int index, const char* a, const char* b, Fl_Callback* c, void* d = 0, int e = 0) {
107  return insert(index,a,fl_old_shortcut(b),c,d,e);
108  }
109  int add(const char *);
110  int size() const ;
111  void size(int W, int H) { Fl_Widget::size(W, H); }
112  void clear();
113  int clear_submenu(int index);
114  void replace(int,const char *);
115  void remove(int);
117  void shortcut(int i, int s) {menu_[i].shortcut(s);}
119  void mode(int i,int fl) {menu_[i].flags = fl;}
121  int mode(int i) const {return menu_[i].flags;}
122 
124  const Fl_Menu_Item *mvalue() const {return value_;}
126  int value() const {return value_ ? (int)(value_-menu_) : -1;}
127  int value(const Fl_Menu_Item*);
134  int value(int i) {return value(menu_+i);}
136  const char *text() const {return value_ ? value_->text : 0;}
138  const char *text(int i) const {return menu_[i].text;}
139 
141  Fl_Font textfont() const {return textfont_;}
143  void textfont(Fl_Font c) {textfont_=c;}
145  Fl_Fontsize textsize() const {return textsize_;}
147  void textsize(Fl_Fontsize c) {textsize_=c;}
149  Fl_Color textcolor() const {return textcolor_;}
151  void textcolor(Fl_Color c) {textcolor_=c;}
152 
159  Fl_Boxtype down_box() const {return (Fl_Boxtype)down_box_;}
161  void down_box(Fl_Boxtype b) {down_box_ = b;}
162 
164  Fl_Color down_color() const {return selection_color();}
166  void down_color(unsigned c) {selection_color(c);}
167 };
168 
169 #endif
170 
171 //
172 // End of "$Id: Fl_Menu_.H 9202 2011-12-08 17:10:11Z greg.ercolano $".
173 //