is captured. Doesn't capture it, but at least satisfies the assertions.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22362
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
DECLARE_DYNAMIC_CLASS(wxWindowCocoa)
DECLARE_NO_COPY_CLASS(wxWindowCocoa)
DECLARE_EVENT_TABLE()
DECLARE_DYNAMIC_CLASS(wxWindowCocoa)
DECLARE_NO_COPY_CLASS(wxWindowCocoa)
DECLARE_EVENT_TABLE()
+ friend wxWindow *wxWindowBase::GetCapture();
// ------------------------------------------------------------------------
// initialization
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// initialization
// ------------------------------------------------------------------------
WX_NSView m_cocoaNSView;
WX_NSView m_dummyNSView;
bool m_isInPaint;
WX_NSView m_cocoaNSView;
WX_NSView m_dummyNSView;
bool m_isInPaint;
+ static wxWindow *sm_capturedWindow;
// ------------------------------------------------------------------------
// Implementation
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// Implementation
// ------------------------------------------------------------------------
BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase)
END_EVENT_TABLE()
BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase)
END_EVENT_TABLE()
+wxWindow *wxWindowCocoa::sm_capturedWindow = NULL;
+
// Constructor
void wxWindowCocoa::Init()
{
// Constructor
void wxWindowCocoa::Init()
{
void wxWindow::DoCaptureMouse()
{
// TODO
void wxWindow::DoCaptureMouse()
{
// TODO
+ sm_capturedWindow = this;
}
void wxWindow::DoReleaseMouse()
{
// TODO
}
void wxWindow::DoReleaseMouse()
{
// TODO
+ sm_capturedWindow = NULL;
}
void wxWindow::DoScreenToClient(int *x, int *y) const
}
void wxWindow::DoScreenToClient(int *x, int *y) const
/* static */ wxWindow *wxWindowBase::GetCapture()
{
// TODO
/* static */ wxWindow *wxWindowBase::GetCapture()
{
// TODO
+ return wxWindowCocoa::sm_capturedWindow;
}
wxWindow *wxGetActiveWindow()
}
wxWindow *wxGetActiveWindow()