]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/spinctrl.h
Add wxDateTime::DiffAsDateSpan().
[wxWidgets.git] / include / wx / spinctrl.h
index 8a2ef4d90b78662730f3facc1d30edb6bb0f49c0..cf93212a66156168514e3c34be252f872e5cff86 100644 (file)
@@ -51,6 +51,10 @@ public:
     virtual void SetSnapToTicks(bool snap_to_ticks) = 0;
     // void SetDigits(unsigned digits)              - wxSpinCtrlDouble only
 
+    // The base for numbers display, e.g. 10 or 16.
+    virtual int GetBase() const = 0;
+    virtual bool SetBase(int base) = 0;
+
     // Select text in the textctrl
     virtual void SetSelection(long from, long to) = 0;
 
@@ -134,6 +138,15 @@ typedef void (wxEvtHandler::*wxSpinDoubleEventFunction)(wxSpinDoubleEvent&);
     #include "wx/generic/spinctlg.h"
 #endif
 
+namespace wxPrivate
+{
+
+// This is an internal helper function currently used by all ports: return the
+// string containing hexadecimal representation of the given number.
+extern wxString wxSpinCtrlFormatAsHex(long val, long maxVal);
+
+} // namespace wxPrivate
+
 #endif // wxUSE_SPINCTRL
 
 #endif // _WX_SPINCTRL_H_