X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/984b0d8ba7ccace8dd84fb12710e44b2a9ec51fa..21c8c5236009308b9ba88d003aae4b764875761a:/include/wx/generic/colrdlgg.h diff --git a/include/wx/generic/colrdlgg.h b/include/wx/generic/colrdlgg.h index 984b0b4e32..d9a7a36998 100644 --- a/include/wx/generic/colrdlgg.h +++ b/include/wx/generic/colrdlgg.h @@ -5,7 +5,7 @@ // Modified by: // Created: 01/02/97 // RCS-ID: $Id$ -// Copyright: (c) +// Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -22,11 +22,17 @@ #include "wx/cmndata.h" #define wxID_ADD_CUSTOM 3000 -#define wxID_RED_SLIDER 3001 -#define wxID_GREEN_SLIDER 3002 -#define wxID_BLUE_SLIDER 3003 -class WXDLLEXPORT wxSlider; +#if wxUSE_SLIDER + + #define wxID_RED_SLIDER 3001 + #define wxID_GREEN_SLIDER 3002 + #define wxID_BLUE_SLIDER 3003 + + class WXDLLEXPORT wxSlider; + +#endif // wxUSE_SLIDER + class WXDLLEXPORT wxGenericColourDialog : public wxDialog { public: @@ -59,9 +65,11 @@ public: void OnAddCustom(wxCommandEvent& event); +#if wxUSE_SLIDER void OnRedSlider(wxCommandEvent& event); void OnGreenSlider(wxCommandEvent& event); void OnBlueSlider(wxCommandEvent& event); +#endif // wxUSE_SLIDER void OnCloseWindow(wxCloseEvent& event); @@ -96,9 +104,11 @@ protected: int colourSelection; int whichKind; // 1 for standard colours, 2 for custom colours, +#if wxUSE_SLIDER wxSlider *redSlider; wxSlider *greenSlider; wxSlider *blueSlider; +#endif // wxUSE_SLIDER int buttonY;