Add wxComboBox-compatible Popup() and Dismiss() functions in wxComboCtrl
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66397 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -160,7 +160,17 @@ public:
|
||||
|
||||
virtual ~wxComboCtrlBase();
|
||||
|
||||
// show/hide popup window
|
||||
// Show/hide popup window (wxComboBox-compatible methods)
|
||||
virtual void Popup();
|
||||
virtual void Dismiss()
|
||||
{
|
||||
HidePopup(true);
|
||||
}
|
||||
|
||||
// Show/hide popup window.
|
||||
// TODO: Maybe deprecate in favor of Popup()/Dismiss().
|
||||
// However, these functions are still called internally
|
||||
// so it is not straightforward.
|
||||
virtual void ShowPopup();
|
||||
virtual void HidePopup(bool generateEvent=false);
|
||||
|
||||
|
Reference in New Issue
Block a user