diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-03-06 00:32:11 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-03-06 00:32:11 +0000 |
| commit | ec7b0609576b174048d3cff1c5c6abbb7fb8fc8a (patch) | |
| tree | c6d61837af96b6e6cbdfb809a75c93f05cc21915 /FL/Fl_Input_Choice.H | |
| parent | 9b5555d142d7bbd6913bc13f1d397e638ed46697 (diff) | |
Fix Fl_Input_Choice in FLUID, and make sure that we expose enough of the
text and box stuff for use in FLUID.
Update dependencies.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4072 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Input_Choice.H')
| -rw-r--r-- | FL/Fl_Input_Choice.H | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/FL/Fl_Input_Choice.H b/FL/Fl_Input_Choice.H index 2b7d1424e..956d51d14 100644 --- a/FL/Fl_Input_Choice.H +++ b/FL/Fl_Input_Choice.H @@ -96,6 +96,12 @@ public: void clear() { menu_->clear(); } + Fl_Boxtype down_box() const { + return (menu_->down_box()); + } + void down_box(Fl_Boxtype b) { + menu_->down_box(b); + } const Fl_Menu_Item *menu() { return (menu_->menu()); } @@ -107,8 +113,26 @@ public: inp_->resize(inp_x(), inp_y(), inp_w(), inp_h()); menu_->resize(menu_x(), menu_y(), menu_w(), menu_h()); } + Fl_Color textcolor() const { + return (inp_->textcolor()); + } + void textcolor(Fl_Color c) { + inp_->textcolor(c); + } + uchar textfont() const { + return (inp_->textfont()); + } + void textfont(uchar f) { + inp_->textfont(f); + } + uchar textsize() const { + return (inp_->textsize()); + } + void textsize(uchar s) { + inp_->textsize(s); + } const char* value() const { - return(inp_->value()); + return (inp_->value()); } void value(const char *val) { inp_->value(val); |
