]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: cocoa/statbox.mm | |
3 | // Purpose: wxStaticBox | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/02/15 | |
7 | // RCS-ID: $Id: | |
8 | // Copyright: (c) 2003 David Elliott | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/app.h" | |
13 | #include "wx/statbox.h" | |
14 | ||
15 | #include "wx/cocoa/autorelease.h" | |
16 | ||
17 | #import <AppKit/NSBox.h> | |
18 | #import <Foundation/NSString.h> | |
19 | ||
20 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) | |
21 | BEGIN_EVENT_TABLE(wxStaticBox, wxStaticBoxBase) | |
22 | END_EVENT_TABLE() | |
23 | WX_IMPLEMENT_COCOA_OWNER(wxStaticBox,NSBox,NSView,NSView) | |
24 | ||
25 | bool wxStaticBox::Create(wxWindow *parent, wxWindowID winid, | |
26 | const wxString& title, | |
27 | const wxPoint& pos, | |
28 | const wxSize& size, | |
29 | long style, const wxValidator& validator, | |
30 | const wxString& name) | |
31 | { | |
32 | wxAutoNSAutoreleasePool pool; | |
33 | if(!CreateControl(parent,winid,pos,size,style,validator,name)) | |
34 | return false; | |
35 | m_cocoaNSView = NULL; | |
36 | SetNSBox([[NSBox alloc] initWithFrame:NSMakeRect(0,0,30,30)]); | |
37 | [GetNSBox() setTitle:[NSString stringWithCString:title.c_str()]]; | |
38 | if(m_parent) | |
39 | m_parent->CocoaAddChild(this); | |
40 | return true; | |
41 | } | |
42 | ||
43 | wxStaticBox::~wxStaticBox() | |
44 | { | |
45 | DisassociateNSBox(m_cocoaNSView); | |
46 | } | |
47 | ||
48 | void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const | |
49 | { | |
50 | NSRect contentRect = [[GetNSBox() contentView] frame]; | |
51 | NSRect thisRect = [m_cocoaNSView frame]; | |
52 | *borderTop = (int)(thisRect.size.height - (contentRect.origin.y+contentRect.size.height)); | |
53 | *borderOther = (int)(thisRect.size.width - (contentRect.origin.x+contentRect.size.width)); | |
54 | int nextBorder = (int)contentRect.origin.y; | |
55 | if(nextBorder > *borderOther) | |
56 | *borderOther = nextBorder; | |
57 | nextBorder = (int)contentRect.origin.x; | |
58 | if(nextBorder > *borderOther) | |
59 | *borderOther = nextBorder; | |
60 | } | |
61 |