From 406a22487fcca6597e7d87765983692720ccbb24 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Thu, 16 May 2013 05:02:18 +0000 Subject: Adding simple access to input widget's selection_color().. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9918 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Spinner.H | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/FL/Fl_Spinner.H b/FL/Fl_Spinner.H index 02830e2e4..b2549adfc 100644 --- a/FL/Fl_Spinner.H +++ b/FL/Fl_Spinner.H @@ -241,6 +241,14 @@ private: Return the background color of the spinner widget's input field. */ Fl_Color color() const { return(input_.color()); } + /** + Change the selection color of the spinner widget's input field. + */ + void selection_color(Fl_Color val) { input_.selection_color(val); } + /** + Return the selection color of the spinner widget's input field. + */ + Fl_Color selection_color() const { return input_.selection_color(); } }; #endif // !Fl_Spinner_H -- cgit v1.2.3