]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/timectrl.h
Implement setFont on the iOS port of wxStaticText.
[wxWidgets.git] / interface / wx / timectrl.h
index 42a7e18a2b9620b017e607ce2678d0cbb8779bfb..5b25143048ff6d28fa6d7da24079541613c81e49 100644 (file)
@@ -3,11 +3,25 @@
 // Purpose:     interface of wxTimePickerCtrl
 // Author:      Vadim Zeitlin
 // Created:     2011-09-22
-// RCS-ID:      $Id$
 // Copyright:   (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+/**
+    Styles used with wxTimePickerCtrl.
+
+    Currently no special styles are defined for this object.
+
+    @library{wxadv}
+    @category{pickers}
+
+    @since 2.9.3
+ */
+enum
+{
+    wxTP_DEFAULT = 0
+};
+
 /**
     @class wxTimePickerCtrl
 
@@ -30,7 +44,7 @@
 
     @library{wxadv}
     @category{pickers}
-    @appearance{timepickerctrl.png}
+    @appearance{timepickerctrl}
 
     @see wxDatePickerCtrl, wxDateEvent
 
 class wxTimePickerCtrl : public wxControl
 {
 public:
+    /**
+       Default constructor.
+    */
+    wxTimePickerCtrl();
+    
     /**
         Initializes the object and calls Create() with all the parameters.
     */
@@ -106,7 +125,7 @@ public:
         The date part of the returned wxDateTime object is always set to today
         and should be ignored, only the time part is relevant.
     */
-    virtual wxDateTime GetValue() const = 0;
+    virtual wxDateTime GetValue() const;
 
     /**
         Changes the current time of the control.
@@ -142,5 +161,5 @@ public:
 
         Calling this method does not result in a time change event.
     */
-    virtual void SetValue(const wxDateTime& dt) = 0;
+    virtual void SetValue(const wxDateTime& dt);
 };