]> git.saurik.com Git - wxWidgets.git/blame - src/mac/control.cpp
Copied gsockosx.c revision 1.4
[wxWidgets.git] / src / mac / control.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: control.cpp
3// Purpose: wxControl class
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
89ebf1c9 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "control.h"
14#endif
15
d8c736e5
GD
16#include "wx/defs.h"
17
e9576ca5 18#include "wx/control.h"
03e11df5
GD
19#include "wx/panel.h"
20#include "wx/app.h"
5fde6fcc 21#include "wx/dc.h"
456c94e1 22#include "wx/dcclient.h"
519cb848
SC
23#include "wx/notebook.h"
24#include "wx/tabctrl.h"
2f1ae414 25#include "wx/radiobox.h"
519cb848 26#include "wx/spinbutt.h"
03e11df5
GD
27#include "wx/scrolbar.h"
28#include "wx/button.h"
29#include "wx/dialog.h"
30#include "wx/statbox.h"
31#include "wx/sizer.h"
32#include "wx/stattext.h"
e9576ca5 33
2f1ae414 34#if !USE_SHARED_LIBRARY
8208e181 35IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
e9576ca5 36
2f1ae414 37BEGIN_EVENT_TABLE(wxControl, wxWindow)
89ebf1c9 38 EVT_MOUSE_EVENTS( wxControl::OnMouseEvent )
89ebf1c9 39 EVT_PAINT( wxControl::OnPaint )
e9576ca5 40END_EVENT_TABLE()
2f1ae414 41#endif
e9576ca5 42
d497dca4 43#include "wx/mac/uma.h"
7372fd0a 44#include "wx/mac/private.h"
519cb848 45
e9576ca5 46// Item members
519cb848 47
17a2c5a1
SC
48
49#if PRAGMA_STRUCT_ALIGN
50 #pragma options align=mac68k
51#elif PRAGMA_STRUCT_PACKPUSH
52 #pragma pack(push, 2)
53#elif PRAGMA_STRUCT_PACK
54 #pragma pack(2)
55#endif
56
57typedef struct {
58 unsigned short instruction;
59 void (*function)();
60} cdefRec, *cdefPtr, **cdefHandle;
61
62#if PRAGMA_STRUCT_ALIGN
63 #pragma options align=reset
64#elif PRAGMA_STRUCT_PACKPUSH
65 #pragma pack(pop)
66#elif PRAGMA_STRUCT_PACK
67 #pragma pack()
68#endif
69
519cb848 70ControlActionUPP wxMacLiveScrollbarActionUPP = NULL ;
17a2c5a1 71wxControl *wxFindControlFromMacControl(ControlHandle inControl ) ;
519cb848 72
2f1ae414 73pascal void wxMacLiveScrollbarActionProc( ControlHandle control , ControlPartCode partCode ) ;
519cb848
SC
74pascal void wxMacLiveScrollbarActionProc( ControlHandle control , ControlPartCode partCode )
75{
89ebf1c9
RR
76 if ( partCode != 0)
77 {
78 wxControl* wx = (wxControl*) GetControlReference( control ) ;
79 if ( wx )
80 {
4b26b60f 81 wx->MacHandleControlClick( control , partCode , true /* stillDown */ ) ;
89ebf1c9
RR
82 }
83 }
519cb848
SC
84}
85
692f921a 86ControlColorUPP wxMacSetupControlBackgroundUPP = NULL ;
17a2c5a1
SC
87ControlDefUPP wxMacControlActionUPP = NULL ;
88
eb22f2a6 89pascal SInt32 wxMacControlDefinition(SInt16 varCode, ControlRef theControl, ControlDefProcMessage message, SInt32 param)
17a2c5a1
SC
90{
91
e40298d5
JS
92 wxControl* wx = (wxControl*) wxFindControlFromMacControl( theControl ) ;
93 if ( wx != NULL && wx->IsKindOf( CLASSINFO( wxControl ) ) )
94 {
95 if( message == drawCntl )
96 {
97 wxMacWindowClipper clip( wx ) ;
98 return InvokeControlDefUPP( varCode , theControl , message , param , (ControlDefUPP) wx->MacGetControlAction() ) ;
99 }
100 else
101 return InvokeControlDefUPP( varCode , theControl , message , param , (ControlDefUPP) wx->MacGetControlAction() ) ;
102 }
103 return NULL ;
17a2c5a1 104}
692f921a
SC
105
106pascal OSStatus wxMacSetupControlBackground( ControlRef iControl , SInt16 iMessage , SInt16 iDepth , Boolean iIsColor )
107{
e40298d5
JS
108 OSStatus status = noErr ;
109 switch( iMessage )
110 {
111 case kControlMsgSetUpBackground :
112 {
113 wxControl* wx = (wxControl*) GetControlReference( iControl ) ;
114 if ( wx != NULL && wx->IsKindOf( CLASSINFO( wxControl ) ) )
115 {
116 wxDC::MacSetupBackgroundForCurrentPort( wx->MacGetBackgroundBrush() ) ;
64820d33 117#if TARGET_CARBON
e40298d5
JS
118 // under classic this would lead to partial redraws
119 RgnHandle clip = NewRgn() ;
120 int x = 0 , y = 0;
121
122 wx->MacWindowToRootWindow( &x,&y ) ;
123 CopyRgn( (RgnHandle) wx->MacGetVisibleRegion(false).GetWXHRGN() , clip ) ;
124 OffsetRgn( clip , x , y ) ;
125 SetClip( clip ) ;
126 DisposeRgn( clip ) ;
64820d33 127#endif
e40298d5
JS
128 }
129 else
130 {
131 status = paramErr ;
132 }
133 }
134 break ;
135 default :
136 status = paramErr ;
137 break ;
138 }
139 return status ;
692f921a
SC
140}
141
e9576ca5
SC
142wxControl::wxControl()
143{
89ebf1c9 144 m_macControl = NULL ;
17a2c5a1 145 m_macControlAction = NULL ;
89ebf1c9
RR
146 m_macHorizontalBorder = 0 ; // additional pixels around the real control
147 m_macVerticalBorder = 0 ;
e9576ca5
SC
148 m_backgroundColour = *wxWHITE;
149 m_foregroundColour = *wxBLACK;
519cb848 150
89ebf1c9
RR
151 if ( wxMacLiveScrollbarActionUPP == NULL )
152 {
4114d0af 153#if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340)
03e11df5
GD
154 wxMacLiveScrollbarActionUPP = NewControlActionUPP( wxMacLiveScrollbarActionProc );
155#else
89ebf1c9 156 wxMacLiveScrollbarActionUPP = NewControlActionProc( wxMacLiveScrollbarActionProc ) ;
03e11df5 157#endif
89ebf1c9 158 }
e9576ca5
SC
159}
160
2f1ae414
SC
161bool wxControl::Create(wxWindow *parent, wxWindowID id,
162 const wxPoint& pos,
163 const wxSize& size, long style,
164 const wxValidator& validator,
165 const wxString& name)
166{
89ebf1c9
RR
167 m_macControl = NULL ;
168 m_macHorizontalBorder = 0 ; // additional pixels around the real control
169 m_macVerticalBorder = 0 ;
327788ac 170
2f1ae414 171 bool rval = wxWindow::Create(parent, id, pos, size, style, name);
327788ac
SC
172 if ( parent )
173 {
174 m_backgroundColour = parent->GetBackgroundColour() ;
175 m_foregroundColour = parent->GetForegroundColour() ;
176 }
2f1ae414
SC
177 if (rval) {
178#if wxUSE_VALIDATORS
179 SetValidator(validator);
180#endif
181 }
182 return rval;
183}
184
e9576ca5
SC
185wxControl::~wxControl()
186{
e7549107 187 m_isBeingDeleted = TRUE;
17a2c5a1 188 wxRemoveMacControlAssociation( this ) ;
e9576ca5
SC
189 // If we delete an item, we should initialize the parent panel,
190 // because it could now be invalid.
9c641c05
SC
191 wxWindow *parent = GetParent() ;
192 if ( parent )
e9576ca5 193 {
9c641c05
SC
194 if (parent->GetDefaultItem() == (wxButton*) this)
195 parent->SetDefaultItem(NULL);
e9576ca5 196 }
76a5e5d2 197 if ( (ControlHandle) m_macControl )
519cb848 198 {
76a5e5d2 199 ::DisposeControl( (ControlHandle) m_macControl ) ;
89ebf1c9 200 m_macControl = NULL ;
519cb848 201 }
e9576ca5
SC
202}
203
e7549107 204void wxControl::SetLabel(const wxString& title)
e9576ca5 205{
28c98a77 206 m_label = wxStripMenuCodes(title) ;
89ebf1c9 207
427ff662 208 if ( m_macControl )
89ebf1c9 209 {
427ff662 210 UMASetControlTitle( (ControlHandle) m_macControl , m_label ) ;
89ebf1c9
RR
211 }
212 Refresh() ;
e9576ca5
SC
213}
214
37e2cb08 215wxSize wxControl::DoGetBestSize() const
e9576ca5 216{
89ebf1c9
RR
217 Rect bestsize = { 0 , 0 , 0 , 0 } ;
218 short baselineoffset ;
219 int bestWidth, bestHeight ;
76a5e5d2 220 ::GetBestControlRect( (ControlHandle) m_macControl , &bestsize , &baselineoffset ) ;
89ebf1c9
RR
221
222 if ( EmptyRect( &bestsize ) )
223 {
224 baselineoffset = 0;
225 bestsize.left = bestsize.top = 0 ;
226 bestsize.right = 16 ;
227 bestsize.bottom = 16 ;
228 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
229 {
230 bestsize.bottom = 16 ;
231 }
232 else if ( IsKindOf( CLASSINFO( wxSpinButton ) ) )
233 {
234 bestsize.bottom = 24 ;
235 }
236 }
237
238 if ( IsKindOf( CLASSINFO( wxButton ) ) )
239 {
240 bestWidth = m_label.Length() * 8 + 12 ;
241 if ( bestWidth < 70 )
242 bestWidth = 70 ;
243 }
244 else if ( IsKindOf( CLASSINFO( wxStaticText ) ) )
245 {
246 bestWidth = m_label.Length() * 8 ;
247 }
248 else
249 bestWidth = bestsize.right - bestsize.left ;
250
251 bestWidth += 2 * m_macHorizontalBorder ;
252
253 bestHeight = bestsize.bottom - bestsize.top ;
254 if ( bestHeight < 10 )
255 bestHeight = 13 ;
256
257 bestHeight += 2 * m_macVerticalBorder;
258
259
9453cf2b 260 return wxSize(bestWidth, bestHeight);
e9576ca5
SC
261}
262
e7549107 263bool wxControl::ProcessCommand (wxCommandEvent & event)
e9576ca5 264{
a3bf7524
VS
265 // Tries:
266 // 1) OnCommand, starting at this window and working up parent hierarchy
267 // 2) OnCommand then calls ProcessEvent to search the event tables.
268 return GetEventHandler()->ProcessEvent(event);
e9576ca5
SC
269}
270
519cb848
SC
271// ------------------------
272wxList *wxWinMacControlList = NULL;
273wxControl *wxFindControlFromMacControl(ControlHandle inControl )
274{
275 wxNode *node = wxWinMacControlList->Find((long)inControl);
276 if (!node)
277 return NULL;
eb22f2a6 278 return (wxControl *)node->GetData();
519cb848
SC
279}
280
281void wxAssociateControlWithMacControl(ControlHandle inControl, wxControl *control)
282{
283 // adding NULL WindowRef is (first) surely a result of an error and
284 // (secondly) breaks menu command processing
427ff662 285 wxCHECK_RET( inControl != (ControlHandle) NULL, wxT("attempt to add a NULL WindowRef to window list") );
519cb848
SC
286
287 if ( !wxWinMacControlList->Find((long)inControl) )
288 wxWinMacControlList->Append((long)inControl, control);
289}
290
291void wxRemoveMacControlAssociation(wxControl *control)
292{
de923e4f
SC
293 if ( wxWinMacControlList )
294 wxWinMacControlList->DeleteObject(control);
519cb848
SC
295}
296
297void wxControl::MacPreControlCreate( wxWindow *parent, wxWindowID id, wxString label ,
89ebf1c9
RR
298 const wxPoint& pos,
299 const wxSize& size, long style,
300 const wxValidator& validator,
76a5e5d2 301 const wxString& name , WXRECTPTR outBounds , unsigned char* maclabel )
519cb848 302{
89ebf1c9 303 m_label = label ;
9453cf2b 304
b45ed7a2 305 // These sizes will be adjusted in MacPostControlCreate
89ebf1c9
RR
306 m_width = size.x ;
307 m_height = size.y ;
308 m_x = pos.x ;
309 m_y = pos.y ;
310
76a5e5d2
SC
311 ((Rect*)outBounds)->top = -10;
312 ((Rect*)outBounds)->left = -10;
313 ((Rect*)outBounds)->bottom = 0;
314 ((Rect*)outBounds)->right = 0;
89ebf1c9 315
c5c9378c 316 wxMacStringToPascal( wxStripMenuCodes(label) , maclabel ) ;
519cb848
SC
317}
318
319void wxControl::MacPostControlCreate()
320{
427ff662 321 wxASSERT_MSG( (ControlHandle) m_macControl != NULL , wxT("No valid mac control") ) ;
89ebf1c9
RR
322
323 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
324 {
325 // no font
326 }
2d9d0118 327 else if ( !UMAHasAquaLayout() && (IsKindOf( CLASSINFO( wxStaticBox ) ) || IsKindOf( CLASSINFO( wxRadioBox ) ) || IsKindOf( CLASSINFO( wxButton ) ) ) )
89ebf1c9
RR
328 {
329 ControlFontStyleRec controlstyle ;
330 controlstyle.flags = kControlUseFontMask ;
331 controlstyle.font = kControlFontSmallBoldSystemFont ;
332
76a5e5d2 333 ::SetControlFontStyle( (ControlHandle) m_macControl , &controlstyle ) ;
89ebf1c9
RR
334 }
335 else
336 {
337 ControlFontStyleRec controlstyle ;
338 controlstyle.flags = kControlUseFontMask ;
4b26b60f
SC
339
340 if (IsKindOf( CLASSINFO( wxButton ) ) )
341 controlstyle.font = kControlFontSmallSystemFont ; // eventually kControlFontBigSystemFont ;
342 else
343 controlstyle.font = kControlFontSmallSystemFont ;
89ebf1c9 344
76a5e5d2 345 ::SetControlFontStyle( (ControlHandle) m_macControl , &controlstyle ) ;
89ebf1c9 346 }
76a5e5d2 347 ControlHandle container = (ControlHandle) GetParent()->MacGetContainerForEmbedding() ;
89ebf1c9 348 wxASSERT_MSG( container != NULL , wxT("No valid mac container control") ) ;
76a5e5d2 349 ::EmbedControl( (ControlHandle) m_macControl , container ) ;
de923e4f 350 m_macControlIsShown = MacIsReallyShown() ;
89ebf1c9 351
76a5e5d2 352 wxAssociateControlWithMacControl( (ControlHandle) m_macControl , this ) ;
e40298d5
JS
353 if ( wxMacSetupControlBackgroundUPP == NULL )
354 {
355 wxMacSetupControlBackgroundUPP = NewControlColorUPP( wxMacSetupControlBackground ) ;
356 }
357 if ( wxMacControlActionUPP == NULL )
358 {
359 wxMacControlActionUPP = NewControlDefUPP( wxMacControlDefinition ) ;
360 }
111c1e2c
JS
361 // The following block of code is responsible for crashes when switching
362 // back to windows, which can be seen in the dialogs sample.
363 // It is disabled until a proper solution can be found.
364#if 0
17a2c5a1 365#if TARGET_CARBON
b6f5f27a
SC
366/*
367 only working under classic carbon
17a2c5a1
SC
368 m_macControlAction = *(**(ControlHandle)m_macControl).contrlDefProc ;
369 (**(ControlHandle)m_macControl).contrlDefProc = (Handle) &wxMacControlActionUPP ;
b6f5f27a 370*/
17a2c5a1
SC
371#else
372 m_macControlAction = *(**(ControlHandle)m_macControl).contrlDefProc ;
373
374 cdefHandle cdef ;
375 cdef = (cdefHandle) NewHandle( sizeof(cdefRec) ) ;
376 if ( (**(ControlHandle)m_macControl).contrlDefProc != NULL )
377 {
e40298d5
JS
378 (**cdef).instruction = 0x4EF9; /* JMP instruction */
379 (**cdef).function = (void(*)()) wxMacControlActionUPP;
380 (**(ControlHandle)m_macControl).contrlDefProc = (Handle) cdef ;
17a2c5a1 381 }
111c1e2c 382#endif
17a2c5a1 383#endif
e40298d5
JS
384 SetControlColorProc( (ControlHandle) m_macControl , wxMacSetupControlBackgroundUPP ) ;
385
386 // Adjust the controls size and position
387 wxPoint pos(m_x, m_y);
388 wxSize best_size( DoGetBestSize() );
389 wxSize new_size( m_width, m_height );
390
391 m_x = m_y = m_width = m_height = -1; // Forces SetSize to move/size the control
392
393 if (new_size.x == -1) {
9453cf2b 394 new_size.x = best_size.x;
e40298d5
JS
395 }
396 if (new_size.y == -1) {
397 new_size.y = best_size.y;
398 }
399
400 SetSize(pos.x, pos.y, new_size.x, new_size.y);
401
427ff662
SC
402#if wxUSE_UNICODE
403 UMASetControlTitle( (ControlHandle) m_macControl , wxStripMenuCodes(m_label) ) ;
404#endif
405
de923e4f
SC
406 if ( m_macControlIsShown )
407 UMAShowControl( (ControlHandle) m_macControl ) ;
e40298d5
JS
408
409 SetCursor( *wxSTANDARD_CURSOR ) ;
410
411 Refresh() ;
519cb848
SC
412}
413
414void wxControl::MacAdjustControlRect()
415{
76a5e5d2 416 wxASSERT_MSG( (ControlHandle) m_macControl != NULL , wxT("No valid mac control") ) ;
89ebf1c9
RR
417 if ( m_width == -1 || m_height == -1 )
418 {
419 Rect bestsize = { 0 , 0 , 0 , 0 } ;
420 short baselineoffset ;
421
76a5e5d2 422 ::GetBestControlRect( (ControlHandle) m_macControl , &bestsize , &baselineoffset ) ;
89ebf1c9
RR
423
424 if ( EmptyRect( &bestsize ) )
425 {
426 baselineoffset = 0;
427 bestsize.left = bestsize.top = 0 ;
428 bestsize.right = 16 ;
429 bestsize.bottom = 16 ;
430 if ( IsKindOf( CLASSINFO( wxScrollBar ) ) )
431 {
432 bestsize.bottom = 16 ;
433 }
434 else if ( IsKindOf( CLASSINFO( wxSpinButton ) ) )
435 {
436 bestsize.bottom = 24 ;
437 }
438 }
439
440 if ( m_width == -1 )
441 {
442 if ( IsKindOf( CLASSINFO( wxButton ) ) )
443 {
444 m_width = m_label.Length() * 8 + 12 ;
445 if ( m_width < 70 )
446 m_width = 70 ;
447 }
448 else if ( IsKindOf( CLASSINFO( wxStaticText ) ) )
449 {
450 m_width = m_label.Length() * 8 ;
451 }
452 else
453 m_width = bestsize.right - bestsize.left ;
454
327788ac 455 m_width += 2 * m_macHorizontalBorder + MacGetLeftBorderSize() + MacGetRightBorderSize() ;
89ebf1c9
RR
456 }
457 if ( m_height == -1 )
458 {
459 m_height = bestsize.bottom - bestsize.top ;
460 if ( m_height < 10 )
461 m_height = 13 ;
462
327788ac 463 m_height += 2 * m_macVerticalBorder + MacGetTopBorderSize() + MacGetBottomBorderSize() ;
89ebf1c9 464 }
e40298d5 465 MacUpdateDimensions() ;
327788ac 466// UMASizeControl( (ControlHandle) m_macControl , m_width - 2 * m_macHorizontalBorder, m_height - 2 * m_macVerticalBorder ) ;
89ebf1c9 467 }
519cb848 468}
76a5e5d2
SC
469
470WXWidget wxControl::MacGetContainerForEmbedding()
519cb848 471{
89ebf1c9
RR
472 if ( m_macControl )
473 return m_macControl ;
519cb848 474
89ebf1c9 475 return wxWindow::MacGetContainerForEmbedding() ;
519cb848
SC
476}
477
327788ac 478void wxControl::MacUpdateDimensions()
519cb848 479{
e40298d5
JS
480 // actually in the current systems this should never be possible, but later reparenting
481 // may become a reality
482
483 if ( (ControlHandle) m_macControl == NULL )
484 return ;
485
486 if ( GetParent() == NULL )
487 return ;
488
327788ac
SC
489 WindowRef rootwindow = (WindowRef) MacGetRootWindow() ;
490 if ( rootwindow == NULL )
e40298d5
JS
491 return ;
492
327788ac
SC
493 Rect oldBounds ;
494 GetControlBounds( (ControlHandle) m_macControl , &oldBounds ) ;
495
496 int new_x = m_x + MacGetLeftBorderSize() + m_macHorizontalBorder ;
497 int new_y = m_y + MacGetTopBorderSize() + m_macVerticalBorder ;
498 int new_width = m_width - MacGetLeftBorderSize() - MacGetRightBorderSize() - 2 * m_macHorizontalBorder ;
499 int new_height = m_height - MacGetTopBorderSize() - MacGetBottomBorderSize() - 2 * m_macVerticalBorder ;
500
501 GetParent()->MacWindowToRootWindow( & new_x , & new_y ) ;
502 bool doMove = new_x != oldBounds.left || new_y != oldBounds.top ;
503 bool doResize = ( oldBounds.right - oldBounds.left ) != new_width || (oldBounds.bottom - oldBounds.top ) != new_height ;
e40298d5
JS
504 if ( doMove || doResize )
505 {
506 InvalWindowRect( rootwindow, &oldBounds ) ;
507 if ( doMove )
508 {
509 UMAMoveControl( (ControlHandle) m_macControl , new_x , new_y ) ;
510 }
511 if ( doResize )
512 {
513 UMASizeControl( (ControlHandle) m_macControl , new_width , new_height ) ;
514 }
515 }
327788ac 516}
89ebf1c9 517
327788ac
SC
518void wxControl::MacSuperChangedPosition()
519{
e40298d5 520 MacUpdateDimensions() ;
89ebf1c9 521 wxWindow::MacSuperChangedPosition() ;
519cb848
SC
522}
523
524void wxControl::MacSuperEnabled( bool enabled )
525{
1c469f7f 526 Refresh(FALSE) ;
1c310985 527 wxWindow::MacSuperEnabled( enabled ) ;
519cb848
SC
528}
529
e40298d5 530void wxControl::MacSuperShown( bool show )
519cb848 531{
76a5e5d2 532 if ( (ControlHandle) m_macControl )
89ebf1c9
RR
533 {
534 if ( !show )
535 {
536 if ( m_macControlIsShown )
537 {
76a5e5d2 538 ::UMAHideControl( (ControlHandle) m_macControl ) ;
89ebf1c9
RR
539 m_macControlIsShown = false ;
540 }
541 }
542 else
543 {
544 if ( MacIsReallyShown() && !m_macControlIsShown )
545 {
76a5e5d2 546 ::UMAShowControl( (ControlHandle) m_macControl ) ;
89ebf1c9
RR
547 m_macControlIsShown = true ;
548 }
549 }
550 }
551
552 wxWindow::MacSuperShown( show ) ;
519cb848
SC
553}
554
555void wxControl::DoSetSize(int x, int y,
556 int width, int height,
557 int sizeFlags )
558{
327788ac 559 wxWindow::DoSetSize( x , y ,width , height ,sizeFlags ) ;
64820d33
SC
560#if 0
561 {
e40298d5
JS
562 Rect meta , control ;
563 GetControlBounds( (ControlHandle) m_macControl , &control ) ;
564 RgnHandle rgn = NewRgn() ;
565 GetControlRegion( (ControlHandle) m_macControl , kControlStructureMetaPart , rgn ) ;
566 GetRegionBounds( rgn , &meta ) ;
567 if ( !EmptyRect( &meta ) )
568 {
569 wxASSERT( meta.left >= control.left - m_macHorizontalBorder ) ;
570 wxASSERT( meta.right <= control.right + m_macHorizontalBorder ) ;
571 wxASSERT( meta.top >= control.top - m_macVerticalBorder ) ;
572 wxASSERT( meta.bottom <= control.bottom + m_macVerticalBorder ) ;
573 }
574 DisposeRgn( rgn ) ;
64820d33
SC
575 }
576#endif
327788ac 577 return ;
519cb848
SC
578}
579
519cb848
SC
580bool wxControl::Show(bool show)
581{
89ebf1c9
RR
582 if ( !wxWindow::Show( show ) )
583 return FALSE ;
584
76a5e5d2 585 if ( (ControlHandle) m_macControl )
89ebf1c9
RR
586 {
587 if ( !show )
588 {
589 if ( m_macControlIsShown )
590 {
76a5e5d2 591 ::UMAHideControl( (ControlHandle) m_macControl ) ;
89ebf1c9
RR
592 m_macControlIsShown = false ;
593 }
594 }
595 else
596 {
597 if ( MacIsReallyShown() && !m_macControlIsShown )
598 {
76a5e5d2 599 ::UMAShowControl( (ControlHandle) m_macControl ) ;
89ebf1c9
RR
600 m_macControlIsShown = true ;
601 }
602 }
603 }
604 return TRUE ;
519cb848
SC
605}
606
e7549107 607bool wxControl::Enable(bool enable)
519cb848 608{
e7549107
SC
609 if ( !wxWindow::Enable(enable) )
610 return FALSE;
519cb848 611
76a5e5d2 612 if ( (ControlHandle) m_macControl )
89ebf1c9
RR
613 {
614 if ( enable )
76a5e5d2 615 UMAActivateControl( (ControlHandle) m_macControl ) ;
89ebf1c9 616 else
76a5e5d2 617 UMADeactivateControl( (ControlHandle) m_macControl ) ;
89ebf1c9
RR
618 }
619 return TRUE ;
519cb848
SC
620}
621
622void wxControl::Refresh(bool eraseBack, const wxRect *rect)
623{
89ebf1c9 624 wxWindow::Refresh( eraseBack , rect ) ;
519cb848
SC
625}
626
2f1ae414
SC
627void wxControl::MacRedrawControl()
628{
404dfcae 629 if ( (ControlHandle) m_macControl && MacGetRootWindow() && m_macControlIsShown )
89ebf1c9 630 {
de043984
SC
631 wxClientDC dc(this) ;
632 wxMacPortSetter helper(&dc) ;
17a2c5a1 633 wxMacWindowClipper clipper(this) ;
de043984 634 wxDC::MacSetupBackgroundForCurrentPort( MacGetBackgroundBrush() ) ;
76a5e5d2 635 UMADrawControl( (ControlHandle) m_macControl ) ;
89ebf1c9 636 }
2f1ae414
SC
637}
638
519cb848
SC
639void wxControl::OnPaint(wxPaintEvent& event)
640{
76a5e5d2 641 if ( (ControlHandle) m_macControl )
89ebf1c9 642 {
de043984
SC
643 wxPaintDC dc(this) ;
644 wxMacPortSetter helper(&dc) ;
17a2c5a1 645 wxMacWindowClipper clipper(this) ;
de043984 646 wxDC::MacSetupBackgroundForCurrentPort( MacGetBackgroundBrush() ) ;
76a5e5d2 647 UMADrawControl( (ControlHandle) m_macControl ) ;
89ebf1c9
RR
648 }
649 else
650 {
a5a8ff8a 651 event.Skip() ;
89ebf1c9 652 }
519cb848 653}
51abe921
SC
654void wxControl::OnEraseBackground(wxEraseEvent& event)
655{
1c310985 656 wxWindow::OnEraseBackground( event ) ;
51abe921
SC
657}
658
519cb848
SC
659void wxControl::OnKeyDown( wxKeyEvent &event )
660{
76a5e5d2 661 if ( (ControlHandle) m_macControl == NULL )
89ebf1c9
RR
662 return ;
663
c5c9378c
SC
664#if TARGET_CARBON
665
e40298d5
JS
666 char charCode ;
667 UInt32 keyCode ;
c5c9378c
SC
668 UInt32 modifiers ;
669
e40298d5
JS
670 GetEventParameter( (EventRef) wxTheApp->MacGetCurrentEvent(), kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
671 GetEventParameter( (EventRef) wxTheApp->MacGetCurrentEvent(), kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
672 GetEventParameter((EventRef) wxTheApp->MacGetCurrentEvent(), kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
c5c9378c
SC
673
674 ::HandleControlKey( (ControlHandle) m_macControl , keyCode , charCode , modifiers ) ;
e40298d5 675
c5c9378c 676#else
76a5e5d2 677 EventRecord *ev = (EventRecord*) wxTheApp->MacGetCurrentEvent() ;
89ebf1c9
RR
678 short keycode ;
679 short keychar ;
680 keychar = short(ev->message & charCodeMask);
681 keycode = short(ev->message & keyCodeMask) >> 8 ;
682
76a5e5d2 683 ::HandleControlKey( (ControlHandle) m_macControl , keycode , keychar , ev->modifiers ) ;
c5c9378c 684#endif
519cb848
SC
685}
686
687void wxControl::OnMouseEvent( wxMouseEvent &event )
688{
76a5e5d2 689 if ( (ControlHandle) m_macControl == NULL )
89ebf1c9
RR
690 {
691 event.Skip() ;
692 return ;
693 }
694
695 if (event.GetEventType() == wxEVT_LEFT_DOWN || event.GetEventType() == wxEVT_LEFT_DCLICK )
696 {
697
698 int x = event.m_x ;
699 int y = event.m_y ;
700
701 MacClientToRootWindow( &x , &y ) ;
702
703 ControlHandle control ;
704 Point localwhere ;
705 SInt16 controlpart ;
89ebf1c9
RR
706
707 localwhere.h = x ;
708 localwhere.v = y ;
709
710 short modifiers = 0;
711
712 if ( !event.m_leftDown && !event.m_rightDown )
713 modifiers |= btnState ;
714
715 if ( event.m_shiftDown )
716 modifiers |= shiftKey ;
717
718 if ( event.m_controlDown )
719 modifiers |= controlKey ;
720
721 if ( event.m_altDown )
722 modifiers |= optionKey ;
723
724 if ( event.m_metaDown )
725 modifiers |= cmdKey ;
89ebf1c9 726 {
76a5e5d2 727 control = (ControlHandle) m_macControl ;
89ebf1c9
RR
728 if ( control && ::IsControlActive( control ) )
729 {
730 {
731 controlpart = ::HandleControlClick( control , localwhere , modifiers , (ControlActionUPP) -1 ) ;
732 wxTheApp->s_lastMouseDown = 0 ;
4b26b60f 733 if ( control && controlpart != kControlNoPart )
89ebf1c9 734 {
4b26b60f 735 MacHandleControlClick( control , controlpart , false /* mouse not down anymore */ ) ;
89ebf1c9
RR
736 }
737 }
738 }
739 }
740 }
63d1f74f
SC
741 else
742 {
743 event.Skip() ;
744 }
519cb848
SC
745}
746
747bool wxControl::MacCanFocus() const
748{
e40298d5
JS
749 if ( (ControlHandle) m_macControl == NULL )
750 return true ;
751 else
752 return false ;
519cb848
SC
753}
754
4b26b60f 755void wxControl::MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool WXUNUSED( mouseStillDown ) )
519cb848 756{
427ff662 757 wxASSERT_MSG( (ControlHandle) m_macControl != NULL , wxT("No valid mac control") ) ;
519cb848
SC
758}
759