]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/window.mm
DMC fix.
[wxWidgets.git] / src / cocoa / window.mm
index 96e4777abe017daf5064a94c402da153c22f89c4..630b14bd65db677568432cf11dbd69a5378f1de9 100644 (file)
@@ -25,7 +25,6 @@
 #import <AppKit/NSColor.h>
 #import <AppKit/NSClipView.h>
 #import <Foundation/NSException.h>
-#import <Foundation/NSString.h>
 
 #include <objc/objc-runtime.h>
 
@@ -611,22 +610,20 @@ void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags
     DoMoveWindow(x,y,width,height);
 }
 
-//We should really get rid of wxToolTip :)
-IMPLEMENT_ABSTRACT_CLASS(wxToolTip, wxObject)
+#if wxUSE_TOOLTIPS
 
 void wxWindowCocoa::DoSetToolTip( wxToolTip *tip )
 {
     wxWindowBase::DoSetToolTip(tip);
 
-    wxAutoNSAutoreleasePool pool;
-
     if ( m_tooltip )
     {
         m_tooltip->SetWindow((wxWindow *)this);
-        [GetNSView() setToolTip:wxNSStringWithWxString(m_tooltip->GetTip())];
     }
 }
 
+#endif
+
 void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
 {
     wxAutoNSAutoreleasePool pool;
@@ -698,6 +695,11 @@ WXWidget wxWindow::GetHandle() const
     return m_cocoaNSView;
 }
 
+wxWindow* wxWindow::GetWxWindow() const
+{
+    return (wxWindow*) this;
+}
+
 void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
 {
     [m_cocoaNSView setNeedsDisplay:YES];
@@ -705,7 +707,14 @@ void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
 
 void wxWindow::SetFocus()
 {
-    // TODO
+#ifdef __WXDEBUG__
+    bool bOK = 
+#endif
+        [GetNSView() lockFocusIfCanDraw];
+        
+    //Note that the normal lockFocus works on hidden and minimized windows
+    //and has no return value - which probably isn't what we want
+    wxASSERT(bOK);
 }
 
 void wxWindow::DoCaptureMouse()
@@ -886,8 +895,12 @@ bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
 // Get the window with the focus
 wxWindow *wxWindowBase::DoFindFocus()
 {
-    // TODO
-    return NULL;
+    wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa([NSView focusView]);
+    
+    if (!win)
+        return NULL;
+        
+    return win->GetWxWindow();
 }
 
 /* static */ wxWindow *wxWindowBase::GetCapture()