X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/db3d75435a6f5750e2411a9456627a195dfb2d99..89b799cccff2a3cfa5d51dac5c6e9153d2fe2e82:/include/wx/combo.h?ds=sidebyside diff --git a/include/wx/combo.h b/include/wx/combo.h index cfb202be2b..6a190e524a 100644 --- a/include/wx/combo.h +++ b/include/wx/combo.h @@ -402,6 +402,10 @@ public: wxPoint GetMargins() const { return DoGetMargins(); } + // Set custom style flags for embedded wxTextCtrl. Usually must be used + // with two-step creation, before Create() call. + void SetTextCtrlStyle( int style ); + // Return internal flags wxUint32 GetInternalFlags() const { return m_iFlags; } @@ -649,6 +653,9 @@ protected: // platform-dependant customization and other flags wxUint32 m_iFlags; + // custom style for m_text + int m_textCtrlStyle; + // draw blank button background under bitmap? bool m_blankButtonBg;