]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/clrpicker.h
Better support for unspecified property value in wxDateProperty and DatePickerCtrl...
[wxWidgets.git] / interface / wx / clrpicker.h
index 062c134d13f9114444f4cdecdd9c2bb400d45f10..93391720f736dd15cc5c3477a7b5168ff3e5866b 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxColourPickerCtrl
-    @wxheader{clrpicker.h}
 
     This control allows the user to select a colour. The generic implementation
     is a button which brings up a wxColourDialog when clicked. Native
@@ -40,7 +39,7 @@
 
     @library{wxcore}
     @category{pickers}
-    <!-- @appearance{colourpickerctrl.png} -->
+    @appearance{colourpickerctrl.png}
 
     @see wxColourDialog, wxColourPickerEvent
 */
@@ -51,12 +50,12 @@ public:
         Initializes the object and calls Create() with all the parameters.
     */
     wxColourPickerCtrl(wxWindow* parent, wxWindowID id,
-                       const wxColour& colour = wxBLACK,
+                       const wxColour& colour = *wxBLACK,
                        const wxPoint& pos = wxDefaultPosition,
                        const wxSize& size = wxDefaultSize,
                        long style = wxCLRP_DEFAULT_STYLE,
                        const wxValidator& validator = wxDefaultValidator,
-                       const wxString& name = "colourpickerctrl");
+                       const wxString& name = wxColourPickerCtrlNameStr);
 
     /**
         Creates a colour picker with the given arguments.
@@ -82,12 +81,12 @@ public:
                 creation failed.
     */
     bool Create(wxWindow* parent, wxWindowID id,
-                const wxColour& colour = wxBLACK,
+                const wxColour& colour = *wxBLACK,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 long style = wxCLRP_DEFAULT_STYLE,
                 const wxValidator& validator = wxDefaultValidator,
-                const wxString& name = "colourpickerctrl");
+                const wxString& name = wxColourPickerCtrlNameStr);
 
     /**
         Returns the currently selected colour.
@@ -107,7 +106,6 @@ public:
 
 /**
     @class wxColourPickerEvent
-    @wxheader{clrpicker.h}
 
     This event class is used for the events generated by wxColourPickerCtrl.