]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/NSWindow.mm
Updated html files, removed old simplify xsl and shell script
[wxWidgets.git] / src / cocoa / NSWindow.mm
CommitLineData
fb896a32
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: cocoa/NSWindow.mm
3// Purpose: wxCocoaNSWindow
4// Author: David Elliott
5// Modified by:
6// Created: 2003/03/16
7// RCS-ID: $Id:
8// Copyright: (c) 2003 David Elliott
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#include "wx/wxprec.h"
21#ifndef WX_PRECOMP
22 #include "wx/log.h"
23 #include "wx/menuitem.h"
24#endif // WX_PRECOMP
25
fb45bb1f 26#include "wx/cocoa/ObjcPose.h"
fb896a32
DE
27#include "wx/cocoa/NSWindow.h"
28
f910a887 29#import <AppKit/NSWindow.h>
720e01c3
DE
30#import <Foundation/NSNotification.h>
31#import <Foundation/NSString.h>
32
33// ============================================================================
78c67cb6 34// @class wxNSWindowDelegate
720e01c3 35// ============================================================================
78c67cb6 36@interface wxNSWindowDelegate : NSObject
720e01c3 37{
c6f73d05 38 wxCocoaNSWindow *m_wxCocoaInterface;
720e01c3
DE
39}
40
c6f73d05
DE
41- (id)init;
42- (void)setWxCocoaInterface: (wxCocoaNSWindow *)wxCocoaInterface;
43- (wxCocoaNSWindow *)wxCocoaInterface;
44
45// Delegate message handlers
78c67cb6
DE
46- (void)windowDidBecomeKey: (NSNotification *)notification;
47- (void)windowDidResignKey: (NSNotification *)notification;
8fc821cc
DE
48- (void)windowDidBecomeMain: (NSNotification *)notification;
49- (void)windowDidResignMain: (NSNotification *)notification;
eb3426e7 50- (BOOL)windowShouldClose: (id)sender;
9692f42b 51- (void)windowWillClose: (NSNotification *)notification;
86adc758
DE
52
53// Menu item handlers
54- (void)wxMenuItemAction: (id)sender;
55- (BOOL)validateMenuItem: (id)menuItem;
78c67cb6 56@end //interface wxNSWindowDelegate
720e01c3 57
78c67cb6 58@implementation wxNSWindowDelegate : NSObject
720e01c3 59
c6f73d05
DE
60- (id)init
61{
62 m_wxCocoaInterface = NULL;
63 return [super init];
64}
65
66- (void)setWxCocoaInterface: (wxCocoaNSWindow *)wxCocoaInterface
67{
68 m_wxCocoaInterface = wxCocoaInterface;
69}
70
71- (wxCocoaNSWindow *)wxCocoaInterface
72{
73 return m_wxCocoaInterface;
74}
75
86adc758 76// Delegate message handlers
78c67cb6 77- (void)windowDidBecomeKey: (NSNotification *)notification
720e01c3
DE
78{
79 wxCocoaNSWindow *win = wxCocoaNSWindow::GetFromCocoa([notification object]);
c6f73d05 80 wxASSERT(win==m_wxCocoaInterface);
2b030203 81 wxCHECK_RET(win,wxT("notificationDidBecomeKey received but no wxWindow exists"));
aa992c59 82 win->CocoaDelegate_windowDidBecomeKey();
720e01c3
DE
83}
84
78c67cb6 85- (void)windowDidResignKey: (NSNotification *)notification
720e01c3
DE
86{
87 wxCocoaNSWindow *win = wxCocoaNSWindow::GetFromCocoa([notification object]);
c6f73d05 88 wxASSERT(win==m_wxCocoaInterface);
2b030203 89 wxCHECK_RET(win,wxT("notificationDidResignKey received but no wxWindow exists"));
aa992c59 90 win->CocoaDelegate_windowDidResignKey();
720e01c3
DE
91}
92
8fc821cc
DE
93- (void)windowDidBecomeMain: (NSNotification *)notification
94{
95 wxCocoaNSWindow *win = wxCocoaNSWindow::GetFromCocoa([notification object]);
c6f73d05 96 wxASSERT(win==m_wxCocoaInterface);
2b030203 97 wxCHECK_RET(win,wxT("notificationDidBecomeMain received but no wxWindow exists"));
8fc821cc
DE
98 win->CocoaDelegate_windowDidBecomeMain();
99}
100
101- (void)windowDidResignMain: (NSNotification *)notification
102{
103 wxCocoaNSWindow *win = wxCocoaNSWindow::GetFromCocoa([notification object]);
c6f73d05 104 wxASSERT(win==m_wxCocoaInterface);
2b030203 105 wxCHECK_RET(win,wxT("notificationDidResignMain received but no wxWindow exists"));
8fc821cc
DE
106 win->CocoaDelegate_windowDidResignMain();
107}
108
eb3426e7
DE
109- (BOOL)windowShouldClose: (id)sender
110{
48580976 111 wxLogTrace(wxTRACE_COCOA,wxT("windowShouldClose"));
eb3426e7 112 wxCocoaNSWindow *tlw = wxCocoaNSWindow::GetFromCocoa(sender);
c6f73d05 113 wxASSERT(tlw==m_wxCocoaInterface);
aa992c59 114 if(tlw && !tlw->CocoaDelegate_windowShouldClose())
eb3426e7 115 {
48580976 116 wxLogTrace(wxTRACE_COCOA,wxT("Window will not be closed"));
eb3426e7
DE
117 return NO;
118 }
48580976 119 wxLogTrace(wxTRACE_COCOA,wxT("Window will be closed"));
eb3426e7
DE
120 return YES;
121}
122
9692f42b
DE
123- (void)windowWillClose: (NSNotification *)notification
124{
125 wxCocoaNSWindow *win = wxCocoaNSWindow::GetFromCocoa([notification object]);
c6f73d05 126 wxASSERT(win==m_wxCocoaInterface);
2b030203 127 wxCHECK_RET(win,wxT("windowWillClose received but no wxWindow exists"));
9692f42b
DE
128 win->CocoaDelegate_windowWillClose();
129}
130
86adc758
DE
131// Menu item handlers
132- (void)wxMenuItemAction: (id)sender
133{
134 wxASSERT(m_wxCocoaInterface);
135 m_wxCocoaInterface->CocoaDelegate_wxMenuItemAction(sender);
136}
137
138- (BOOL)validateMenuItem: (id)sender
139{
140 wxASSERT(m_wxCocoaInterface);
141 return m_wxCocoaInterface->CocoaDelegate_validateMenuItem(sender);
142}
143
78c67cb6 144@end //implementation wxNSWindowDelegate
720e01c3
DE
145
146// ============================================================================
147// class wxCocoaNSWindow
148// ============================================================================
fb896a32 149
fb896a32
DE
150WX_IMPLEMENT_OBJC_INTERFACE_HASHMAP(NSWindow)
151
c6f73d05
DE
152wxCocoaNSWindow::wxCocoaNSWindow()
153{
154 m_cocoaDelegate = [[wxNSWindowDelegate alloc] init];
155 [m_cocoaDelegate setWxCocoaInterface: this];
156}
157
158wxCocoaNSWindow::~wxCocoaNSWindow()
159{
160 [m_cocoaDelegate setWxCocoaInterface: NULL];
161 [m_cocoaDelegate release];
162}
720e01c3 163
fb896a32
DE
164void wxCocoaNSWindow::AssociateNSWindow(WX_NSWindow cocoaNSWindow)
165{
bac6f234
DE
166 if(cocoaNSWindow)
167 {
168 [cocoaNSWindow setReleasedWhenClosed: NO];
169 sm_cocoaHash.insert(wxCocoaNSWindowHash::value_type(cocoaNSWindow,this));
c6f73d05 170 [cocoaNSWindow setDelegate: m_cocoaDelegate];
720e01c3
DE
171 }
172}
173
174void wxCocoaNSWindow::DisassociateNSWindow(WX_NSWindow cocoaNSWindow)
175{
176 if(cocoaNSWindow)
177 {
78c67cb6 178 [cocoaNSWindow setDelegate: nil];
720e01c3 179 sm_cocoaHash.erase(cocoaNSWindow);
bac6f234 180 }
fb896a32
DE
181}
182
8ded703d 183wxMenuBar* wxCocoaNSWindow::GetAppMenuBar(wxCocoaNSWindow *win)
360be3c0
DE
184{
185 return NULL;
186}
187
fb896a32
DE
188// ============================================================================
189// @class wxPoserNSWindow
190// ============================================================================
191@interface wxPoserNSWindow : NSWindow
192{
193}
194
8fc821cc 195- (BOOL)canBecomeMainWindow;
fb896a32
DE
196@end // wxPoserNSwindow
197
198WX_IMPLEMENT_POSER(wxPoserNSWindow);
199@implementation wxPoserNSWindow : NSWindow
200
8fc821cc
DE
201- (BOOL)canBecomeMainWindow
202{
203 bool canBecome = false;
204 wxCocoaNSWindow *tlw = wxCocoaNSWindow::GetFromCocoa(self);
205 if(!tlw || !tlw->Cocoa_canBecomeMainWindow(canBecome))
206 canBecome = [super canBecomeMainWindow];
207 return canBecome;
208}
209
fb896a32
DE
210@end // implementation wxPoserNSWindow
211