]>
Commit | Line | Data |
---|---|---|
a15eb0a5 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: mac/toplevel.cpp | |
3 | // Purpose: implements wxTopLevelWindow for MSW | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 24.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
9 | // License: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "toplevel.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/app.h" | |
33 | #include "wx/toplevel.h" | |
422644a3 | 34 | #include "wx/frame.h" |
a15eb0a5 SC |
35 | #include "wx/string.h" |
36 | #include "wx/log.h" | |
37 | #include "wx/intl.h" | |
38 | #endif //WX_PRECOMP | |
39 | ||
5f0b2f22 | 40 | #include "wx/mac/uma.h" |
422644a3 | 41 | #include "wx/mac/aga.h" |
5f0b2f22 | 42 | #include "wx/tooltip.h" |
a07c1212 | 43 | #include "wx/dnd.h" |
5f0b2f22 | 44 | |
34dc8f91 SC |
45 | #define wxMAC_DEBUG_REDRAW 0 |
46 | #ifndef wxMAC_DEBUG_REDRAW | |
47 | #define wxMAC_DEBUG_REDRAW 0 | |
48 | #endif | |
49 | ||
a15eb0a5 SC |
50 | // ---------------------------------------------------------------------------- |
51 | // globals | |
52 | // ---------------------------------------------------------------------------- | |
53 | ||
54 | // list of all frames and modeless dialogs | |
55 | wxWindowList wxModelessWindows; | |
56 | ||
57 | // ============================================================================ | |
58 | // wxTopLevelWindowMac implementation | |
59 | // ============================================================================ | |
60 | ||
5f0b2f22 SC |
61 | // --------------------------------------------------------------------------- |
62 | // wxWindowMac utility functions | |
63 | // --------------------------------------------------------------------------- | |
64 | ||
65 | // Find an item given the Macintosh Window Reference | |
66 | ||
67 | wxList *wxWinMacWindowList = NULL; | |
76a5e5d2 | 68 | wxTopLevelWindowMac *wxFindWinFromMacWindow(WXWindow inWindowRef) |
5f0b2f22 SC |
69 | { |
70 | wxNode *node = wxWinMacWindowList->Find((long)inWindowRef); | |
71 | if (!node) | |
72 | return NULL; | |
73 | return (wxTopLevelWindowMac *)node->Data(); | |
74 | } | |
75 | ||
76a5e5d2 | 76 | void wxAssociateWinWithMacWindow(WXWindow inWindowRef, wxTopLevelWindowMac *win) |
5f0b2f22 SC |
77 | { |
78 | // adding NULL WindowRef is (first) surely a result of an error and | |
79 | // (secondly) breaks menu command processing | |
80 | wxCHECK_RET( inWindowRef != (WindowRef) NULL, "attempt to add a NULL WindowRef to window list" ); | |
81 | ||
82 | if ( !wxWinMacWindowList->Find((long)inWindowRef) ) | |
83 | wxWinMacWindowList->Append((long)inWindowRef, win); | |
84 | } | |
85 | ||
86 | void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win) | |
87 | { | |
88 | wxWinMacWindowList->DeleteObject(win); | |
89 | } | |
90 | ||
91 | ||
a15eb0a5 SC |
92 | // ---------------------------------------------------------------------------- |
93 | // wxTopLevelWindowMac creation | |
94 | // ---------------------------------------------------------------------------- | |
95 | ||
76a5e5d2 | 96 | WXHWND wxTopLevelWindowMac::s_macWindowInUpdate = NULL; |
5f0b2f22 | 97 | |
a15eb0a5 SC |
98 | void wxTopLevelWindowMac::Init() |
99 | { | |
100 | m_iconized = | |
101 | m_maximizeOnShow = FALSE; | |
5f0b2f22 SC |
102 | m_macNoEraseUpdateRgn = NewRgn() ; |
103 | m_macNeedsErasing = false ; | |
6a17ca35 | 104 | m_macWindow = NULL ; |
a15eb0a5 SC |
105 | } |
106 | ||
107 | bool wxTopLevelWindowMac::Create(wxWindow *parent, | |
108 | wxWindowID id, | |
109 | const wxString& title, | |
110 | const wxPoint& pos, | |
111 | const wxSize& size, | |
112 | long style, | |
113 | const wxString& name) | |
114 | { | |
115 | // init our fields | |
116 | Init(); | |
117 | ||
118 | m_windowStyle = style; | |
119 | ||
120 | SetName(name); | |
121 | ||
122 | m_windowId = id == -1 ? NewControlId() : id; | |
123 | ||
124 | wxTopLevelWindows.Append(this); | |
125 | ||
126 | if ( parent ) | |
127 | parent->AddChild(this); | |
128 | ||
129 | return TRUE; | |
130 | } | |
131 | ||
132 | wxTopLevelWindowMac::~wxTopLevelWindowMac() | |
133 | { | |
6a17ca35 SC |
134 | if ( m_macWindow ) |
135 | { | |
136 | wxToolTip::NotifyWindowDelete(m_macWindow) ; | |
137 | UMADisposeWindow( (WindowRef) m_macWindow ) ; | |
138 | } | |
139 | ||
5f0b2f22 SC |
140 | wxRemoveMacWindowAssociation( this ) ; |
141 | ||
a15eb0a5 SC |
142 | wxTopLevelWindows.DeleteObject(this); |
143 | ||
144 | if ( wxModelessWindows.Find(this) ) | |
145 | wxModelessWindows.DeleteObject(this); | |
146 | ||
147 | // If this is the last top-level window, exit. | |
148 | if ( wxTheApp && (wxTopLevelWindows.Number() == 0) ) | |
149 | { | |
150 | wxTheApp->SetTopWindow(NULL); | |
151 | ||
152 | if ( wxTheApp->GetExitOnFrameDelete() ) | |
153 | { | |
154 | wxTheApp->ExitMainLoop() ; | |
155 | } | |
156 | } | |
76a5e5d2 | 157 | DisposeRgn( (RgnHandle) m_macNoEraseUpdateRgn ) ; |
a15eb0a5 SC |
158 | } |
159 | ||
160 | ||
161 | // ---------------------------------------------------------------------------- | |
162 | // wxTopLevelWindowMac maximize/minimize | |
163 | // ---------------------------------------------------------------------------- | |
164 | ||
165 | void wxTopLevelWindowMac::Maximize(bool maximize) | |
166 | { | |
167 | // not available on mac | |
168 | } | |
169 | ||
170 | bool wxTopLevelWindowMac::IsMaximized() const | |
171 | { | |
172 | return false ; | |
173 | } | |
174 | ||
175 | void wxTopLevelWindowMac::Iconize(bool iconize) | |
176 | { | |
177 | // not available on mac | |
178 | } | |
179 | ||
180 | bool wxTopLevelWindowMac::IsIconized() const | |
181 | { | |
ed60b502 | 182 | // mac dialogs cannot be iconized |
a15eb0a5 SC |
183 | return FALSE; |
184 | } | |
185 | ||
186 | void wxTopLevelWindowMac::Restore() | |
187 | { | |
188 | // not available on mac | |
189 | } | |
190 | ||
191 | // ---------------------------------------------------------------------------- | |
192 | // wxTopLevelWindowMac misc | |
193 | // ---------------------------------------------------------------------------- | |
194 | ||
195 | void wxTopLevelWindowMac::SetIcon(const wxIcon& icon) | |
196 | { | |
197 | // this sets m_icon | |
198 | wxTopLevelWindowBase::SetIcon(icon); | |
199 | } | |
5f0b2f22 SC |
200 | |
201 | void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title, | |
202 | const wxPoint& pos, | |
203 | const wxSize& size, | |
204 | long style, | |
205 | const wxString& name ) | |
206 | { | |
207 | SetName(name); | |
208 | m_windowStyle = style; | |
209 | m_isShown = FALSE; | |
210 | ||
211 | // create frame. | |
212 | ||
213 | Rect theBoundsRect; | |
214 | ||
215 | m_x = (int)pos.x; | |
216 | m_y = (int)pos.y; | |
217 | if ( m_y < 50 ) | |
218 | m_y = 50 ; | |
219 | if ( m_x < 20 ) | |
220 | m_x = 20 ; | |
221 | ||
222 | m_width = size.x; | |
223 | if (m_width == -1) | |
224 | m_width = 20; | |
225 | m_height = size.y; | |
226 | if (m_height == -1) | |
227 | m_height = 20; | |
228 | ||
229 | ::SetRect(&theBoundsRect, m_x, m_y , m_x + m_width, m_y + m_height); | |
230 | ||
231 | // translate the window attributes in the appropriate window class and attributes | |
232 | ||
233 | WindowClass wclass = 0; | |
234 | WindowAttributes attr = kWindowNoAttributes ; | |
235 | ||
fb7b5389 | 236 | if ( HasFlag( wxFRAME_TOOL_WINDOW) || HasFlag(wxTINY_CAPTION_HORIZ) || HasFlag(wxTINY_CAPTION_VERT) ) |
5f0b2f22 SC |
237 | { |
238 | wclass = kFloatingWindowClass ; | |
239 | if ( HasFlag(wxTINY_CAPTION_VERT) ) | |
240 | { | |
241 | attr |= kWindowSideTitlebarAttribute ; | |
242 | } | |
243 | } | |
244 | else if ( HasFlag( wxCAPTION ) ) | |
245 | { | |
246 | if ( HasFlag( wxDIALOG_MODAL ) ) | |
247 | { | |
60fcb584 | 248 | wclass = kDocumentWindowClass ; // kMovableModalWindowClass ; |
5f0b2f22 SC |
249 | } |
250 | else | |
251 | { | |
252 | wclass = kDocumentWindowClass ; | |
253 | } | |
254 | } | |
255 | else | |
256 | { | |
257 | wclass = kModalWindowClass ; | |
258 | } | |
259 | ||
260 | if ( HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ) | |
261 | { | |
262 | attr |= kWindowFullZoomAttribute ; | |
263 | attr |= kWindowCollapseBoxAttribute ; | |
264 | } | |
265 | if ( HasFlag( wxRESIZE_BORDER ) ) | |
266 | { | |
267 | attr |= kWindowResizableAttribute ; | |
268 | } | |
269 | if ( HasFlag( wxSYSTEM_MENU ) ) | |
270 | { | |
271 | attr |= kWindowCloseBoxAttribute ; | |
272 | } | |
273 | ||
76a5e5d2 | 274 | ::CreateNewWindow( wclass , attr , &theBoundsRect , (WindowRef*)&m_macWindow ) ; |
5f0b2f22 SC |
275 | wxAssociateWinWithMacWindow( m_macWindow , this ) ; |
276 | wxString label ; | |
277 | if( wxApp::s_macDefaultEncodingIsPC ) | |
278 | label = wxMacMakeMacStringFromPC( title ) ; | |
279 | else | |
280 | label = title ; | |
76a5e5d2 SC |
281 | UMASetWTitleC( (WindowRef)m_macWindow , label ) ; |
282 | ::CreateRootControl( (WindowRef)m_macWindow , (ControlHandle*)&m_macRootControl ) ; | |
5f0b2f22 SC |
283 | |
284 | m_macFocus = NULL ; | |
285 | } | |
286 | ||
76a5e5d2 | 287 | void wxTopLevelWindowMac::MacGetPortParams(WXPOINTPTR localOrigin, WXRECTPTR clipRect, WXHWND *window , wxWindowMac** rootwin) |
5f0b2f22 | 288 | { |
76a5e5d2 SC |
289 | ((Point*)localOrigin)->h = 0; |
290 | ((Point*)localOrigin)->v = 0; | |
291 | ((Rect*)clipRect)->left = 0; | |
292 | ((Rect*)clipRect)->top = 0; | |
293 | ((Rect*)clipRect)->right = m_width; | |
294 | ((Rect*)clipRect)->bottom = m_height; | |
5f0b2f22 SC |
295 | *window = m_macWindow ; |
296 | *rootwin = this ; | |
297 | } | |
298 | ||
299 | void wxTopLevelWindowMac::Clear() | |
300 | { | |
7d9d1fd7 | 301 | wxWindow::Clear() ; |
5f0b2f22 SC |
302 | } |
303 | ||
76a5e5d2 | 304 | WXWidget wxTopLevelWindowMac::MacGetContainerForEmbedding() |
5f0b2f22 SC |
305 | { |
306 | return m_macRootControl ; | |
307 | } | |
308 | ||
309 | ||
310 | void wxTopLevelWindowMac::MacUpdate( long timestamp) | |
311 | { | |
76a5e5d2 | 312 | |
66a09d47 | 313 | wxMacPortStateHelper help( (GrafPtr) GetWindowPort( (WindowRef) m_macWindow) ) ; |
76a5e5d2 SC |
314 | |
315 | BeginUpdate( (WindowRef)m_macWindow ) ; | |
5f0b2f22 SC |
316 | |
317 | RgnHandle updateRgn = NewRgn(); | |
318 | RgnHandle diffRgn = NewRgn() ; | |
319 | if ( updateRgn && diffRgn ) | |
320 | { | |
76a5e5d2 SC |
321 | GetPortVisibleRegion( GetWindowPort( (WindowRef)m_macWindow ), updateRgn ); |
322 | DiffRgn( updateRgn , (RgnHandle) m_macNoEraseUpdateRgn , diffRgn ) ; | |
5f0b2f22 SC |
323 | if ( !EmptyRgn( updateRgn ) ) |
324 | { | |
325 | MacRedraw( updateRgn , timestamp , m_macNeedsErasing || !EmptyRgn( diffRgn ) ) ; | |
326 | } | |
327 | } | |
328 | if ( updateRgn ) | |
329 | DisposeRgn( updateRgn ); | |
330 | if ( diffRgn ) | |
331 | DisposeRgn( diffRgn ); | |
76a5e5d2 SC |
332 | EndUpdate( (WindowRef)m_macWindow ) ; |
333 | SetEmptyRgn( (RgnHandle) m_macNoEraseUpdateRgn ) ; | |
5f0b2f22 SC |
334 | m_macNeedsErasing = false ; |
335 | } | |
336 | ||
337 | ||
338 | // Raise the window to the top of the Z order | |
339 | void wxTopLevelWindowMac::Raise() | |
340 | { | |
76a5e5d2 | 341 | ::BringToFront( (WindowRef)m_macWindow ) ; |
5f0b2f22 SC |
342 | } |
343 | ||
344 | // Lower the window to the bottom of the Z order | |
345 | void wxTopLevelWindowMac::Lower() | |
346 | { | |
76a5e5d2 | 347 | ::SendBehind( (WindowRef)m_macWindow , NULL ) ; |
5f0b2f22 SC |
348 | } |
349 | ||
350 | Point lastWhere ; | |
351 | long lastWhen = 0 ; | |
352 | extern int wxBusyCursorCount ; | |
353 | ||
76a5e5d2 | 354 | void wxTopLevelWindowMac::MacFireMouseEvent( WXEVENTREF evr ) |
5f0b2f22 | 355 | { |
76a5e5d2 | 356 | EventRecord *ev = (EventRecord*) evr ; |
5f0b2f22 SC |
357 | wxMouseEvent event(wxEVT_LEFT_DOWN); |
358 | bool isDown = !(ev->modifiers & btnState) ; // 1 is for up | |
359 | bool controlDown = ev->modifiers & controlKey ; // for simulating right mouse | |
360 | ||
361 | event.m_leftDown = isDown && !controlDown; | |
362 | ||
363 | event.m_middleDown = FALSE; | |
364 | event.m_rightDown = isDown && controlDown; | |
365 | ||
366 | if ( ev->what == mouseDown ) | |
367 | { | |
368 | if ( controlDown ) | |
369 | event.SetEventType(wxEVT_RIGHT_DOWN ) ; | |
370 | else | |
371 | event.SetEventType(wxEVT_LEFT_DOWN ) ; | |
372 | } | |
373 | else if ( ev->what == mouseUp ) | |
374 | { | |
375 | if ( controlDown ) | |
376 | event.SetEventType(wxEVT_RIGHT_UP ) ; | |
377 | else | |
378 | event.SetEventType(wxEVT_LEFT_UP ) ; | |
379 | } | |
380 | else | |
381 | { | |
382 | event.SetEventType(wxEVT_MOTION ) ; | |
383 | } | |
384 | ||
385 | event.m_shiftDown = ev->modifiers & shiftKey; | |
386 | event.m_controlDown = ev->modifiers & controlKey; | |
387 | event.m_altDown = ev->modifiers & optionKey; | |
388 | event.m_metaDown = ev->modifiers & cmdKey; | |
389 | ||
390 | Point localwhere = ev->where ; | |
391 | ||
392 | GrafPtr port ; | |
393 | ::GetPort( &port ) ; | |
76a5e5d2 | 394 | ::SetPort( UMAGetWindowPort( (WindowRef)m_macWindow ) ) ; |
5f0b2f22 SC |
395 | ::GlobalToLocal( &localwhere ) ; |
396 | ::SetPort( port ) ; | |
397 | ||
398 | if ( ev->what == mouseDown ) | |
399 | { | |
400 | if ( ev->when - lastWhen <= GetDblTime() ) | |
401 | { | |
402 | if ( abs( localwhere.h - lastWhere.h ) < 3 || abs( localwhere.v - lastWhere.v ) < 3 ) | |
403 | { | |
404 | if ( controlDown ) | |
405 | event.SetEventType(wxEVT_RIGHT_DCLICK ) ; | |
406 | else | |
407 | event.SetEventType(wxEVT_LEFT_DCLICK ) ; | |
408 | } | |
409 | lastWhen = 0 ; | |
410 | } | |
411 | else | |
412 | { | |
413 | lastWhen = ev->when ; | |
414 | } | |
415 | lastWhere = localwhere ; | |
416 | } | |
417 | ||
418 | event.m_x = localwhere.h; | |
419 | event.m_y = localwhere.v; | |
420 | event.m_x += m_x; | |
421 | event.m_y += m_y; | |
422 | ||
5f0b2f22 SC |
423 | event.m_timeStamp = ev->when; |
424 | event.SetEventObject(this); | |
425 | if ( wxTheApp->s_captureWindow ) | |
426 | { | |
427 | int x = event.m_x ; | |
428 | int y = event.m_y ; | |
429 | wxTheApp->s_captureWindow->ScreenToClient( &x , &y ) ; | |
430 | event.m_x = x ; | |
431 | event.m_y = y ; | |
2e6857fa | 432 | event.SetEventObject( wxTheApp->s_captureWindow ) ; |
5f0b2f22 | 433 | wxTheApp->s_captureWindow->GetEventHandler()->ProcessEvent( event ) ; |
ed60b502 | 434 | |
5f0b2f22 SC |
435 | if ( ev->what == mouseUp ) |
436 | { | |
437 | wxTheApp->s_captureWindow = NULL ; | |
438 | if ( wxBusyCursorCount == 0 ) | |
439 | { | |
440 | m_cursor.MacInstall() ; | |
441 | } | |
442 | } | |
443 | } | |
444 | else | |
445 | { | |
446 | MacDispatchMouseEvent( event ) ; | |
447 | } | |
448 | } | |
449 | ||
76a5e5d2 | 450 | void wxTopLevelWindowMac::MacMouseDown( WXEVENTREF ev , short part) |
5f0b2f22 SC |
451 | { |
452 | MacFireMouseEvent( ev ) ; | |
453 | } | |
454 | ||
76a5e5d2 | 455 | void wxTopLevelWindowMac::MacMouseUp( WXEVENTREF ev , short part) |
5f0b2f22 SC |
456 | { |
457 | switch (part) | |
458 | { | |
459 | case inContent: | |
460 | { | |
461 | MacFireMouseEvent( ev ) ; | |
462 | } | |
463 | break ; | |
464 | } | |
465 | } | |
466 | ||
76a5e5d2 | 467 | void wxTopLevelWindowMac::MacMouseMoved( WXEVENTREF ev , short part) |
5f0b2f22 SC |
468 | { |
469 | switch (part) | |
470 | { | |
471 | case inContent: | |
472 | { | |
473 | MacFireMouseEvent( ev ) ; | |
474 | } | |
475 | break ; | |
476 | } | |
477 | } | |
76a5e5d2 | 478 | void wxTopLevelWindowMac::MacActivate( WXEVENTREF ev , bool inIsActivating ) |
5f0b2f22 SC |
479 | { |
480 | wxActivateEvent event(wxEVT_ACTIVATE, inIsActivating , m_windowId); | |
76a5e5d2 | 481 | event.m_timeStamp = ((EventRecord*)ev)->when ; |
5f0b2f22 SC |
482 | event.SetEventObject(this); |
483 | ||
484 | GetEventHandler()->ProcessEvent(event); | |
485 | ||
76a5e5d2 | 486 | UMAHighlightAndActivateWindow( (WindowRef)m_macWindow , inIsActivating ) ; |
5f0b2f22 | 487 | |
1c469f7f | 488 | MacSuperEnabled( inIsActivating ) ; |
5f0b2f22 SC |
489 | } |
490 | ||
76a5e5d2 | 491 | void wxTopLevelWindowMac::MacKeyDown( WXEVENTREF ev ) |
5f0b2f22 SC |
492 | { |
493 | } | |
494 | ||
495 | void wxTopLevelWindowMac::SetTitle(const wxString& title) | |
496 | { | |
497 | wxWindow::SetTitle( title ) ; | |
498 | ||
499 | wxString label ; | |
500 | ||
501 | if( wxApp::s_macDefaultEncodingIsPC ) | |
502 | label = wxMacMakeMacStringFromPC( m_label ) ; | |
503 | else | |
504 | label = m_label ; | |
505 | ||
76a5e5d2 | 506 | UMASetWTitleC( (WindowRef)m_macWindow , label ) ; |
5f0b2f22 SC |
507 | } |
508 | ||
509 | bool wxTopLevelWindowMac::Show(bool show) | |
510 | { | |
511 | if ( !wxWindow::Show(show) ) | |
512 | return FALSE; | |
513 | ||
514 | if (show) | |
515 | { | |
76a5e5d2 SC |
516 | ::ShowWindow( (WindowRef)m_macWindow ) ; |
517 | ::SelectWindow( (WindowRef)m_macWindow ) ; | |
5f0b2f22 SC |
518 | // no need to generate events here, they will get them triggered by macos |
519 | // actually they should be , but apparently they are not | |
520 | wxSize size(m_width, m_height); | |
521 | wxSizeEvent event(size, m_windowId); | |
522 | event.SetEventObject(this); | |
523 | GetEventHandler()->ProcessEvent(event); | |
524 | } | |
525 | else | |
526 | { | |
76a5e5d2 | 527 | ::HideWindow( (WindowRef)m_macWindow ) ; |
5f0b2f22 SC |
528 | } |
529 | ||
530 | if ( !show ) | |
531 | { | |
532 | } | |
533 | else | |
534 | { | |
535 | Refresh() ; | |
536 | } | |
537 | ||
538 | return TRUE; | |
539 | } | |
540 | ||
541 | void wxTopLevelWindowMac::DoMoveWindow(int x, int y, int width, int height) | |
542 | { | |
543 | int former_x = m_x ; | |
544 | int former_y = m_y ; | |
545 | int former_w = m_width ; | |
546 | int former_h = m_height ; | |
547 | ||
548 | int actualWidth = width; | |
549 | int actualHeight = height; | |
550 | int actualX = x; | |
551 | int actualY = y; | |
552 | ||
553 | if ((m_minWidth != -1) && (actualWidth < m_minWidth)) | |
554 | actualWidth = m_minWidth; | |
555 | if ((m_minHeight != -1) && (actualHeight < m_minHeight)) | |
556 | actualHeight = m_minHeight; | |
557 | if ((m_maxWidth != -1) && (actualWidth > m_maxWidth)) | |
558 | actualWidth = m_maxWidth; | |
559 | if ((m_maxHeight != -1) && (actualHeight > m_maxHeight)) | |
560 | actualHeight = m_maxHeight; | |
561 | ||
562 | bool doMove = false ; | |
563 | bool doResize = false ; | |
564 | ||
565 | if ( actualX != former_x || actualY != former_y ) | |
566 | { | |
567 | doMove = true ; | |
568 | } | |
569 | if ( actualWidth != former_w || actualHeight != former_h ) | |
570 | { | |
571 | doResize = true ; | |
572 | } | |
573 | ||
574 | if ( doMove || doResize ) | |
575 | { | |
576 | m_x = actualX ; | |
577 | m_y = actualY ; | |
578 | m_width = actualWidth ; | |
579 | m_height = actualHeight ; | |
580 | ||
581 | if ( doMove ) | |
76a5e5d2 | 582 | ::MoveWindow((WindowRef)m_macWindow, m_x, m_y , false); // don't make frontmost |
5f0b2f22 SC |
583 | |
584 | if ( doResize ) | |
76a5e5d2 | 585 | ::SizeWindow((WindowRef)m_macWindow, m_width, m_height , true); |
5f0b2f22 SC |
586 | |
587 | // the OS takes care of invalidating and erasing the new area | |
588 | // we have erased the old one | |
589 | ||
590 | if ( IsKindOf( CLASSINFO( wxFrame ) ) ) | |
591 | { | |
592 | wxFrame* frame = (wxFrame*) this ; | |
593 | frame->PositionStatusBar(); | |
594 | frame->PositionToolBar(); | |
595 | } | |
596 | if ( doMove ) | |
597 | wxWindowMac::MacTopLevelWindowChangedPosition() ; // like this only children will be notified | |
598 | ||
599 | MacRepositionScrollBars() ; | |
600 | if ( doMove ) | |
601 | { | |
602 | wxPoint point(m_x, m_y); | |
603 | wxMoveEvent event(point, m_windowId); | |
604 | event.SetEventObject(this); | |
605 | GetEventHandler()->ProcessEvent(event) ; | |
606 | } | |
607 | if ( doResize ) | |
608 | { | |
609 | MacRepositionScrollBars() ; | |
610 | wxSize size(m_width, m_height); | |
611 | wxSizeEvent event(size, m_windowId); | |
612 | event.SetEventObject(this); | |
613 | GetEventHandler()->ProcessEvent(event); | |
614 | } | |
615 | } | |
616 | ||
617 | } | |
618 | ||
619 | /* | |
620 | * Invalidation Mechanism | |
621 | * | |
622 | * The update mechanism reflects exactely the windows mechanism | |
623 | * the rect gets added to the window invalidate region, if the eraseBackground flag | |
624 | * has been true for any part of the update rgn the background is erased in the entire region | |
625 | * not just in the specified rect. | |
626 | * | |
627 | * In order to achive this, we also have an internal m_macNoEraseUpdateRgn, all rects that have | |
628 | * the eraseBackground flag set to false are also added to this rgn. upon receiving an update event | |
629 | * the update rgn is compared to the m_macNoEraseUpdateRgn and in case they differ, every window | |
630 | * will get the eraseBackground event first | |
631 | */ | |
632 | ||
76a5e5d2 | 633 | void wxTopLevelWindowMac::MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) |
5f0b2f22 SC |
634 | { |
635 | GrafPtr formerPort ; | |
636 | GetPort( &formerPort ) ; | |
76a5e5d2 | 637 | SetPortWindowPort( (WindowRef)m_macWindow ) ; |
5f0b2f22 SC |
638 | |
639 | m_macNeedsErasing |= eraseBackground ; | |
640 | ||
641 | // if we already know that we will have to erase, there's no need to track the rest | |
642 | if ( !m_macNeedsErasing) | |
643 | { | |
644 | // we end only here if eraseBackground is false | |
645 | // if we already have a difference between m_macNoEraseUpdateRgn and UpdateRgn | |
646 | // we will have to erase anyway | |
647 | ||
648 | RgnHandle updateRgn = NewRgn(); | |
649 | RgnHandle diffRgn = NewRgn() ; | |
650 | if ( updateRgn && diffRgn ) | |
651 | { | |
76a5e5d2 | 652 | GetWindowUpdateRgn( (WindowRef)m_macWindow , updateRgn ); |
5f0b2f22 SC |
653 | Point pt = {0,0} ; |
654 | LocalToGlobal( &pt ) ; | |
655 | OffsetRgn( updateRgn , -pt.h , -pt.v ) ; | |
76a5e5d2 | 656 | DiffRgn( updateRgn , (RgnHandle) m_macNoEraseUpdateRgn , diffRgn ) ; |
5f0b2f22 SC |
657 | if ( !EmptyRgn( diffRgn ) ) |
658 | { | |
659 | m_macNeedsErasing = true ; | |
660 | } | |
661 | } | |
662 | if ( updateRgn ) | |
663 | DisposeRgn( updateRgn ); | |
664 | if ( diffRgn ) | |
665 | DisposeRgn( diffRgn ); | |
666 | ||
667 | if ( !m_macNeedsErasing ) | |
668 | { | |
669 | RgnHandle rectRgn = NewRgn() ; | |
76a5e5d2 SC |
670 | SetRectRgn( rectRgn , ((Rect*)rect)->left , ((Rect*)rect)->top , ((Rect*)rect)->right , ((Rect*)rect)->bottom ) ; |
671 | UnionRgn( (RgnHandle) m_macNoEraseUpdateRgn , rectRgn , (RgnHandle) m_macNoEraseUpdateRgn ) ; | |
5f0b2f22 SC |
672 | DisposeRgn( rectRgn ) ; |
673 | } | |
674 | } | |
76a5e5d2 | 675 | InvalWindowRect( (WindowRef)m_macWindow , (Rect*)rect ) ; |
5f0b2f22 | 676 | // turn this on to debug the refreshing cycle |
34dc8f91 | 677 | #if wxMAC_DEBUG_REDRAW |
5f0b2f22 SC |
678 | PaintRect( rect ) ; |
679 | #endif | |
680 | SetPort( formerPort ) ; | |
681 | } | |
a07c1212 | 682 |