summaryrefslogtreecommitdiff
path: root/src/Fl_Value_Dial.H
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2005-05-17 07:20:38 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2005-05-17 07:20:38 +0000
commit1cca92c3c8e00147917b6b6749d4e541cdc3174f (patch)
tree9f114c11a54cdcc0b933e228600d8f5423163a58 /src/Fl_Value_Dial.H
parente06ffa5a533ca0c72b286c11b2cf8d5dfcad49e8 (diff)
use Value_ widgets
use Value_ widgets
Diffstat (limited to 'src/Fl_Value_Dial.H')
-rw-r--r--src/Fl_Value_Dial.H49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/Fl_Value_Dial.H b/src/Fl_Value_Dial.H
new file mode 100644
index 0000000..313d5a9
--- /dev/null
+++ b/src/Fl_Value_Dial.H
@@ -0,0 +1,49 @@
+//
+// "$Id: Fl_Value_Dial.H,v 1.1 2005/05/17 09:20:38 hofmann Exp $"
+//
+// Value dial header file for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 1998-2004 by Bill Spitzak and others.
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Library General Public License for more details.
+//
+// You should have received a copy of the GNU Library General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+//
+// Please report all bugs and problems to "fltk-bugs@fltk.org".
+//
+
+#ifndef Fl_Value_Dial_H
+#define Fl_Value_Dial_H
+
+#include <FL/Fl_Dial.H>
+
+class Fl_Value_Dial : public Fl_Dial {
+ uchar textfont_, textsize_;
+ unsigned textcolor_;
+public:
+ void draw();
+ Fl_Value_Dial(int x,int y,int w,int h, const char *l = 0);
+ Fl_Font textfont() const {return (Fl_Font)textfont_;}
+ void textfont(uchar s) {textfont_ = s;}
+ uchar textsize() const {return textsize_;}
+ void textsize(uchar s) {textsize_ = s;}
+ Fl_Color textcolor() const {return (Fl_Color)textcolor_;}
+ void textcolor(unsigned s) {textcolor_ = s;}
+};
+
+#endif
+
+//
+// End of "$Id: Fl_Value_Dial.H,v 1.1 2005/05/17 09:20:38 hofmann Exp $".
+//