mirror of
https://github.com/fltk/fltk.git
synced 2026-06-01 14:52:46 +08:00
Doxygen PDF Documentation: Added image latex tags, added missing eps corresponding images (most of them in B/W) for the widget classes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6437 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+1
-1
@@ -426,7 +426,7 @@ enum Fl_When { // Fl_Widget::when():
|
|||||||
is the area that is not drawn by the frame types.
|
is the area that is not drawn by the frame types.
|
||||||
|
|
||||||
\image html boxtypes.gif "Figure 1: FLTK standard box types"
|
\image html boxtypes.gif "Figure 1: FLTK standard box types"
|
||||||
|
\image latex boxtypes.eps "FLTK standard box types" width=10cm
|
||||||
\todo Description of boxtypes is incomplete.
|
\todo Description of boxtypes is incomplete.
|
||||||
See below for the defined enum Fl_Boxtype.
|
See below for the defined enum Fl_Boxtype.
|
||||||
\see src/Fl_get_system_colors.cxx
|
\see src/Fl_get_system_colors.cxx
|
||||||
|
|||||||
+2
-1
@@ -40,7 +40,8 @@
|
|||||||
/**
|
/**
|
||||||
The Fl_Adjuster widget was stolen from Prisms, and has proven
|
The Fl_Adjuster widget was stolen from Prisms, and has proven
|
||||||
to be very useful for values that need a large dynamic range.
|
to be very useful for values that need a large dynamic range.
|
||||||
<P ALIGN=CENTER>\image html adjuster1.gif</P>
|
\image html adjuster1.gif
|
||||||
|
\image latex adjuster1.eps "Fl_Adjuster" width=4cm
|
||||||
<P>When you press a button and drag to the right the value increases.
|
<P>When you press a button and drag to the right the value increases.
|
||||||
When you drag to the left it decreases. The largest button adjusts by
|
When you drag to the left it decreases. The largest button adjusts by
|
||||||
100 * step(), the next by 10 * step() and that
|
100 * step(), the next by 10 * step() and that
|
||||||
|
|||||||
+1
-1
@@ -62,7 +62,7 @@ struct FL_CHART_ENTRY {
|
|||||||
It is provided for Forms compatibility.
|
It is provided for Forms compatibility.
|
||||||
|
|
||||||
\image html charts.gif
|
\image html charts.gif
|
||||||
|
\image latex charts.eps "Fl_Chart" width=10cm
|
||||||
\todo Refactor Fl_Chart::type() information.
|
\todo Refactor Fl_Chart::type() information.
|
||||||
|
|
||||||
The type of an Fl_Chart object can be set using type(uchar t) to:
|
The type of an Fl_Chart object can be set using type(uchar t) to:
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
\brief A button with an "checkmark" to show its status.
|
\brief A button with an "checkmark" to show its status.
|
||||||
|
|
||||||
\image html Fl_Check_Button.gif
|
\image html Fl_Check_Button.gif
|
||||||
|
\image latex Fl_Check_Button.eps "Fl_Check_Button" width=4cm
|
||||||
Buttons generate callbacks when they are clicked by the user. You control
|
Buttons generate callbacks when they are clicked by the user. You control
|
||||||
exactly when and how by changing the values for type() and when().
|
exactly when and how by changing the values for type() and when().
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -65,7 +65,7 @@
|
|||||||
only looked at when the menu is popped up, however.
|
only looked at when the menu is popped up, however.
|
||||||
|
|
||||||
\image html choice.gif
|
\image html choice.gif
|
||||||
|
\image latex choice.eps "Fl_Choice" width=4cm
|
||||||
\todo Refactor the doxygen comments for Fl_Choice changed() documentation.
|
\todo Refactor the doxygen comments for Fl_Choice changed() documentation.
|
||||||
|
|
||||||
\li <tt>int Fl_Widget::changed() const</tt>
|
\li <tt>int Fl_Widget::changed() const</tt>
|
||||||
|
|||||||
+16
-3
@@ -41,6 +41,9 @@
|
|||||||
#define FL_ANALOG_CLOCK FL_SQUARE_CLOCK /**< An analog clock is square */
|
#define FL_ANALOG_CLOCK FL_SQUARE_CLOCK /**< An analog clock is square */
|
||||||
#define FL_DIGITAL_CLOCK FL_SQUARE_CLOCK /**< Not yet implemented */
|
#define FL_DIGITAL_CLOCK FL_SQUARE_CLOCK /**< Not yet implemented */
|
||||||
|
|
||||||
|
// fabien: Please keep the horizontal formatting of both images in class desc,
|
||||||
|
// don't loose vert. space for nothing!
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\class Fl_Clock_Output
|
\class Fl_Clock_Output
|
||||||
\brief This widget can be used to display a program-supplied time.
|
\brief This widget can be used to display a program-supplied time.
|
||||||
@@ -48,9 +51,14 @@
|
|||||||
The time shown on the clock is not updated. To display the current time,
|
The time shown on the clock is not updated. To display the current time,
|
||||||
use Fl_Clock instead.
|
use Fl_Clock instead.
|
||||||
|
|
||||||
|
\htmlonly <BR> <table align=CENTER border=1 cellpadding=5 >
|
||||||
|
<caption align=bottom>type() FL_SQUARE_CLOCK and FL_ROUND_CLOCK </caption> <TR><TD> \endhtmlonly
|
||||||
\image html clock.gif
|
\image html clock.gif
|
||||||
|
\htmlonly </TD> <TD> \endhtmlonly
|
||||||
\image html round_clock.gif
|
\image html round_clock.gif
|
||||||
|
\htmlonly </TD> </TR> </table> \endhtmlonly
|
||||||
|
\image latex clock.eps "FL_SQUARE_CLOCK type" width=4cm
|
||||||
|
\image latex round_clock.eps "FL_ROUND_CLOCK type" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Clock_Output : public Fl_Widget {
|
class FL_EXPORT Fl_Clock_Output : public Fl_Widget {
|
||||||
int hour_, minute_, second_;
|
int hour_, minute_, second_;
|
||||||
@@ -101,10 +109,15 @@ public:
|
|||||||
|
|
||||||
Fl_Clock is provided for Forms compatibility.
|
Fl_Clock is provided for Forms compatibility.
|
||||||
It installs a 1-second timeout callback using Fl::add_timeout().
|
It installs a 1-second timeout callback using Fl::add_timeout().
|
||||||
|
You can choose the rounded or square type of the the clock with type(), see below.
|
||||||
|
\htmlonly <BR> <table align=CENTER border=1 cellpadding=5 >
|
||||||
|
<caption align=bottom>type() FL_SQUARE_CLOCK and FL_ROUND_CLOCK </caption> <TR><TD> \endhtmlonly
|
||||||
\image html clock.gif
|
\image html clock.gif
|
||||||
|
\htmlonly </TD> <TD> \endhtmlonly
|
||||||
\image html round_clock.gif
|
\image html round_clock.gif
|
||||||
|
\htmlonly </TD> </TR> </table> \endhtmlonly
|
||||||
|
\image latex clock.eps "FL_SQUARE_CLOCK type" width=4cm
|
||||||
|
\image latex round_clock.eps "FL_ROUND_CLOCK type" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Clock : public Fl_Clock_Output {
|
class FL_EXPORT Fl_Clock : public Fl_Clock_Output {
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ public:
|
|||||||
\brief The Fl_Color_Chooser widget provides a standard RGB color chooser.
|
\brief The Fl_Color_Chooser widget provides a standard RGB color chooser.
|
||||||
|
|
||||||
\image html fl_color_chooser.jpg
|
\image html fl_color_chooser.jpg
|
||||||
|
\image latex fl_color_chooser.eps "fl_color_chooser()" width=5cm
|
||||||
|
|
||||||
You can place any number of the widgets into a panel of your own design.
|
You can place any number of the widgets into a panel of your own design.
|
||||||
The diagram shows the widget as part of a color chooser dialog created by
|
The diagram shows the widget as part of a color chooser dialog created by
|
||||||
|
|||||||
@@ -46,6 +46,7 @@
|
|||||||
Double arrows buttons achieve larger steps than simple arrows.
|
Double arrows buttons achieve larger steps than simple arrows.
|
||||||
\see Fl_Spinner for value input with vertical step arrows.
|
\see Fl_Spinner for value input with vertical step arrows.
|
||||||
<P align=center>\image html counter.gif</P>
|
<P align=center>\image html counter.gif</P>
|
||||||
|
\image latex counter.eps "Fl_Counter" width=4cm
|
||||||
|
|
||||||
\todo Refactor the doxygen comments for Fl_Counter type() documentation.
|
\todo Refactor the doxygen comments for Fl_Counter type() documentation.
|
||||||
|
|
||||||
|
|||||||
@@ -44,6 +44,7 @@
|
|||||||
The Fl_Dial widget provides a circular dial to control a
|
The Fl_Dial widget provides a circular dial to control a
|
||||||
single floating point value.
|
single floating point value.
|
||||||
<P ALIGN=CENTER>\image html dial.gif
|
<P ALIGN=CENTER>\image html dial.gif
|
||||||
|
\image latex dial.eps "Fl_Dial" width=4cm
|
||||||
Use type() to set the type of the dial to:
|
Use type() to set the type of the dial to:
|
||||||
<UL>
|
<UL>
|
||||||
<LI>FL_NORMAL_DIAL - Draws a normal dial with a knob. </LI>
|
<LI>FL_NORMAL_DIAL - Draws a normal dial with a knob. </LI>
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
FL_WHEN_RELEASE callback won't be called if the directory clicked
|
FL_WHEN_RELEASE callback won't be called if the directory clicked
|
||||||
is the same that the current one.
|
is the same that the current one.
|
||||||
<P align=CENTER> \image html Fl_File_Input.gif </P>
|
<P align=CENTER> \image html Fl_File_Input.gif </P>
|
||||||
|
\image latex Fl_File_Input.eps "Fl_File_Input" width=6cm
|
||||||
\note As all Fl_Input derived objects, Fl_File_Input may call its callback
|
\note As all Fl_Input derived objects, Fl_File_Input may call its callback
|
||||||
when loosing focus (see FL_UNFOCUS) to update its state like its cursor shape.
|
when loosing focus (see FL_UNFOCUS) to update its state like its cursor shape.
|
||||||
One resulting side effect is that you should call clear_changed() early in your callback
|
One resulting side effect is that you should call clear_changed() early in your callback
|
||||||
|
|||||||
@@ -145,6 +145,8 @@ public:
|
|||||||
<BR></P>
|
<BR></P>
|
||||||
<P align=center>\image html resizebox1.gif
|
<P align=center>\image html resizebox1.gif
|
||||||
\image html resizebox2.gif</P>
|
\image html resizebox2.gif</P>
|
||||||
|
\image latex resizebox1.eps "before resize" width=4cm
|
||||||
|
\image latex resizebox2.eps "after resize" width=4cm
|
||||||
<P>The resizable may be set to the group itself (this is the default
|
<P>The resizable may be set to the group itself (this is the default
|
||||||
value for an Fl_Group, although NULL is the default
|
value for an Fl_Group, although NULL is the default
|
||||||
for Fl_Window and Fl_Pack), in which case all the
|
for Fl_Window and Fl_Pack), in which case all the
|
||||||
|
|||||||
@@ -42,6 +42,7 @@
|
|||||||
Buttons generate callbacks when they are clicked by the user. You
|
Buttons generate callbacks when they are clicked by the user. You
|
||||||
control exactly when and how by changing the values for type() and when().
|
control exactly when and how by changing the values for type() and when().
|
||||||
<P ALIGN=CENTER>\image html Fl_Light_Button.gif</P>
|
<P ALIGN=CENTER>\image html Fl_Light_Button.gif</P>
|
||||||
|
\image latex Fl_Light_Button.eps "Fl_Light_Button" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Light_Button : public Fl_Button {
|
class FL_EXPORT Fl_Light_Button : public Fl_Button {
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
define the pull-down menus. Sub-sub menus and lower pop up to the right
|
define the pull-down menus. Sub-sub menus and lower pop up to the right
|
||||||
of the submenus. </P>
|
of the submenus. </P>
|
||||||
<P ALIGN=CENTER>\image html menubar.gif</P>
|
<P ALIGN=CENTER>\image html menubar.gif</P>
|
||||||
|
\image latex menubar.eps " menubar" width=12cm
|
||||||
<P>If there is an item in the top menu that is not a title of a
|
<P>If there is an item in the top menu that is not a title of a
|
||||||
submenu, then it acts like a "button" in the menubar. Clicking on it
|
submenu, then it acts like a "button" in the menubar. Clicking on it
|
||||||
will pick it. </P>
|
will pick it. </P>
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
menus) defined by an array of
|
menus) defined by an array of
|
||||||
Fl_Menu_Item objects.
|
Fl_Menu_Item objects.
|
||||||
<P ALIGN=CENTER>\image html menu_button.gif</P>
|
<P ALIGN=CENTER>\image html menu_button.gif</P>
|
||||||
|
\image latex menu_button.eps " menu_button" width=5cm
|
||||||
<P>Normally any mouse button will pop up a menu and it is lined up
|
<P>Normally any mouse button will pop up a menu and it is lined up
|
||||||
below the button as shown in the picture. However an Fl_Menu_Button
|
below the button as shown in the picture. However an Fl_Menu_Button
|
||||||
may also control a pop-up menu. This is done by setting the type()
|
may also control a pop-up menu. This is done by setting the type()
|
||||||
|
|||||||
+1
-1
@@ -102,7 +102,7 @@ class Fl_Menu_;
|
|||||||
\endcode
|
\endcode
|
||||||
produces:
|
produces:
|
||||||
<P ALIGN=CENTER>\image html menu.gif </P>
|
<P ALIGN=CENTER>\image html menu.gif </P>
|
||||||
|
\image latex menu.eps "menu" width=10cm
|
||||||
A submenu title is identified by the bit FL_SUBMENU in the
|
A submenu title is identified by the bit FL_SUBMENU in the
|
||||||
flags field, and ends with a label() that is NULL.
|
flags field, and ends with a label() that is NULL.
|
||||||
You can nest menus to any depth. A pointer to the first item in the
|
You can nest menus to any depth. A pointer to the first item in the
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
portions of the text using the mouse and paste the contents into other
|
portions of the text using the mouse and paste the contents into other
|
||||||
fields or programs.
|
fields or programs.
|
||||||
<P align=CENTER>\image html text.gif</P>
|
<P align=CENTER>\image html text.gif</P>
|
||||||
|
\image latex text.eps "Fl_Output" width=8cm
|
||||||
<P>There is a single subclass,
|
<P>There is a single subclass,
|
||||||
Fl_Multiline_Output, which allows you to display multiple lines of
|
Fl_Multiline_Output, which allows you to display multiple lines of
|
||||||
text. </P>
|
text. </P>
|
||||||
|
|||||||
@@ -41,6 +41,7 @@
|
|||||||
crosshairs are on top, but this is not implemented. The color of the
|
crosshairs are on top, but this is not implemented. The color of the
|
||||||
crosshairs is selection_color().
|
crosshairs is selection_color().
|
||||||
<P ALIGN=CENTER>\image html positioner.gif </P>
|
<P ALIGN=CENTER>\image html positioner.gif </P>
|
||||||
|
\image latex positioner.eps " Fl_Positioner" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Positioner : public Fl_Widget {
|
class FL_EXPORT Fl_Positioner : public Fl_Widget {
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
generates a callback when it is pressed or when the user presses the
|
generates a callback when it is pressed or when the user presses the
|
||||||
Enter key. A carriage-return symbol is drawn next to the button label.
|
Enter key. A carriage-return symbol is drawn next to the button label.
|
||||||
<P ALIGN=CENTER>\image html Fl_Return_Button.gif
|
<P ALIGN=CENTER>\image html Fl_Return_Button.gif
|
||||||
|
\image latex Fl_Return_Button.eps "Fl_Return_Button" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Return_Button : public Fl_Button {
|
class FL_EXPORT Fl_Return_Button : public Fl_Button {
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
The Fl_Roller widget is a "dolly" control commonly used to
|
The Fl_Roller widget is a "dolly" control commonly used to
|
||||||
move 3D objects.
|
move 3D objects.
|
||||||
<P ALIGN=CENTER>\image html Fl_Roller.gif
|
<P ALIGN=CENTER>\image html Fl_Roller.gif
|
||||||
|
\image latex Fl_Roller.eps "Fl_Roller" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Roller : public Fl_Valuator {
|
class FL_EXPORT Fl_Roller : public Fl_Valuator {
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
control exactly when and how by changing the values for type()
|
control exactly when and how by changing the values for type()
|
||||||
and when().
|
and when().
|
||||||
<P ALIGN=CENTER>\image html Fl_Round_Button.gif</P>
|
<P ALIGN=CENTER>\image html Fl_Round_Button.gif</P>
|
||||||
|
\image latex Fl_Round_Button.eps " Fl_Round_Button" width=4cm
|
||||||
<P>The Fl_Round_Button subclass display the "on" state by
|
<P>The Fl_Round_Button subclass display the "on" state by
|
||||||
turning on a light, rather than drawing pushed in. The shape of the
|
turning on a light, rather than drawing pushed in. The shape of the
|
||||||
"light" is initially set to FL_ROUND_DOWN_BOX. The color of the light
|
"light" is initially set to FL_ROUND_DOWN_BOX. The color of the light
|
||||||
|
|||||||
@@ -40,6 +40,7 @@
|
|||||||
of this object then scrollbars will appear so that you can scroll over
|
of this object then scrollbars will appear so that you can scroll over
|
||||||
to them:
|
to them:
|
||||||
<P ALIGN=CENTER>\image html Fl_Scroll.gif </P>
|
<P ALIGN=CENTER>\image html Fl_Scroll.gif </P>
|
||||||
|
\image latex Fl_Scroll.eps "Fl_Scroll" width=4cm
|
||||||
<P>If all of the child widgets are packed together into a solid
|
<P>If all of the child widgets are packed together into a solid
|
||||||
rectangle then you want to set box() to FL_NO_BOX or
|
rectangle then you want to set box() to FL_NO_BOX or
|
||||||
one of the _FRAME types. This will result in the best output.
|
one of the _FRAME types. This will result in the best output.
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
values. You will then have to use casts to get at the floating-point
|
values. You will then have to use casts to get at the floating-point
|
||||||
versions of value() from Fl_Slider. </P>
|
versions of value() from Fl_Slider. </P>
|
||||||
<P ALIGN=CENTER>\image html scrollbar.gif
|
<P ALIGN=CENTER>\image html scrollbar.gif
|
||||||
|
\image latex scrollbar.eps "Fl_Scrollbar" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Scrollbar : public Fl_Slider {
|
class FL_EXPORT Fl_Scrollbar : public Fl_Slider {
|
||||||
|
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
/**
|
/**
|
||||||
This widget creates a counter with only 2 arrow buttons
|
This widget creates a counter with only 2 arrow buttons
|
||||||
<P align=center>\image html counter.gif</P>
|
<P align=center>\image html counter.gif</P>
|
||||||
|
\image latex counter.eps "Fl_Simple_Counter" width=4cm
|
||||||
*/
|
*/
|
||||||
class Fl_Simple_Counter : public Fl_Counter {
|
class Fl_Simple_Counter : public Fl_Counter {
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -66,6 +66,7 @@
|
|||||||
nice looking control knob. </LI>
|
nice looking control knob. </LI>
|
||||||
</UL>
|
</UL>
|
||||||
<P ALIGN=CENTER>\image html slider.gif
|
<P ALIGN=CENTER>\image html slider.gif
|
||||||
|
\image latex slider.eps "Fl_Slider" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Slider : public Fl_Valuator {
|
class FL_EXPORT Fl_Slider : public Fl_Valuator {
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
switches in a panel, as popularized by many toolkits.
|
switches in a panel, as popularized by many toolkits.
|
||||||
|
|
||||||
<P ALIGN=CENTER>\image html tabs.gif </P>
|
<P ALIGN=CENTER>\image html tabs.gif </P>
|
||||||
|
\image latex tabs.eps "Fl_Tabs" width=8cm
|
||||||
|
|
||||||
<P>Clicking the tab makes a child visible() by calling
|
<P>Clicking the tab makes a child visible() by calling
|
||||||
show() on it, and all other children are made invisible
|
show() on it, and all other children are made invisible
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
the border between them:
|
the border between them:
|
||||||
|
|
||||||
<P ALIGN=CENTER>\image html Fl_Tile.gif </P>
|
<P ALIGN=CENTER>\image html Fl_Tile.gif </P>
|
||||||
|
\image latex Fl_Tile.eps "Fl_Tile" width=4cm
|
||||||
|
|
||||||
<P>For the tiling to work correctly, the children of an
|
<P>For the tiling to work correctly, the children of an
|
||||||
Fl_Tile must cover the entire area of the widget, but not
|
Fl_Tile must cover the entire area of the widget, but not
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
and insures that callbacks are done the same for every object.
|
and insures that callbacks are done the same for every object.
|
||||||
<P>There are probably more of these classes in FLTK than any others:
|
<P>There are probably more of these classes in FLTK than any others:
|
||||||
<P ALIGN=CENTER>\image html valuators.gif</P>
|
<P ALIGN=CENTER>\image html valuators.gif</P>
|
||||||
|
\image latex valuators.eps "Valuators derived from Fl_Valuators" width=10cm
|
||||||
<P>In the above diagram each box surrounds an actual subclass. These
|
<P>In the above diagram each box surrounds an actual subclass. These
|
||||||
are further differentiated by setting the type() of the widget t
|
are further differentiated by setting the type() of the widget t
|
||||||
o the symbolic value labeling the widget.
|
o the symbolic value labeling the widget.
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
values.
|
values.
|
||||||
|
|
||||||
<P ALIGN="CENTER">\image html Fl_Value_Input.gif
|
<P ALIGN="CENTER">\image html Fl_Value_Input.gif
|
||||||
|
\image latex Fl_Value_Input.eps "Fl_Value_Input" width=8cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Value_Input : public Fl_Valuator {
|
class FL_EXPORT Fl_Value_Input : public Fl_Valuator {
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
Fl_Value_Input because it contains no text editing code or
|
Fl_Value_Input because it contains no text editing code or
|
||||||
character buffer. </P>
|
character buffer. </P>
|
||||||
<P ALIGN=CENTER>\image html Fl_Value_Output.gif
|
<P ALIGN=CENTER>\image html Fl_Value_Output.gif
|
||||||
|
\image latex Fl_Value_Output.eps "Fl_Value_Output" width=8cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Value_Output : public Fl_Valuator {
|
class FL_EXPORT Fl_Value_Output : public Fl_Valuator {
|
||||||
Fl_Font textfont_;
|
Fl_Font textfont_;
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
The Fl_Value_Slider widget is a Fl_Slider widget
|
The Fl_Value_Slider widget is a Fl_Slider widget
|
||||||
with a box displaying the current value.
|
with a box displaying the current value.
|
||||||
<P ALIGN=CENTER>\image html value_slider.gif
|
<P ALIGN=CENTER>\image html value_slider.gif
|
||||||
|
\image latex value_slider.eps "Fl_Value_Slider" width=4cm
|
||||||
*/
|
*/
|
||||||
class FL_EXPORT Fl_Value_Slider : public Fl_Slider {
|
class FL_EXPORT Fl_Value_Slider : public Fl_Slider {
|
||||||
Fl_Font textfont_;
|
Fl_Font textfont_;
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user