Interface tweaks and fixes for Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-12-19 22:39:02 +00:00
parent b821341a03
commit 3d2ee2fb05
3 changed files with 21 additions and 4 deletions

View File

@@ -22,6 +22,11 @@ class wxPopupWindow: public wxNonOwnedWindow
{
public:
/**
Default constructor
*/
wxPopupWindow();
/**
Constructor
*/
@@ -67,6 +72,11 @@ public:
class wxPopupTransientWindow : public wxPopupWindow
{
public:
/**
Default constructor.
*/
wxPopupTransientWindow();
/**
Constructor.
*/
@@ -96,4 +106,12 @@ public:
(which consists in dismissing it if the mouse is clicked outside it).
*/
virtual bool ProcessLeftDown(wxMouseEvent& event);
protected:
/**
This is called when the popup is disappeared because of anything
else but direct call to Dismiss().
*/
virtual void OnDismiss();
};