X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/063155781d8b491052a2342f55058bc8a88a4497..2de77c6a543caf44069b275dd154d4fc692ad29d:/include/wx/combo.h diff --git a/include/wx/combo.h b/include/wx/combo.h index b991ad7aa9..6a190e524a 100644 --- a/include/wx/combo.h +++ b/include/wx/combo.h @@ -142,6 +142,7 @@ struct wxComboCtrlFeatures class WXDLLIMPEXP_CORE wxComboCtrlBase : public wxControl { friend class wxComboPopup; + friend class wxComboPopupEvtHandler; public: // ctors and such wxComboCtrlBase() : wxControl() { Init(); } @@ -401,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; } @@ -648,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;