]> git.saurik.com Git - wxWidgets.git/commitdiff
Updated universal setup.
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 29 May 2006 16:06:34 +0000 (16:06 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 29 May 2006 16:06:34 +0000 (16:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/univ/setup0.h

index 55c8b0046313ab5350783955f224f761c0ac373a..14f0dd6b8bb7b9d3a4bedc903a2ef4c06421c4a3 100644 (file)
     #define wxUSE_STD_IOSTREAM 0
 #endif
 
     #define wxUSE_STD_IOSTREAM 0
 #endif
 
+// Support for positional parameters (e.g. %1$d, %2$s ...) in wxVsnprintf.
+// Note that if the system's implementation does not support positional
+// parameters, setting this to 1 forces the use of the wxWidgets implementation
+// of wxVsnprintf. The standard vsnprintf() supports positional parameters on
+// many Unix systems but usually doesn't under Windows.
+//
+// Positional parameters are very useful when translating a program since using
+// them in formatting strings allow translators to correctly reorder the
+// translated sentences.
+//
+// Default is 1
+//
+// Recommended setting: 1 if you want to support multiple languages
+#define wxUSE_PRINTF_POS_PARAMS      0
+
 // ----------------------------------------------------------------------------
 // non GUI features selection
 // ----------------------------------------------------------------------------
 // ----------------------------------------------------------------------------
 // non GUI features selection
 // ----------------------------------------------------------------------------
 // Default is 1
 //
 // Recommended setting: 1
 // Default is 1
 //
 // Recommended setting: 1
-#define wxUSE_BUTTON       1    // wxButton
-#define wxUSE_BMPBUTTON    1    // wxBitmapButton
-#define wxUSE_CALENDARCTRL 1    // wxCalendarCtrl
-#define wxUSE_CHECKBOX     1    // wxCheckBox
-#define wxUSE_CHECKLISTBOX 1    // wxCheckListBox
-#define wxUSE_CHOICE       1    // wxChoice
-#define wxUSE_COMBOBOX     1    // wxComboBox
-#define wxUSE_DATAVIEWCTRL 1    // wxDataViewCtrl
-#define wxUSE_DATEPICKCTRL 1    // wxDatePickerCtrl
-#define wxUSE_GAUGE        1    // wxGauge
-#define wxUSE_LISTBOX      1    // wxListBox
-#define wxUSE_LISTCTRL     1    // wxListCtrl
-#define wxUSE_RADIOBOX     1    // wxRadioBox
-#define wxUSE_RADIOBTN     1    // wxRadioButton
-#define wxUSE_SCROLLBAR    1    // wxScrollBar
-#define wxUSE_SLIDER       1    // wxSlider
-#define wxUSE_SPINBTN      1    // wxSpinButton
-#define wxUSE_SPINCTRL     1    // wxSpinCtrl
-#define wxUSE_STATBOX      1    // wxStaticBox
-#define wxUSE_STATLINE     1    // wxStaticLine
-#define wxUSE_STATTEXT     1    // wxStaticText
-#define wxUSE_STATBMP      1    // wxStaticBitmap
-#define wxUSE_TEXTCTRL     1    // wxTextCtrl
-#define wxUSE_TOGGLEBTN    1    // wxToggleButton
-#define wxUSE_TREECTRL     1    // wxTreeCtrl
+#define wxUSE_BUTTON        1    // wxButton
+#define wxUSE_BMPBUTTON     1    // wxBitmapButton
+#define wxUSE_CALENDARCTRL  1    // wxCalendarCtrl
+#define wxUSE_CHECKBOX      1    // wxCheckBox
+#define wxUSE_CHECKLISTBOX  1    // wxCheckListBox
+#define wxUSE_CHOICE        1    // wxChoice
+#define wxUSE_COMBOBOX      1    // wxComboBox
+#define wxUSE_DATAVIEWCTRL  1    // wxDataViewCtrl
+#define wxUSE_DATEPICKCTRL  1    // wxDatePickerCtrl
+#define wxUSE_GAUGE         1    // wxGauge
+#define wxUSE_HYPERLINKCTRL 1   // wxHyperlinkCtrl
+#define wxUSE_LISTBOX       1    // wxListBox
+#define wxUSE_LISTCTRL      1    // wxListCtrl
+#define wxUSE_RADIOBOX      1    // wxRadioBox
+#define wxUSE_RADIOBTN      1    // wxRadioButton
+#define wxUSE_SCROLLBAR     1    // wxScrollBar
+#define wxUSE_SLIDER        1    // wxSlider
+#define wxUSE_SPINBTN       1    // wxSpinButton
+#define wxUSE_SPINCTRL      1    // wxSpinCtrl
+#define wxUSE_STATBOX       1    // wxStaticBox
+#define wxUSE_STATLINE      1    // wxStaticLine
+#define wxUSE_STATTEXT      1    // wxStaticText
+#define wxUSE_STATBMP       1    // wxStaticBitmap
+#define wxUSE_TEXTCTRL      1    // wxTextCtrl
+#define wxUSE_TOGGLEBTN     1    // wxToggleButton
+#define wxUSE_TREECTRL      1    // wxTreeCtrl
 
 // Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
 // below either wxStatusBar95 or a generic wxStatusBar will be used.
 
 // Use a status bar class? Depending on the value of wxUSE_NATIVE_STATUSBAR
 // below either wxStatusBar95 or a generic wxStatusBar will be used.