X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7e1492a132ec9e1728c51471624bf1211139838a..eba99da4c0563e6508761272a1e1f1b791d0af6b:/include/wx/generic/colrdlgg.h diff --git a/include/wx/generic/colrdlgg.h b/include/wx/generic/colrdlgg.h index aac12ca72a..8e80019d78 100644 --- a/include/wx/generic/colrdlgg.h +++ b/include/wx/generic/colrdlgg.h @@ -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); @@ -92,16 +100,15 @@ protected: // 16 'custom' colours wxColour customColours[16]; - // One single custom colour (use sliders) - wxColour singleCustomColour; - // Which colour is selected? An index into one of the two areas. 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;