1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxControl class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "control.h"
18 #include "wx/control.h"
22 #include "wx/notebook.h"
23 #include "wx/tabctrl.h"
24 #include "wx/radiobox.h"
25 #include "wx/spinbutt.h"
26 #include "wx/scrolbar.h"
27 #include "wx/button.h"
28 #include "wx/dialog.h"
29 #include "wx/statbox.h"
31 #include "wx/stattext.h"
33 #if !USE_SHARED_LIBRARY
34 IMPLEMENT_ABSTRACT_CLASS(wxControl
, wxWindow
)
36 BEGIN_EVENT_TABLE(wxControl
, wxWindow
)
37 EVT_MOUSE_EVENTS( wxControl::OnMouseEvent
)
38 EVT_CHAR( wxControl::OnKeyDown
)
39 EVT_PAINT( wxControl::OnPaint
)
43 #include "wx/mac/uma.h"
47 ControlActionUPP wxMacLiveScrollbarActionUPP
= NULL
;
49 pascal void wxMacLiveScrollbarActionProc( ControlHandle control
, ControlPartCode partCode
) ;
50 pascal void wxMacLiveScrollbarActionProc( ControlHandle control
, ControlPartCode partCode
)
54 wxControl
* wx
= (wxControl
*) GetControlReference( control
) ;
57 wx
->MacHandleControlClick( control
, partCode
) ;
62 wxControl::wxControl()
65 m_macHorizontalBorder
= 0 ; // additional pixels around the real control
66 m_macVerticalBorder
= 0 ;
67 m_backgroundColour
= *wxWHITE
;
68 m_foregroundColour
= *wxBLACK
;
69 #if WXWIN_COMPATIBILITY
71 #endif // WXWIN_COMPATIBILITY
73 if ( wxMacLiveScrollbarActionUPP
== NULL
)
75 #if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340)
76 wxMacLiveScrollbarActionUPP
= NewControlActionUPP( wxMacLiveScrollbarActionProc
);
78 wxMacLiveScrollbarActionUPP
= NewControlActionProc( wxMacLiveScrollbarActionProc
) ;
83 bool wxControl::Create(wxWindow
*parent
, wxWindowID id
,
85 const wxSize
& size
, long style
,
86 const wxValidator
& validator
,
90 m_macHorizontalBorder
= 0 ; // additional pixels around the real control
91 m_macVerticalBorder
= 0 ;
92 bool rval
= wxWindow::Create(parent
, id
, pos
, size
, style
, name
);
95 SetValidator(validator
);
101 wxControl::~wxControl()
103 m_isBeingDeleted
= TRUE
;
104 // If we delete an item, we should initialize the parent panel,
105 // because it could now be invalid.
106 wxWindow
*parent
= GetParent() ;
109 if (parent
->GetDefaultItem() == (wxButton
*) this)
110 parent
->SetDefaultItem(NULL
);
114 ::DisposeControl( m_macControl
) ;
115 m_macControl
= NULL
;
119 void wxControl::SetLabel(const wxString
& title
)
128 if( wxApp::s_macDefaultEncodingIsPC
)
129 label
= wxMacMakeMacStringFromPC( title
) ;
134 c2pstrcpy( (StringPtr
) maclabel
, label
) ;
136 strcpy( (char *) maclabel
, label
) ;
137 c2pstr( (char *) maclabel
) ;
139 ::SetControlTitle( m_macControl
, maclabel
) ;
144 wxSize
wxControl::DoGetBestSize() const
146 Rect bestsize
= { 0 , 0 , 0 , 0 } ;
147 short baselineoffset
;
148 int bestWidth
, bestHeight
;
149 ::GetBestControlRect( m_macControl
, &bestsize
, &baselineoffset
) ;
151 if ( EmptyRect( &bestsize
) )
154 bestsize
.left
= bestsize
.top
= 0 ;
155 bestsize
.right
= 16 ;
156 bestsize
.bottom
= 16 ;
157 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
159 bestsize
.bottom
= 16 ;
161 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
163 bestsize
.bottom
= 24 ;
167 if ( IsKindOf( CLASSINFO( wxButton
) ) )
169 bestWidth
= m_label
.Length() * 8 + 12 ;
170 if ( bestWidth
< 70 )
173 else if ( IsKindOf( CLASSINFO( wxStaticText
) ) )
175 bestWidth
= m_label
.Length() * 8 ;
178 bestWidth
= bestsize
.right
- bestsize
.left
;
180 bestWidth
+= 2 * m_macHorizontalBorder
;
182 bestHeight
= bestsize
.bottom
- bestsize
.top
;
183 if ( bestHeight
< 10 )
186 bestHeight
+= 2 * m_macVerticalBorder
;
189 return wxSize(bestWidth
, bestHeight
);
192 bool wxControl::ProcessCommand (wxCommandEvent
& event
)
195 // 1) A callback function (to become obsolete)
196 // 2) OnCommand, starting at this window and working up parent hierarchy
197 // 3) OnCommand then calls ProcessEvent to search the event tables.
198 #if WXWIN_COMPATIBILITY
201 (void)(*m_callback
)(this, event
);
206 #endif // WXWIN_COMPATIBILITY
208 return GetEventHandler()->ProcessEvent(event
);
212 // ------------------------
213 wxList
*wxWinMacControlList
= NULL
;
214 wxControl
*wxFindControlFromMacControl(ControlHandle inControl
)
216 wxNode
*node
= wxWinMacControlList
->Find((long)inControl
);
219 return (wxControl
*)node
->Data();
222 void wxAssociateControlWithMacControl(ControlHandle inControl
, wxControl
*control
)
224 // adding NULL WindowRef is (first) surely a result of an error and
225 // (secondly) breaks menu command processing
226 wxCHECK_RET( inControl
!= (ControlHandle
) NULL
, "attempt to add a NULL WindowRef to window list" );
228 if ( !wxWinMacControlList
->Find((long)inControl
) )
229 wxWinMacControlList
->Append((long)inControl
, control
);
232 void wxRemoveMacControlAssociation(wxControl
*control
)
234 wxWinMacControlList
->DeleteObject(control
);
237 void wxControl::MacPreControlCreate( wxWindow
*parent
, wxWindowID id
, wxString label
,
239 const wxSize
& size
, long style
,
240 const wxValidator
& validator
,
241 const wxString
& name
, Rect
*outBounds
, StringPtr maclabel
)
246 SetValidator(validator
);
248 m_windowStyle
= style
;
249 parent
->AddChild(this);
251 m_backgroundColour
= parent
->GetBackgroundColour() ;
252 m_foregroundColour
= parent
->GetForegroundColour() ;
255 m_windowId
= NewControlId();
259 // These sizes will be adjusted in MacPostControlCreate
266 outBounds
->top
= -10;
267 outBounds
->left
= -10;
268 outBounds
->bottom
= 0;
269 outBounds
->right
= 0;
272 strcpy( c_text
, label
) ;
273 if( wxApp::s_macDefaultEncodingIsPC
)
275 wxMacConvertFromPCForControls( c_text
) ;
279 c2pstrcpy( (StringPtr
) maclabel
, c_text
) ;
281 strcpy( (char *) maclabel
, c_text
) ;
282 c2pstr( (char *) maclabel
) ;
286 void wxControl::MacPostControlCreate()
288 wxASSERT_MSG( m_macControl
!= NULL
, "No valid mac control" ) ;
290 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
294 else if ( IsKindOf( CLASSINFO( wxStaticBox
) ) || IsKindOf( CLASSINFO( wxRadioBox
) ) || IsKindOf( CLASSINFO( wxButton
) ) )
296 ControlFontStyleRec controlstyle
;
297 controlstyle
.flags
= kControlUseFontMask
;
298 controlstyle
.font
= kControlFontSmallBoldSystemFont
;
300 ::SetControlFontStyle( m_macControl
, &controlstyle
) ;
304 ControlFontStyleRec controlstyle
;
305 controlstyle
.flags
= kControlUseFontMask
;
306 controlstyle
.font
= kControlFontSmallSystemFont
;
308 ::SetControlFontStyle( m_macControl
, &controlstyle
) ;
310 ControlHandle container
= GetParent()->MacGetContainerForEmbedding() ;
311 wxASSERT_MSG( container
!= NULL
, wxT("No valid mac container control") ) ;
312 ::EmbedControl( m_macControl
, container
) ;
313 m_macControlIsShown
= true ;
315 wxAssociateControlWithMacControl( m_macControl
, this ) ;
318 // Adjust the controls size and position
319 wxPoint
pos(m_x
, m_y
);
320 wxSize
best_size( DoGetBestSize() );
321 wxSize
new_size( m_width
, m_height
);
323 m_x
= m_y
= m_width
= m_height
= -1; // Forces SetSize to move/size the control
325 if (new_size
.x
== -1) {
326 new_size
.x
= best_size
.x
;
328 if (new_size
.y
== -1) {
329 new_size
.y
= best_size
.y
;
332 SetSize(pos
.x
, pos
.y
, new_size
.x
, new_size
.y
);
334 UMAShowControl( m_macControl
) ;
338 void wxControl::MacAdjustControlRect()
340 wxASSERT_MSG( m_macControl
!= NULL
, wxT("No valid mac control") ) ;
341 if ( m_width
== -1 || m_height
== -1 )
343 Rect bestsize
= { 0 , 0 , 0 , 0 } ;
344 short baselineoffset
;
346 ::GetBestControlRect( m_macControl
, &bestsize
, &baselineoffset
) ;
348 if ( EmptyRect( &bestsize
) )
351 bestsize
.left
= bestsize
.top
= 0 ;
352 bestsize
.right
= 16 ;
353 bestsize
.bottom
= 16 ;
354 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
356 bestsize
.bottom
= 16 ;
358 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
360 bestsize
.bottom
= 24 ;
366 if ( IsKindOf( CLASSINFO( wxButton
) ) )
368 m_width
= m_label
.Length() * 8 + 12 ;
372 else if ( IsKindOf( CLASSINFO( wxStaticText
) ) )
374 m_width
= m_label
.Length() * 8 ;
377 m_width
= bestsize
.right
- bestsize
.left
;
379 m_width
+= 2 * m_macHorizontalBorder
;
381 if ( m_height
== -1 )
383 m_height
= bestsize
.bottom
- bestsize
.top
;
387 m_height
+= 2 * m_macVerticalBorder
;
390 UMASizeControl( m_macControl
, m_width
- 2 * m_macHorizontalBorder
, m_height
- 2 * m_macVerticalBorder
) ;
393 ControlHandle
wxControl::MacGetContainerForEmbedding()
396 return m_macControl
;
398 return wxWindow::MacGetContainerForEmbedding() ;
401 void wxControl::MacSuperChangedPosition()
406 GetControlBounds( m_macControl
, &contrlRect
) ;
407 int former_mac_x
= contrlRect
.left
;
408 int former_mac_y
= contrlRect
.top
;
411 GetParent()->MacWindowToRootWindow( & mac_x
, & mac_y
) ;
413 WindowRef rootwindow
= MacGetRootWindow() ;
415 if ( mac_x
+ m_macHorizontalBorder
!= former_mac_x
||
416 mac_y
+ m_macVerticalBorder
!= former_mac_y
)
419 Rect inval
= { former_mac_y
, former_mac_x
, former_mac_y
+ m_height
, former_mac_x
+ m_width
} ;
420 InvalWindowRect( rootwindow
, &inval
) ;
422 UMAMoveControl( m_macControl
, mac_x
+ m_macHorizontalBorder
, mac_y
+ m_macVerticalBorder
) ;
424 Rect inval
= { mac_y
, mac_x
, mac_y
+ m_height
, mac_x
+ m_width
} ;
425 InvalWindowRect( rootwindow
, &inval
) ;
430 wxWindow::MacSuperChangedPosition() ;
433 void wxControl::MacSuperEnabled( bool enabled
)
436 wxWindow::MacSuperEnabled( enabled
) ;
439 void wxControl::MacSuperShown( bool show
)
445 if ( m_macControlIsShown
)
447 ::UMAHideControl( m_macControl
) ;
448 m_macControlIsShown
= false ;
453 if ( MacIsReallyShown() && !m_macControlIsShown
)
455 ::UMAShowControl( m_macControl
) ;
456 m_macControlIsShown
= true ;
461 wxWindow::MacSuperShown( show
) ;
464 void wxControl::DoSetSize(int x
, int y
,
465 int width
, int height
,
468 if ( m_macControl
== NULL
)
470 wxWindow::DoSetSize( x
, y
,width
, height
,sizeFlags
) ;
474 Rect oldbounds
, newbounds
;
475 int new_x
, new_y
, new_width
, new_height
;
481 new_height
= m_height
;
483 if (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
)
492 if (x
!= -1) new_x
= x
;
493 if (y
!= -1) new_y
= y
;
494 if (width
!= -1) new_width
= width
;
495 if (height
!= -1) new_height
= height
;
498 if(sizeFlags
& wxSIZE_AUTO
)
500 wxSize size
= GetBestSize();
501 if (sizeFlags
& wxSIZE_AUTO_WIDTH
)
503 if (width
== -1) new_width
= size
.x
;
505 if (sizeFlags
& wxSIZE_AUTO_HEIGHT
)
507 if (height
== -1) new_height
= size
.y
;
510 AdjustForParentClientOrigin(new_x
, new_y
, sizeFlags
);
515 GetParent()->MacWindowToRootWindow(&mac_x
, &mac_y
);
517 GetControlBounds(m_macControl
, &oldbounds
);
518 oldbounds
.right
= oldbounds
.left
+ m_width
;
519 oldbounds
.bottom
= oldbounds
.top
+ m_height
;
522 bool doResize
= false;
524 if ( mac_x
!= (oldbounds
.left
- m_macHorizontalBorder
) ||
525 mac_y
!= (oldbounds
.top
- m_macVerticalBorder
) )
529 if ( new_width
!= oldbounds
.right
- oldbounds
.left
- 2 * m_macHorizontalBorder
||
530 new_height
!= oldbounds
.bottom
- oldbounds
.top
- 2 * m_macVerticalBorder
)
535 if ( doMove
|| doResize
)
539 // Ensure resize is within constraints
540 if ((m_minWidth
!= -1) && (new_width
< m_minWidth
)) {
541 new_width
= m_minWidth
;
543 if ((m_minHeight
!= -1) && (new_height
< m_minHeight
)) {
544 new_height
= m_minHeight
;
546 if ((m_maxWidth
!= -1) && (new_width
> m_maxWidth
)) {
547 new_width
= m_maxWidth
;
549 if ((m_maxHeight
!= -1) && (new_height
> m_maxHeight
)) {
550 new_height
= m_maxHeight
;
558 UMAMoveControl(m_macControl
,
559 mac_x
+ m_macHorizontalBorder
, mac_y
+ m_macVerticalBorder
);
561 wxMoveEvent
event(wxPoint(m_x
, m_y
), m_windowId
);
562 event
.SetEventObject(this);
563 GetEventHandler()->ProcessEvent(event
) ;
568 m_height
= new_height
;
570 UMASizeControl( m_macControl
,
571 m_width
- 2 * m_macHorizontalBorder
,
572 m_height
- 2 * m_macVerticalBorder
) ;
575 wxSizeEvent
event(wxSize(m_width
, m_height
), m_windowId
);
576 event
.SetEventObject(this);
577 GetEventHandler()->ProcessEvent(event
);
584 bool wxControl::Show(bool show
)
586 if ( !wxWindow::Show( show
) )
593 if ( m_macControlIsShown
)
595 ::UMAHideControl( m_macControl
) ;
596 m_macControlIsShown
= false ;
601 if ( MacIsReallyShown() && !m_macControlIsShown
)
603 ::UMAShowControl( m_macControl
) ;
604 m_macControlIsShown
= true ;
611 bool wxControl::Enable(bool enable
)
613 if ( !wxWindow::Enable(enable
) )
619 UMAActivateControl( m_macControl
) ;
621 UMADeactivateControl( m_macControl
) ;
626 void wxControl::Refresh(bool eraseBack
, const wxRect
*rect
)
628 wxWindow::Refresh( eraseBack
, rect
) ;
631 void wxControl::MacRedrawControl()
633 if ( m_macControl
&& MacGetRootWindow() )
635 wxClientDC
dc(this) ;
636 wxMacPortSetter
helper(&dc
) ;
638 // the controls sometimes draw outside their boundaries, this
639 // should be resolved differently but is not trivial (e.g. drop shadows)
640 // since adding them to the border would yield in enormous gaps between
642 Rect r
= { 0 , 0 , 32000 , 32000 } ;
644 wxDC::MacSetupBackgroundForCurrentPort( MacGetBackgroundBrush() ) ;
645 UMADrawControl( m_macControl
) ;
649 void wxControl::OnPaint(wxPaintEvent
& event
)
654 wxMacPortSetter
helper(&dc
) ;
655 // the controls sometimes draw outside their boundaries, this
656 // should be resolved differently but is not trivial (e.g. drop shadows)
657 // since adding them to the border would yield in enormous gaps between
659 Rect r
= { 0 , 0 , 32000 , 32000 } ;
662 wxDC::MacSetupBackgroundForCurrentPort( MacGetBackgroundBrush() ) ;
663 UMADrawControl( m_macControl
) ;
670 void wxControl::OnEraseBackground(wxEraseEvent
& event
)
672 wxWindow::OnEraseBackground( event
) ;
676 void wxControl::OnKeyDown( wxKeyEvent
&event
)
678 if ( m_macControl
== NULL
)
681 EventRecord
*ev
= wxTheApp
->MacGetCurrentEvent() ;
684 keychar
= short(ev
->message
& charCodeMask
);
685 keycode
= short(ev
->message
& keyCodeMask
) >> 8 ;
687 ::HandleControlKey( m_macControl
, keycode
, keychar
, ev
->modifiers
) ;
690 void wxControl::OnMouseEvent( wxMouseEvent
&event
)
692 if ( m_macControl
== NULL
)
698 if (event
.GetEventType() == wxEVT_LEFT_DOWN
|| event
.GetEventType() == wxEVT_LEFT_DCLICK
)
704 MacClientToRootWindow( &x
, &y
) ;
706 ControlHandle control
;
709 WindowRef window
= MacGetRootWindow() ;
716 if ( !event
.m_leftDown
&& !event
.m_rightDown
)
717 modifiers
|= btnState
;
719 if ( event
.m_shiftDown
)
720 modifiers
|= shiftKey
;
722 if ( event
.m_controlDown
)
723 modifiers
|= controlKey
;
725 if ( event
.m_altDown
)
726 modifiers
|= optionKey
;
728 if ( event
.m_metaDown
)
729 modifiers
|= cmdKey
;
732 control = FindControlUnderMouse( localwhere , window , &controlpart ) ;
734 controlpart = FindControl( localwhere , window , &control ) ;
739 if ( AcceptsFocus() && FindFocus() != this )
744 control
= m_macControl
;
745 if ( control
&& ::IsControlActive( control
) )
748 controlpart
= ::HandleControlClick( control
, localwhere
, modifiers
, (ControlActionUPP
) -1 ) ;
749 wxTheApp
->s_lastMouseDown
= 0 ;
750 if ( control
&& controlpart
!= kControlNoPart
&&
751 ! IsKindOf( CLASSINFO( wxScrollBar
) )
752 ) // otherwise we will get the event twice for scrollbar
754 MacHandleControlClick( control
, controlpart
) ;
762 bool wxControl::MacCanFocus() const
764 { if ( m_macControl
== NULL
)
771 void wxControl::MacHandleControlClick( ControlHandle control
, SInt16 controlpart
)
773 wxASSERT_MSG( m_macControl
!= NULL
, "No valid mac control" ) ;