X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/db3d75435a6f5750e2411a9456627a195dfb2d99..2de77c6a543caf44069b275dd154d4fc692ad29d:/include/wx/combo.h 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;