]> git.saurik.com Git - wxWidgets.git/commitdiff
Use WXNSView just like wxWindow does when creating a wxControl. There are
authorDavid Elliott <dfe@tgwbd.org>
Fri, 12 Oct 2007 20:27:02 +0000 (20:27 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Fri, 12 Oct 2007 20:27:02 +0000 (20:27 +0000)
already wxControl subclasses such as wxStaticBox not using primary views which
derive from NSControl so wxControl has to support this already.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/control.mm

index 9fabb68103e9ccdd44d1480461453423a408a2be..fd534d9df60585264cc73b3ea63d41d7b9a50ae6 100644 (file)
@@ -21,6 +21,7 @@
 #include "wx/cocoa/string.h"
 #include "wx/cocoa/trackingrectmanager.h"
 #include "wx/cocoa/objc/objc_uniquifying.h"
+#include "wx/cocoa/objc/NSView.h"
 
 #import <AppKit/NSControl.h>
 #import <AppKit/NSCell.h>
@@ -191,13 +192,11 @@ bool wxControl::Create(wxWindow *parent, wxWindowID winid,
         return false;
     wxLogTrace(wxTRACE_COCOA,wxT("Created control with id=%d"),GetId());
     m_cocoaNSView = NULL;
-    SetNSControl([[WX_GET_OBJC_CLASS(wxNonControlNSControl) alloc] initWithFrame: MakeDefaultNSRect(size)]);
+    SetNSControl([[WX_GET_OBJC_CLASS(WXNSView) alloc] initWithFrame: MakeDefaultNSRect(size)]);
     // NOTE: YES we want to release this (to match the alloc).
     // DoAddChild(this) will retain us again since addSubView doesn't.
     [m_cocoaNSView release];
 
-    [GetNSControl() sizeToFit];
-
     if(m_parent)
         m_parent->CocoaAddChild(this);
     SetInitialFrameRect(pos,size);
@@ -252,7 +251,8 @@ bool wxControl::ProcessCommand(wxCommandEvent& event)
 
 void wxControl::CocoaSetEnabled(bool enable)
 {
-    [GetNSControl() setEnabled: enable];
+    if([GetNSControl() respondsToSelector:@selector(setEnabled:)])
+        [GetNSControl() setEnabled: enable];
 }
 
 /*static*/ void wxControl::CocoaSetLabelForObject(const wxString& label, struct objc_object *aView)