1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxControl class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "control.h"
16 #include "wx/control.h"
20 #include "wx/notebook.h"
21 #include "wx/tabctrl.h"
22 #include "wx/radiobox.h"
23 #include "wx/spinbutt.h"
24 #include "wx/scrolbar.h"
25 #include "wx/button.h"
26 #include "wx/dialog.h"
27 #include "wx/statbox.h"
29 #include "wx/stattext.h"
31 #if !USE_SHARED_LIBRARY
32 IMPLEMENT_ABSTRACT_CLASS(wxControl
, wxWindow
)
34 BEGIN_EVENT_TABLE(wxControl
, wxWindow
)
35 EVT_MOUSE_EVENTS( wxControl::OnMouseEvent
)
36 EVT_CHAR( wxControl::OnKeyDown
)
37 EVT_PAINT( wxControl::OnPaint
)
41 #include <wx/mac/uma.h>
45 ControlActionUPP wxMacLiveScrollbarActionUPP
= NULL
;
47 pascal void wxMacLiveScrollbarActionProc( ControlHandle control
, ControlPartCode partCode
) ;
48 pascal void wxMacLiveScrollbarActionProc( ControlHandle control
, ControlPartCode partCode
)
52 wxControl
* wx
= (wxControl
*) GetControlReference( control
) ;
55 wx
->MacHandleControlClick( control
, partCode
) ;
60 wxControl::wxControl()
63 m_macHorizontalBorder
= 0 ; // additional pixels around the real control
64 m_macVerticalBorder
= 0 ;
65 m_backgroundColour
= *wxWHITE
;
66 m_foregroundColour
= *wxBLACK
;
67 #if WXWIN_COMPATIBILITY
69 #endif // WXWIN_COMPATIBILITY
71 if ( wxMacLiveScrollbarActionUPP
== NULL
)
73 #if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340)
74 wxMacLiveScrollbarActionUPP
= NewControlActionUPP( wxMacLiveScrollbarActionProc
);
76 wxMacLiveScrollbarActionUPP
= NewControlActionProc( wxMacLiveScrollbarActionProc
) ;
81 bool wxControl::Create(wxWindow
*parent
, wxWindowID id
,
83 const wxSize
& size
, long style
,
84 const wxValidator
& validator
,
88 m_macHorizontalBorder
= 0 ; // additional pixels around the real control
89 m_macVerticalBorder
= 0 ;
90 bool rval
= wxWindow::Create(parent
, id
, pos
, size
, style
, name
);
93 SetValidator(validator
);
99 wxControl::~wxControl()
101 m_isBeingDeleted
= TRUE
;
102 // If we delete an item, we should initialize the parent panel,
103 // because it could now be invalid.
104 wxPanel
*panel
= wxDynamicCast(GetParent(), wxPanel
);
107 if (panel
->GetDefaultItem() == (wxButton
*) this)
108 panel
->SetDefaultItem(NULL
);
112 UMADisposeControl( m_macControl
) ;
113 m_macControl
= NULL
;
117 void wxControl::SetLabel(const wxString
& title
)
126 if( wxApp::s_macDefaultEncodingIsPC
)
127 label
= wxMacMakeMacStringFromPC( title
) ;
132 c2pstrcpy( (StringPtr
) maclabel
, label
) ;
134 strcpy( (char *) maclabel
, label
) ;
135 c2pstr( (char *) maclabel
) ;
137 ::SetControlTitle( m_macControl
, maclabel
) ;
142 wxSize
wxControl::DoGetBestSize() const
144 return wxSize(20, 20);
147 bool wxControl::ProcessCommand (wxCommandEvent
& event
)
150 // 1) A callback function (to become obsolete)
151 // 2) OnCommand, starting at this window and working up parent hierarchy
152 // 3) OnCommand then calls ProcessEvent to search the event tables.
153 #if WXWIN_COMPATIBILITY
156 (void)(*m_callback
)(this, event
);
161 #endif // WXWIN_COMPATIBILITY
163 return GetEventHandler()->ProcessEvent(event
);
167 // ------------------------
168 wxList
*wxWinMacControlList
= NULL
;
169 wxControl
*wxFindControlFromMacControl(ControlHandle inControl
)
171 wxNode
*node
= wxWinMacControlList
->Find((long)inControl
);
174 return (wxControl
*)node
->Data();
177 void wxAssociateControlWithMacControl(ControlHandle inControl
, wxControl
*control
)
179 // adding NULL WindowRef is (first) surely a result of an error and
180 // (secondly) breaks menu command processing
181 wxCHECK_RET( inControl
!= (ControlHandle
) NULL
, "attempt to add a NULL WindowRef to window list" );
183 if ( !wxWinMacControlList
->Find((long)inControl
) )
184 wxWinMacControlList
->Append((long)inControl
, control
);
187 void wxRemoveMacControlAssociation(wxControl
*control
)
189 wxWinMacControlList
->DeleteObject(control
);
192 void wxControl::MacPreControlCreate( wxWindow
*parent
, wxWindowID id
, wxString label
,
194 const wxSize
& size
, long style
,
195 const wxValidator
& validator
,
196 const wxString
& name
, Rect
*outBounds
, StringPtr maclabel
)
201 SetValidator(validator
);
203 m_windowStyle
= style
;
204 parent
->AddChild((wxButton
*)this);
206 m_backgroundColour
= parent
->GetBackgroundColour() ;
207 m_foregroundColour
= parent
->GetForegroundColour() ;
210 m_windowId
= NewControlId();
218 AdjustForParentClientOrigin(x
, y
, wxSIZE_USE_EXISTING
);
223 parent
->MacClientToRootWindow( &x
, &y
) ;
224 outBounds
->top
= y
+ m_macVerticalBorder
;
225 outBounds
->left
= x
+ m_macHorizontalBorder
;
226 outBounds
->bottom
= outBounds
->top
+ m_height
- 2 * m_macVerticalBorder
;
227 outBounds
->right
= outBounds
->left
+ m_width
- 2 * m_macHorizontalBorder
;
230 strcpy( c_text
, label
) ;
231 if( wxApp::s_macDefaultEncodingIsPC
)
233 wxMacConvertFromPCForControls( c_text
) ;
237 c2pstrcpy( (StringPtr
) maclabel
, c_text
) ;
239 strcpy( (char *) maclabel
, c_text
) ;
240 c2pstr( (char *) maclabel
) ;
244 void wxControl::MacPostControlCreate()
246 wxASSERT_MSG( m_macControl
!= NULL
, "No valid mac control" ) ;
248 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
252 else if ( IsKindOf( CLASSINFO( wxStaticBox
) ) || IsKindOf( CLASSINFO( wxRadioBox
) ) || IsKindOf( CLASSINFO( wxButton
) ) )
254 ControlFontStyleRec controlstyle
;
255 controlstyle
.flags
= kControlUseFontMask
;
256 controlstyle
.font
= kControlFontSmallBoldSystemFont
;
258 ::UMASetControlFontStyle( m_macControl
, &controlstyle
) ;
262 ControlFontStyleRec controlstyle
;
263 controlstyle
.flags
= kControlUseFontMask
;
264 controlstyle
.font
= kControlFontSmallSystemFont
;
266 ::UMASetControlFontStyle( m_macControl
, &controlstyle
) ;
268 ControlHandle container
= GetParent()->MacGetContainerForEmbedding() ;
269 wxASSERT_MSG( container
!= NULL
, "No valid mac container control" ) ;
270 ::UMAEmbedControl( m_macControl
, container
) ;
271 m_macControlIsShown
= true ;
272 MacAdjustControlRect() ;
273 wxAssociateControlWithMacControl( m_macControl
, this ) ;
274 UMAShowControl( m_macControl
) ;
277 void wxControl::MacAdjustControlRect()
279 wxASSERT_MSG( m_macControl
!= NULL
, "No valid mac control" ) ;
280 if ( m_width
== -1 || m_height
== -1 )
282 Rect bestsize
= { 0 , 0 , 0 , 0 } ;
283 short baselineoffset
;
285 UMAGetBestControlRect( m_macControl
, &bestsize
, &baselineoffset
) ;
287 if ( EmptyRect( &bestsize
) )
290 bestsize
.left
= bestsize
.top
= 0 ;
291 bestsize
.right
= 16 ;
292 bestsize
.bottom
= 16 ;
293 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
295 bestsize
.bottom
= 16 ;
297 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
299 bestsize
.bottom
= 24 ;
305 if ( IsKindOf( CLASSINFO( wxButton
) ) )
307 m_width
= m_label
.Length() * 8 + 12 ;
311 else if ( IsKindOf( CLASSINFO( wxStaticText
) ) )
313 m_width
= m_label
.Length() * 8 ;
316 m_width
= bestsize
.right
- bestsize
.left
;
318 m_width
+= 2 * m_macHorizontalBorder
;
320 if ( m_height
== -1 )
322 m_height
= bestsize
.bottom
- bestsize
.top
;
326 m_height
+= 2 * m_macVerticalBorder
;
329 wxMacDrawingHelper
helper ( wxFindWinFromMacWindow( GetMacRootWindow() ) ) ;
332 UMASizeControl( m_macControl
, m_width
- 2 * m_macHorizontalBorder
, m_height
- 2 * m_macVerticalBorder
) ;
336 ControlHandle
wxControl::MacGetContainerForEmbedding()
339 return m_macControl
;
341 return wxWindow::MacGetContainerForEmbedding() ;
344 void wxControl::MacSuperChangedPosition()
349 GetControlBounds( m_macControl
, &contrlRect
) ;
350 int former_mac_x
= contrlRect
.left
;
351 int former_mac_y
= contrlRect
.top
;
354 GetParent()->MacClientToRootWindow( & mac_x
, & mac_y
) ;
356 WindowRef rootwindow
= GetMacRootWindow() ;
357 wxWindow
* wxrootwindow
= wxFindWinFromMacWindow( rootwindow
) ;
358 UMASetThemeWindowBackground( rootwindow
, kThemeBrushDialogBackgroundActive
, false ) ;
359 wxMacDrawingHelper
focus( wxrootwindow
) ;
361 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
364 Rect inval
= { former_mac_y
, former_mac_x
, former_mac_y
+ m_height
, former_mac_x
+ m_width
} ;
365 InvalWindowRect( rootwindow
, &inval
) ;
367 UMAMoveControl( m_macControl
, mac_x
+ m_macHorizontalBorder
, mac_y
+ m_macVerticalBorder
) ;
369 Rect inval
= { mac_y
, mac_x
, mac_y
+ m_height
, mac_x
+ m_width
} ;
370 InvalWindowRect( rootwindow
, &inval
) ;
373 if ( wxrootwindow
->IsKindOf( CLASSINFO( wxDialog
) ) )
378 UMASetThemeWindowBackground( rootwindow
, kThemeBrushDocumentWindowBackground
, false ) ;
382 wxWindow::MacSuperChangedPosition() ;
385 void wxControl::MacSuperEnabled( bool enabled
)
390 if ( UMAHasAppearance() )
394 ::DeactivateControl( m_macControl ) ;
399 ::ActivateControl( m_macControl ) ;
406 ::HiliteControl( m_macControl , 255 ) ;
411 ::HiliteControl( m_macControl , 0 ) ;
415 wxWindow::MacSuperEnabled( enabled ) ;
419 void wxControl::MacSuperShown( bool show
)
425 if ( m_macControlIsShown
)
427 ::UMAHideControl( m_macControl
) ;
428 m_macControlIsShown
= false ;
433 if ( MacIsReallyShown() && !m_macControlIsShown
)
435 ::UMAShowControl( m_macControl
) ;
436 m_macControlIsShown
= true ;
441 wxWindow::MacSuperShown( show
) ;
444 void wxControl::DoSetSize(int x
, int y
,
445 int width
, int height
,
448 if ( m_macControl
== NULL
)
450 wxWindow::DoSetSize( x
, y
,width
, height
,sizeFlags
) ;
454 WindowRef rootwindow
= GetMacRootWindow() ;
455 wxWindow
* wxrootwindow
= wxFindWinFromMacWindow( rootwindow
) ;
456 UMASetThemeWindowBackground( rootwindow
, kThemeBrushDialogBackgroundActive
, false ) ;
460 int former_w
= m_width
;
461 int former_h
= m_height
;
464 GetControlBounds( m_macControl
, &contrlRect
) ;
465 int former_mac_x
= contrlRect
.left
;
466 int former_mac_y
= contrlRect
.top
;
468 int currentX
, currentY
;
469 GetPosition(¤tX
, ¤tY
);
470 int currentW
,currentH
;
471 GetSize(¤tW
, ¤tH
);
473 int actualWidth
= width
;
474 int actualHeight
= height
;
477 if (x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
479 if (y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
482 actualWidth
= currentW
;
484 actualHeight
= currentH
;
486 if ( actualX
== currentX
&& actualY
== currentY
&& actualWidth
== currentW
&& actualHeight
== currentH
)
489 AdjustForParentClientOrigin(actualX
, actualY
, sizeFlags
);
490 WindowRef macrootwindow
= GetMacRootWindow() ;
491 wxMacDrawingHelper
focus( wxFindWinFromMacWindow( macrootwindow
) ) ;
493 int mac_x
= actualX
;
494 int mac_y
= actualY
;
495 GetParent()->MacClientToRootWindow( & mac_x
, & mac_y
) ;
497 if ( mac_x
!= former_mac_x
|| mac_y
!= former_mac_y
)
500 Rect inval
= { former_mac_y
, former_mac_x
, former_mac_y
+ m_height
, former_mac_x
+ m_width
} ;
501 InvalWindowRect( macrootwindow
, &inval
) ;
503 UMAMoveControl( m_macControl
, mac_x
+ m_macHorizontalBorder
, mac_y
+ m_macVerticalBorder
) ;
505 Rect inval
= { mac_y
, mac_x
, mac_y
+ m_height
, mac_x
+ m_width
} ;
506 InvalWindowRect(macrootwindow
, &inval
) ;
510 if ( actualX
!= former_x
|| actualY
!= former_y
)
515 MacRepositionScrollBars() ;
516 // To consider -> should the parameters be the effective or the virtual coordinates (AdjustForParent..)
517 wxPoint
point(m_x
, m_y
);
518 wxMoveEvent
event(point
, m_windowId
);
519 event
.SetEventObject(this);
520 GetEventHandler()->ProcessEvent(event
);
522 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
525 Rect inval
= { mac_y
, mac_x
, mac_y
+ former_h
, mac_x
+ former_w
} ;
526 InvalWindowRect( macrootwindow
, &inval
) ;
528 m_width
= actualWidth
;
529 m_height
= actualHeight
;
531 UMASizeControl( m_macControl
, m_width
- 2 * m_macHorizontalBorder
, m_height
- 2 * m_macVerticalBorder
) ;
533 Rect inval
= { mac_y
, mac_x
, mac_y
+ m_height
, mac_x
+ m_width
} ;
534 InvalWindowRect( macrootwindow
, &inval
) ;
537 MacRepositionScrollBars() ;
538 wxSize
size(m_width
, m_height
);
539 wxSizeEvent
event(size
, m_windowId
);
540 event
.SetEventObject(this);
541 GetEventHandler()->ProcessEvent(event
);
543 if ( wxrootwindow
->IsKindOf( CLASSINFO( wxDialog
) ) )
548 UMASetThemeWindowBackground( rootwindow
, kThemeBrushDocumentWindowBackground
, false ) ;
552 bool wxControl::Show(bool show
)
554 if ( !wxWindow::Show( show
) )
561 if ( m_macControlIsShown
)
563 ::UMAHideControl( m_macControl
) ;
564 m_macControlIsShown
= false ;
569 if ( MacIsReallyShown() && !m_macControlIsShown
)
571 ::UMAShowControl( m_macControl
) ;
572 m_macControlIsShown
= true ;
579 bool wxControl::Enable(bool enable
)
581 if ( !wxWindow::Enable(enable
) )
587 UMAActivateControl( m_macControl
) ;
589 UMADeactivateControl( m_macControl
) ;
594 void wxControl::Refresh(bool eraseBack
, const wxRect
*rect
)
598 wxWindow::Refresh( eraseBack
, rect
) ;
602 wxWindow::Refresh( eraseBack
, rect
) ;
606 void wxControl::MacRedrawControl()
610 WindowRef window
= GetMacRootWindow() ;
613 wxWindow
* win
= wxFindWinFromMacWindow( window
) ;
616 wxMacDrawingHelper
help( win
) ;
617 // the mac control manager always assumes to have the origin at 0,0
620 bool hasTabBehind
= false ;
621 wxWindow
* parent
= GetParent() ;
624 if( parent
->MacGetWindowData() )
626 UMASetThemeWindowBackground( win
->MacGetWindowData()->m_macWindow
, kThemeBrushDialogBackgroundActive
, false ) ;
630 if( parent
->IsKindOf( CLASSINFO( wxNotebook
) ) || parent
->IsKindOf( CLASSINFO( wxTabCtrl
) ))
632 if ( ((wxControl
*)parent
)->m_macControl
)
633 SetUpControlBackground( ((wxControl
*)parent
)->m_macControl
, -1 , true ) ;
637 parent
= parent
->GetParent() ;
640 UMADrawControl( m_macControl
) ;
641 UMASetThemeWindowBackground( win
->MacGetWindowData()->m_macWindow
, win
->MacGetWindowData()->m_macWindowBackgroundTheme
, false ) ;
647 void wxControl::OnPaint(wxPaintEvent
& event
)
651 WindowRef window
= GetMacRootWindow() ;
654 wxWindow
* win
= wxFindWinFromMacWindow( window
) ;
657 wxMacDrawingHelper
help( win
) ;
658 // the mac control manager always assumes to have the origin at 0,0
662 bool hasTabBehind
= false ;
663 wxWindow
* parent
= GetParent() ;
666 if( parent
->MacGetWindowData() )
668 UMASetThemeWindowBackground( win
->MacGetWindowData()->m_macWindow
, kThemeBrushDialogBackgroundActive
, false ) ;
672 if( parent
->IsKindOf( CLASSINFO( wxNotebook
) ) || parent
->IsKindOf( CLASSINFO( wxTabCtrl
) ))
674 if ( ((wxControl
*)parent
)->m_macControl
)
675 SetUpControlBackground( ((wxControl
*)parent
)->m_macControl
, -1 , true ) ;
679 parent
= parent
->GetParent() ;
682 UMADrawControl( m_macControl
) ;
683 UMASetThemeWindowBackground( win
->MacGetWindowData()->m_macWindow
, win
->MacGetWindowData()->m_macWindowBackgroundTheme
, false ) ;
689 // wxWindow::OnPaint( event ) ;
692 void wxControl::OnEraseBackground(wxEraseEvent
& event
)
694 // In general, you don't want to erase the background of a control,
695 // or you'll get a flicker.
696 // TODO: move this 'null' function into each control that
701 void wxControl::OnKeyDown( wxKeyEvent
&event
)
703 if ( m_macControl
== NULL
)
706 EventRecord
*ev
= wxTheApp
->MacGetCurrentEvent() ;
709 keychar
= short(ev
->message
& charCodeMask
);
710 keycode
= short(ev
->message
& keyCodeMask
) >> 8 ;
712 UMAHandleControlKey( m_macControl
, keycode
, keychar
, ev
->modifiers
) ;
715 void wxControl::OnMouseEvent( wxMouseEvent
&event
)
717 if ( m_macControl
== NULL
)
723 if (event
.GetEventType() == wxEVT_LEFT_DOWN
|| event
.GetEventType() == wxEVT_LEFT_DCLICK
)
729 MacClientToRootWindow( &x
, &y
) ;
731 ControlHandle control
;
735 WindowRef window
= GetMacRootWindow() ;
742 if ( !event
.m_leftDown
&& !event
.m_rightDown
)
743 modifiers
|= btnState
;
745 if ( event
.m_shiftDown
)
746 modifiers
|= shiftKey
;
748 if ( event
.m_controlDown
)
749 modifiers
|= controlKey
;
751 if ( event
.m_altDown
)
752 modifiers
|= optionKey
;
754 if ( event
.m_metaDown
)
755 modifiers
|= cmdKey
;
757 controlpart
= FindControl( localwhere
, window
, &control
) ;
760 if ( AcceptsFocus() && FindFocus() != this )
765 if ( control
&& UMAIsControlActive( control
) )
768 if ( controlpart
== kControlIndicatorPart
&& !UMAHasAppearance() )
769 controlpart
= UMAHandleControlClick( control
, localwhere
, modifiers
, (ControlActionUPP
) NULL
) ;
771 controlpart
= UMAHandleControlClick( control
, localwhere
, modifiers
, (ControlActionUPP
) -1 ) ;
772 wxTheApp
->s_lastMouseDown
= 0 ;
773 if ( controlpart
&& ! ( ( UMAHasAppearance() || (controlpart
!= kControlIndicatorPart
) )
774 && (IsKindOf( CLASSINFO( wxScrollBar
) ) ) ) ) // otherwise we will get the event twice
776 MacHandleControlClick( control
, controlpart
) ;
784 bool wxControl::MacCanFocus() const
786 { if ( m_macControl
== NULL
)
793 void wxControl::MacHandleControlClick( ControlHandle control
, SInt16 controlpart
)
795 wxASSERT_MSG( m_macControl
!= NULL
, "No valid mac control" ) ;