#pragma interface "popupwinbase.h"
#endif
-#include "wx/window.h"
+#include "wx/defs.h"
#if wxUSE_POPUPWIN
+
+#include "wx/window.h"
+
// ----------------------------------------------------------------------------
// wxPopupWindow: a special kind of top level window used for popup menus,
// combobox popups and such.
virtual void Position(const wxPoint& ptOrigin,
const wxSize& size);
+ virtual bool IsTopLevel() const { return true; }
+
DECLARE_NO_COPY_CLASS(wxPopupWindowBase)
};
//
// VZ: where is this used??
virtual bool CanDismiss()
- { return TRUE; }
+ { return true; }
- // called when a mouse is pressed while the popup is shown: return TRUE
+ // called when a mouse is pressed while the popup is shown: return true
// from here to prevent its normal processing by the popup (which consists
// in dismissing it if the mouse is cilcked outside it)
virtual bool ProcessLeftDown(wxMouseEvent& event);
+ // Overridden to grab the input on some plaforms
+ virtual bool Show( bool show = true );
+
protected:
// common part of all ctors
void Init();
// remove our event handlers
void PopHandlers();
+ // get alerted when child gets deleted from under us
+ void OnDestroy(wxWindowDestroyEvent& event);
+
+#ifdef __WXMSW__
+ // check if the mouse needs captured or released
+ void OnIdle(wxIdleEvent& event);
+#endif
+
// the child of this popup if any
wxWindow *m_child;
wxPopupWindowHandler *m_handlerPopup;
wxPopupFocusHandler *m_handlerFocus;
+ DECLARE_EVENT_TABLE()
DECLARE_DYNAMIC_CLASS(wxPopupTransientWindow)
DECLARE_NO_COPY_CLASS(wxPopupTransientWindow)
};