+ wxSTOCK_WITH_ACCELERATOR = 2,
+
+ /**
+ Return the label without any ellipsis at the end.
+
+ By default, stock items text is returned with ellipsis, if appropriate,
+ this flag allows to avoid having it. So using the same example as
+ above, the returned string would be "Print" or "&Print" if
+ wxSTOCK_WITH_MNEMONIC were also used.
+
+ This flag can't be combined with wxSTOCK_WITH_ACCELERATOR.
+
+ @since 2.9.1
+ */
+ wxSTOCK_WITHOUT_ELLIPSIS = 4,
+
+ /**
+ Return the label appropriate for a button and not a menu item.
+
+ Currently the main difference is that the trailing ellipsis used in
+ some stock labels is never included in the returned label. Also, the
+ mnemonics is included if this flag is used. So the returned value for
+ wxID_PRINT when this flag is used is "&Print".
+
+ This flag can't be combined with wxSTOCK_WITH_ACCELERATOR.
+
+ @since 2.9.1
+ */
+ wxSTOCK_FOR_BUTTON = wxSTOCK_WITHOUT_ELLIPSIS | wxSTOCK_WITH_MNEMONIC