/////////////////////////////////////////////////////////////////////////////
// Name: popupwin.h
-// Purpose: interface of wxPoppWindow
+// Purpose: interface of wxPopupWindow
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows licence
{
public:
+ /**
+ Default constructor
+ */
+ wxPopupWindow();
+
/**
Constructor
*/
class wxPopupTransientWindow : public wxPopupWindow
{
public:
+ /**
+ Default constructor.
+ */
+ wxPopupTransientWindow();
+
/**
Constructor.
*/
(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();
+
};