summaryrefslogtreecommitdiff
path: root/src/Fl_Color_Chooser.cxx
diff options
context:
space:
mode:
authorengelsman <engelsman>2008-09-21 13:20:12 +0000
committerengelsman <engelsman>2008-09-21 13:20:12 +0000
commita4b0ac592e12036425f43f0570bfed5a781ff215 (patch)
tree26231c6883d3d97a97ae21a14087f5a151011136 /src/Fl_Color_Chooser.cxx
parentc7921f06ad8480e18f74b89f326ac9f73e0ddefa (diff)
doxygen comments for undocumented features of Fl_Color_Browser
added comment for mode() and enum {M_RGB, ...} but now I can't find the latter on the genrated pages. What have I done wrong? Also added #ifndef FL_DOXYGEN around the Flcc_* helper classes so they won't appear in the docs, or cause undocumented warnings from doxygen. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6331 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Color_Chooser.cxx')
-rw-r--r--src/Fl_Color_Chooser.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Fl_Color_Chooser.cxx b/src/Fl_Color_Chooser.cxx
index d06393e16..fe7e46b02 100644
--- a/src/Fl_Color_Chooser.cxx
+++ b/src/Fl_Color_Chooser.cxx
@@ -93,7 +93,13 @@ void Fl_Color_Chooser::rgb2hsv(
}
}
-enum {M_RGB, M_BYTE, M_HEX, M_HSV}; // modes
+/** Fl_Color_Chooser modes */
+enum {
+ M_RGB, /**< mode() of Fl_Color_Chooser showing RGB values */
+ M_BYTE, /**< mode() of Fl_Color_Chooser showing byte values */
+ M_HEX, /**< mode() of Fl_Color_Chooser showing hex values */
+ M_HSV /**< mode() of Fl_Color_Chooser showing HSV values */
+};
static Fl_Menu_Item mode_menu[] = {
{"rgb"},
{"byte"},