EVT_SPINCTRL( Minimal_PopupSpinctrl, SimpleTransientPopup::OnSpinCtrl )
END_EVENT_TABLE()
-SimpleTransientPopup::SimpleTransientPopup( wxWindow *parent ) :
- wxPopupTransientWindow( parent )
+SimpleTransientPopup::SimpleTransientPopup( wxWindow *parent )
+ :wxPopupTransientWindow( parent )
{
m_panel = new wxScrolledWindow( this, wxID_ANY );
m_panel->SetBackgroundColour( *wxLIGHT_GREY );
+
+ // Keep this code to verify if mouse events work, they're required if
+ // you're making a control like a combobox where the items are highlighted
+ // under the cursor, the m_panel is set focus in the Popup() function
+ //m_panel->Connect(wxEVT_MOTION,
+ // wxMouseEventHandler(SimpleTransientPopup::OnMouse),
+ // NULL, this);
+
wxStaticText *text = new wxStaticText( m_panel, wxID_ANY,
wxT("wx.PopupTransientWindow is a\n")
wxT("wx.PopupWindow which disappears\n")
void SimpleTransientPopup::Popup(wxWindow *focus)
{
wxLogMessage( wxT("0x%lx SimpleTransientPopup::Popup"), long(this) );
- wxPopupTransientWindow::Popup(focus);
+ wxPopupTransientWindow::Popup(focus ? focus : m_panel);
}
void SimpleTransientPopup::OnDismiss()
void SimpleTransientPopup::OnMouse(wxMouseEvent &event)
{
- wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnMouse pos(%d, %d)"), long(this), event.GetX(), event.GetY());
+ wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnMouse pos(%d, %d)"), long(event.GetEventObject()), event.GetX(), event.GetY());
event.Skip();
}
void OnStartScrolledPopup(wxCommandEvent& event);
private:
+ SimpleTransientPopup *m_simplePopup;
+ SimpleTransientPopup *m_scrolledPopup;
DECLARE_EVENT_TABLE()
};
void OnStartScrolledPopup(wxCommandEvent& event);
private:
+ SimpleTransientPopup *m_simplePopup;
+ SimpleTransientPopup *m_scrolledPopup;
wxTextCtrl *m_logWin;
wxLog *m_logOld;
DECLARE_EVENT_TABLE()
MyFrame::MyFrame(const wxString& title)
: wxFrame(NULL, wxID_ANY, title)
{
+ m_simplePopup = m_scrolledPopup = NULL;
+
SetIcon(wxICON(sample));
#if wxUSE_MENUS
SetMenuBar(menuBar);
#endif // wxUSE_MENUS
- wxButton *button1 = new wxButton( this, Minimal_StartSimplePopup, wxT("Show simple popup"), wxPoint(20,20) );
- wxButton *button2 = new wxButton( this, Minimal_StartScrolledPopup, wxT("Show scrolled popup"), wxPoint(20,70) );
+ wxPanel *panel = new wxPanel(this, -1);
+ wxButton *button1 = new wxButton( panel, Minimal_StartSimplePopup, wxT("Show simple popup"), wxPoint(20,20) );
+ wxButton *button2 = new wxButton( panel, Minimal_StartScrolledPopup, wxT("Show scrolled popup"), wxPoint(20,70) );
- m_logWin = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition,
- wxDefaultSize, wxTE_MULTILINE );
+ m_logWin = new wxTextCtrl( panel, wxID_ANY, wxEmptyString, wxDefaultPosition,
+ wxDefaultSize, wxTE_MULTILINE );
m_logWin->SetEditable(false);
wxLogTextCtrl* logger = new wxLogTextCtrl( m_logWin );
m_logOld = logger->SetActiveTarget( logger );
logger->SetTimestamp( NULL );
wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL );
- topSizer->Add( button1, 0 );
- topSizer->Add( button2, 0 );
- topSizer->Add( m_logWin, 1, wxEXPAND );
+ topSizer->Add( button1, 0, wxALL, 5 );
+ topSizer->Add( button2, 0, wxALL, 5 );
+ topSizer->Add( m_logWin, 1, wxEXPAND|wxALL, 5 );
- SetAutoLayout( true );
- SetSizer( topSizer );
+ panel->SetAutoLayout( true );
+ panel->SetSizer( topSizer );
#if wxUSE_STATUSBAR
// create a status bar just for fun (by default with 1 pane only)
void MyFrame::OnStartSimplePopup(wxCommandEvent& event)
{
wxLogMessage( wxT("================================================") );
- SimpleTransientPopup* popup = new SimpleTransientPopup( this );
+ delete m_simplePopup;
+ m_simplePopup = new SimpleTransientPopup( this );
wxWindow *btn = (wxWindow*) event.GetEventObject();
wxPoint pos = btn->ClientToScreen( wxPoint(0,0) );
wxSize sz = btn->GetSize();
- popup->Position( pos, sz );
- wxLogMessage( wxT("0x%lx Simple Popup Shown pos(%d, %d) size(%d, %d)"), long(popup), pos.x, pos.y, sz.x, sz.y );
- popup->Popup();
+ m_simplePopup->Position( pos, sz );
+ wxLogMessage( wxT("0x%lx Simple Popup Shown pos(%d, %d) size(%d, %d)"), long(m_simplePopup), pos.x, pos.y, sz.x, sz.y );
+ m_simplePopup->Popup();
}
void MyFrame::OnStartScrolledPopup(wxCommandEvent& event)
{
wxLogMessage( wxT("================================================") );
- SimpleTransientPopup* popup = new SimpleTransientPopup( this );
- popup->GetChild()->SetScrollbars(1, 1, 1000, 1000);
+ delete m_scrolledPopup;
+ m_scrolledPopup = new SimpleTransientPopup( this );
+ m_scrolledPopup->GetChild()->SetScrollbars(1, 1, 1000, 1000);
wxWindow *btn = (wxWindow*) event.GetEventObject();
wxPoint pos = btn->ClientToScreen( wxPoint(0,0) );
wxSize sz = btn->GetSize();
- popup->Position( pos, sz );
- wxLogMessage( wxT("0x%lx Scrolled Popup Shown pos(%d, %d) size(%d, %d)"), long(popup), pos.x, pos.y, sz.x, sz.y );
- popup->Popup();
+ m_scrolledPopup->Position( pos, sz );
+ wxLogMessage( wxT("0x%lx Scrolled Popup Shown pos(%d, %d) size(%d, %d)"), long(m_scrolledPopup), pos.x, pos.y, sz.x, sz.y );
+ m_scrolledPopup->Popup();
}
void MyFrame::OnTestDialog(wxCommandEvent& WXUNUSED(event))
END_EVENT_TABLE()
MyDialog::MyDialog(const wxString& title)
- : wxDialog(NULL, wxID_ANY, title, wxPoint(50,50), wxSize(400,300))
+ :wxDialog(NULL, wxID_ANY, title, wxPoint(50,50), wxSize(400,300))
{
+ m_simplePopup = m_scrolledPopup = NULL;
+ wxPanel *panel = new wxPanel(this, -1);
- new wxButton( this, Minimal_StartSimplePopup, wxT("Show simple popup"), wxPoint(20,20) );
- new wxButton( this, Minimal_StartScrolledPopup, wxT("Show scrolled popup"), wxPoint(20,60) );
+ wxButton *button1 = new wxButton( panel, Minimal_StartSimplePopup, wxT("Show simple popup"), wxPoint(20,20) );
+ wxButton *button2 = new wxButton( panel, Minimal_StartScrolledPopup, wxT("Show scrolled popup"), wxPoint(20,60) );
- new wxButton( this, wxID_OK, wxT("OK"), wxPoint(20,200) );
+ wxButton *okButton = new wxButton( panel, wxID_OK, wxT("OK"), wxPoint(20,200) );
+
+ wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL );
+ topSizer->Add( button1, 0, wxALL, 5 );
+ topSizer->Add( button2, 0, wxALL, 5 );
+ topSizer->AddSpacer(40);
+ topSizer->Add( okButton, 0, wxALL, 5 );
+
+ panel->SetAutoLayout( true );
+ panel->SetSizer( topSizer );
+ topSizer->Fit(this);
}
void MyDialog::OnStartSimplePopup(wxCommandEvent& event)
{
wxLogMessage( wxT("================================================") );
- SimpleTransientPopup* popup = new SimpleTransientPopup( this );
+ delete m_simplePopup;
+ m_simplePopup = new SimpleTransientPopup( this );
wxWindow *btn = (wxWindow*) event.GetEventObject();
wxPoint pos = btn->ClientToScreen( wxPoint(0,0) );
wxSize sz = btn->GetSize();
- popup->Position( pos, sz );
- wxLogMessage( wxT("0x%lx Dialog Simple Popup Shown pos(%d, %d) size(%d, %d)"), long(popup), pos.x, pos.y, sz.x, sz.y );
- popup->Popup();
+ m_simplePopup->Position( pos, sz );
+ wxLogMessage( wxT("0x%lx Dialog Simple Popup Shown pos(%d, %d) size(%d, %d)"), long(m_simplePopup), pos.x, pos.y, sz.x, sz.y );
+ m_simplePopup->Popup();
}
void MyDialog::OnStartScrolledPopup(wxCommandEvent& event)
{
wxLogMessage( wxT("================================================") );
- SimpleTransientPopup* popup = new SimpleTransientPopup( this );
- popup->GetChild()->SetScrollbars(1, 1, 1000, 1000);
+ delete m_scrolledPopup;
+ m_scrolledPopup = new SimpleTransientPopup( this );
+ m_scrolledPopup->GetChild()->SetScrollbars(1, 1, 1000, 1000);
wxWindow *btn = (wxWindow*) event.GetEventObject();
wxPoint pos = btn->ClientToScreen( wxPoint(0,0) );
wxSize sz = btn->GetSize();
- popup->Position( pos, sz );
- wxLogMessage( wxT("0x%lx Dialog Scrolled Popup Shown pos(%d, %d) size(%d, %d)"), long(popup), pos.x, pos.y, sz.x, sz.y );
- popup->Popup();
+ m_scrolledPopup->Position( pos, sz );
+ wxLogMessage( wxT("0x%lx Dialog Scrolled Popup Shown pos(%d, %d) size(%d, %d)"), long(m_scrolledPopup), pos.x, pos.y, sz.x, sz.y );
+ m_scrolledPopup->Popup();
}
class wxPopupWindowHandler : public wxEvtHandler
{
public:
- wxPopupWindowHandler(wxPopupTransientWindow *popup) { m_popup = popup; }
+ wxPopupWindowHandler(wxPopupTransientWindow *popup) : m_popup(popup) {}
+ ~wxPopupWindowHandler();
protected:
// event handlers
class wxPopupFocusHandler : public wxEvtHandler
{
public:
- wxPopupFocusHandler(wxPopupTransientWindow *popup)
- {
- m_popup = popup;
- }
+ wxPopupFocusHandler(wxPopupTransientWindow *popup) : m_popup(popup) {}
+ ~wxPopupFocusHandler();
protected:
void OnKillFocus(wxFocusEvent& event);
// wxPopupTransientWindow
// ----------------------------------------------------------------------------
+BEGIN_EVENT_TABLE(wxPopupTransientWindow, wxPopupWindow)
+#ifdef __WXMSW__
+ EVT_ENTER_WINDOW(wxPopupTransientWindow::OnEnter)
+ EVT_LEAVE_WINDOW(wxPopupTransientWindow::OnLeave)
+ EVT_LEFT_DOWN(wxPopupTransientWindow::OnLeftDown)
+#endif
+END_EVENT_TABLE()
+
void wxPopupTransientWindow::Init()
{
m_child =
}
#ifdef __WXMSW__
+ if ( HasCapture() )
+ {
+ ReleaseCapture();
+ }
if ( m_focus )
{
if ( m_handlerFocus && !m_focus->RemoveEventHandler(m_handlerFocus) )
Show();
+ // There is is a problem if these are still valid
+ wxASSERT_MSG(!m_handlerPopup, wxT("Popup handler not deleted"));
+ wxASSERT_MSG(!m_handlerFocus, wxT("Focus handler not deleted"));
+
delete m_handlerPopup;
m_handlerPopup = new wxPopupWindowHandler(this);
PushEventHandler(m_handlerFocus);
#endif // __WXMSW__
+ // catch destroy events, if you close a program with a popup shown in MSW
+ // you get a segfault if m_child or m_focus are deleted before this is
+ m_child->Connect(wxEVT_DESTROY,
+ wxWindowDestroyEventHandler(wxPopupTransientWindow::OnDestroy),
+ NULL, this);
+ m_focus->Connect(wxEVT_DESTROY,
+ wxWindowDestroyEventHandler(wxPopupTransientWindow::OnDestroy),
+ NULL, this);
+#ifdef __WXMSW__
+ // Assume that the mouse is currently outside of the popup window
+ CaptureMouse();
+
+ // Connect the child Enter/Leave events too, incase the child completly
+ // covers the popup (because then the popup's enter/leave events won't be
+ // sent.
+ if (m_child != this)
+ {
+ m_child->Connect(wxEVT_ENTER_WINDOW,
+ wxMouseEventHandler(wxPopupTransientWindow::OnChildEnter),
+ NULL, this);
+ m_child->Connect(wxEVT_LEAVE_WINDOW,
+ wxMouseEventHandler(wxPopupTransientWindow::OnChildLeave),
+ NULL, this);
+ }
+#endif
}
bool wxPopupTransientWindow::Show( bool show )
return false;
}
+void wxPopupTransientWindow::OnDestroy(wxWindowDestroyEvent& event)
+{
+ if (event.GetEventObject() == m_child)
+ m_child = NULL;
+ if (event.GetEventObject() == m_focus)
+ m_focus = NULL;
+}
+
+void wxPopupTransientWindow::OnEnter(wxMouseEvent& /*event*/)
+{
+ if ( HasCapture() )
+ {
+ ReleaseCapture();
+ }
+}
+
+void wxPopupTransientWindow::OnLeave(wxMouseEvent& /*event*/)
+{
+ CaptureMouse();
+}
+
+void wxPopupTransientWindow::OnLeftDown(wxMouseEvent& event)
+{
+ if (m_handlerPopup && m_child && m_child != this)
+ {
+ m_child->GetEventHandler()->ProcessEvent(event);
+ }
+}
+
+
+
+// If the child is the same size as the popup window then handle the event,
+// otherwise assume that there is enough of the popup showing that it will get
+// it's own Enter/Leave events. A more reliable way to detect this situation
+// would be appreciated...
+
+void wxPopupTransientWindow::OnChildEnter(wxMouseEvent& event)
+{
+ if (m_child)
+ {
+ wxSize cs = m_child->GetSize();
+ wxSize ps = GetClientSize();
+
+ if ((cs.x * cs.y) >= (ps.x * ps.y))
+ OnEnter(event);
+ }
+}
+
+void wxPopupTransientWindow::OnChildLeave(wxMouseEvent& event)
+{
+ if (m_child)
+ {
+ wxSize cs = m_child->GetSize();
+ wxSize ps = GetClientSize();
+
+ if ((cs.x * cs.y) >= (ps.x * ps.y))
+ OnLeave(event);
+ }
+}
+
#if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// wxPopupWindowHandler
// ----------------------------------------------------------------------------
+wxPopupWindowHandler::~wxPopupWindowHandler()
+{
+ if (m_popup && (m_popup->m_handlerPopup == this))
+ m_popup->m_handlerPopup = NULL;
+}
void wxPopupWindowHandler::OnLeftDown(wxMouseEvent& event)
{
// ----------------------------------------------------------------------------
// wxPopupFocusHandler
// ----------------------------------------------------------------------------
+wxPopupFocusHandler::~wxPopupFocusHandler()
+{
+ if (m_popup && (m_popup->m_handlerFocus == this))
+ m_popup->m_handlerFocus = NULL;
+}
void wxPopupFocusHandler::OnKillFocus(wxFocusEvent& event)
{