X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cc3fcdff183c0af38f23aa57e5b21b419fc8ee61..8a31648287be0ef976f133de2786b137f1e98340:/src/osx/cocoa/choice.mm diff --git a/src/osx/cocoa/choice.mm b/src/osx/cocoa/choice.mm index d08572479a..0d70d6610d 100644 --- a/src/osx/cocoa/choice.mm +++ b/src/osx/cocoa/choice.mm @@ -4,7 +4,7 @@ // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 -// RCS-ID: $Id: choice.cpp 54129 2008-06-11 19:30:52Z SC $ +// RCS-ID: $Id$ // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -52,6 +52,53 @@ @end +@interface NSView(PossibleSizeMethods) +- (NSControlSize)controlSize; +@end + +class wxChoiceCocoaImpl : public wxWidgetCocoaImpl +{ +public: + wxChoiceCocoaImpl(wxWindowMac *wxpeer, wxNSPopUpButton *v) + : wxWidgetCocoaImpl(wxpeer, v) + { + } + + void GetLayoutInset(int &left , int &top , int &right, int &bottom) const + { + left = top = right = bottom = 0; + NSControlSize size = NSRegularControlSize; + if ( [m_osxView respondsToSelector:@selector(controlSize)] ) + size = [m_osxView controlSize]; + else if ([m_osxView respondsToSelector:@selector(cell)]) + { + id cell = [(id)m_osxView cell]; + if ([cell respondsToSelector:@selector(controlSize)]) + size = [cell controlSize]; + } + + switch( size ) + { + case NSRegularControlSize: + left = right = 3; + top = 2; + bottom = 4; + break; + case NSSmallControlSize: + left = right = 3; + top = 1; + bottom = 4; + break; + case NSMiniControlSize: + left = 1; + right = 2; + top = 0; + bottom = 0; + break; + } + } +}; + wxWidgetImplType* wxWidgetImpl::CreateChoice( wxWindowMac* wxpeer, wxWindowMac* WXUNUSED(parent), wxWindowID WXUNUSED(id), @@ -65,7 +112,7 @@ wxWidgetImplType* wxWidgetImpl::CreateChoice( wxWindowMac* wxpeer, wxNSPopUpButton* v = [[wxNSPopUpButton alloc] initWithFrame:r pullsDown:NO]; [v setMenu: menu->GetHMenu()]; [v setAutoenablesItems:NO]; - wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v ); + wxWidgetCocoaImpl* c = new wxChoiceCocoaImpl( wxpeer, v ); return c; }