]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gauge.h
don't do anything non trivial (like creating wxFontMapper) in ctors of global objects
[wxWidgets.git] / include / wx / gauge.h
index 17fbc5206e11dc2ae0745f20f9b73d6dc2b2cdc2..4add88a2f3c2cc6257f99066ac58718f72fa26af 100644 (file)
 
 #include "wx/control.h"
 
+// ----------------------------------------------------------------------------
+// wxGauge style flags
+// ----------------------------------------------------------------------------
+
+#define wxGA_HORIZONTAL      wxHORIZONTAL
+#define wxGA_VERTICAL        wxVERTICAL
+
+// Win32 only, is default (and only) on some other platforms
+#define wxGA_SMOOTH          0x0020
+
+// obsolete style
+#define wxGA_PROGRESSBAR     0
+
+
 WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr;
 
 // ----------------------------------------------------------------------------