1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "choice.h"
17 #include "wx/choice.h"
19 #include "wx/mac/uma.h"
21 #if !USE_SHARED_LIBRARY
22 IMPLEMENT_DYNAMIC_CLASS(wxChoice
, wxControl
)
25 extern MenuHandle
NewUniqueMenu() ;
29 if ( HasClientObjectData() )
31 size_t i
, max
= GetCount();
33 for ( i
= 0; i
< max
; ++i
)
34 delete GetClientObject(i
);
37 // DeleteMenu( m_macPopUpMenuId ) ;
38 // DisposeMenu( m_macPopUpMenuHandle ) ;
41 bool wxChoice::Create(wxWindow
*parent
, wxWindowID id
,
44 const wxArrayString
& choices
,
46 const wxValidator
& validator
,
49 wxCArrayString
chs(choices
);
51 return Create(parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
52 style
, validator
, name
);
55 bool wxChoice::Create(wxWindow
*parent
, wxWindowID id
,
58 int n
, const wxString choices
[],
60 const wxValidator
& validator
,
63 m_macIsUserPane
= FALSE
;
65 if ( !wxChoiceBase::Create(parent
, id
, pos
, size
, style
, validator
, name
) )
68 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
70 m_peer
= new wxMacControl() ;
71 verify_noerr ( CreatePopupButtonControl( MAC_WXHWND(parent
->MacGetTopLevelWindowRef()) , &bounds
, CFSTR("") ,
72 -12345 , false /* no variable width */ , 0 , 0 , 0 , *m_peer
) );
75 m_macPopUpMenuHandle
= NewUniqueMenu() ;
76 m_peer
->SetData
<MenuHandle
>( kControlNoPart
, kControlPopupButtonMenuHandleTag
, (MenuHandle
) m_macPopUpMenuHandle
) ;
77 m_peer
->SetValueAndRange( n
> 0 ? 1 : 0 , 0 , 0 ) ;
78 MacPostControlCreate(pos
,size
) ;
80 for ( int i
= 0; i
< n
; i
++ )
84 SetBestSize(size
); // Needed because it is a wxControlWithItems
88 // ----------------------------------------------------------------------------
89 // adding/deleting items to/from the list
90 // ----------------------------------------------------------------------------
91 int wxChoice::DoAppend(const wxString
& item
)
93 UMAAppendMenuItem(MAC_WXHMENU( m_macPopUpMenuHandle
) , item
, m_font
.GetEncoding() );
94 m_strings
.Add( item
) ;
96 int index
= m_strings
.GetCount() - 1 ;
97 DoSetItemClientData( index
, NULL
) ;
98 m_peer
->SetMaximum( GetCount() ) ;
102 int wxChoice::DoInsert(const wxString
& item
, int pos
)
104 wxCHECK_MSG(!(GetWindowStyle() & wxCB_SORT
), -1, wxT("can't insert into sorted list"));
105 wxCHECK_MSG((pos
>=0) && (pos
<=GetCount()), -1, wxT("invalid index"));
107 if (pos
== GetCount())
108 return DoAppend(item
);
110 UMAAppendMenuItem(MAC_WXHMENU( m_macPopUpMenuHandle
) , item
, m_font
.GetEncoding() );
111 m_strings
.Insert( item
, pos
) ;
112 m_datas
.Insert( NULL
, pos
) ;
113 DoSetItemClientData( pos
, NULL
) ;
114 m_peer
->SetMaximum( GetCount() ) ;
118 void wxChoice::Delete(int n
)
120 wxCHECK_RET( n
< GetCount(), wxT("invalid item index in wxChoice::Delete") );
121 if ( HasClientObjectData() )
123 delete GetClientObject(n
);
125 ::DeleteMenuItem( MAC_WXHMENU(m_macPopUpMenuHandle
) , n
+ 1) ;
126 m_strings
.RemoveAt( n
) ;
127 m_datas
.RemoveAt( n
) ;
128 m_peer
->SetMaximum( GetCount() ) ;
131 void wxChoice::Clear()
134 for ( int i
= 0 ; i
< GetCount() ; i
++ )
136 ::DeleteMenuItem( MAC_WXHMENU(m_macPopUpMenuHandle
) , 1 ) ;
140 m_peer
->SetMaximum( 0 ) ;
143 void wxChoice::FreeData()
145 if ( HasClientObjectData() )
147 size_t count
= GetCount();
148 for ( size_t n
= 0; n
< count
; n
++ )
150 delete GetClientObject(n
);
155 // ----------------------------------------------------------------------------
157 // ----------------------------------------------------------------------------
158 int wxChoice::GetSelection() const
160 return m_peer
->GetValue() -1 ;
163 void wxChoice::SetSelection(int n
)
165 m_peer
->SetValue( n
+ 1 ) ;
168 // ----------------------------------------------------------------------------
169 // string list functions
170 // ----------------------------------------------------------------------------
172 int wxChoice::GetCount() const
174 return m_strings
.GetCount() ;
177 int wxChoice::FindString(const wxString
& s
) const
179 for( int i
= 0 ; i
< GetCount() ; i
++ )
181 if ( GetString( i
).IsSameAs(s
, FALSE
) )
187 void wxChoice::SetString(int n
, const wxString
& s
)
189 wxFAIL_MSG(wxT("wxChoice::SetString() not yet implemented"));
190 #if 0 // should do this, but no Insert() so far
196 wxString
wxChoice::GetString(int n
) const
198 wxCHECK_MSG( n
>= 0 && (size_t)n
< m_strings
.GetCount(), _T(""),
199 _T("wxChoice::GetString(): invalid index") );
201 return m_strings
[n
] ;
204 // ----------------------------------------------------------------------------
206 // ----------------------------------------------------------------------------
207 void wxChoice::DoSetItemClientData( int n
, void* clientData
)
209 wxCHECK_RET( n
>= 0 && (size_t)n
< m_datas
.GetCount(),
210 wxT("invalid index in wxChoice::SetClientData") );
212 m_datas
[n
] = (char*) clientData
;
215 void *wxChoice::DoGetItemClientData(int n
) const
217 wxCHECK_MSG( n
>= 0 && (size_t)n
< m_datas
.GetCount(), NULL
,
218 wxT("invalid index in wxChoice::GetClientData") );
219 return (void *)m_datas
[n
];
222 void wxChoice::DoSetItemClientObject( int n
, wxClientData
* clientData
)
224 DoSetItemClientData(n
, clientData
);
227 wxClientData
* wxChoice::DoGetItemClientObject( int n
) const
229 return (wxClientData
*)DoGetItemClientData(n
);
232 wxInt32
wxChoice::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
234 wxCommandEvent
event(wxEVT_COMMAND_CHOICE_SELECTED
, m_windowId
);
235 int n
= GetSelection();
236 // actually n should be made sure by the os to be a valid selection, but ...
240 event
.SetString(GetStringSelection());
241 event
.SetEventObject(this);
242 if ( HasClientObjectData() )
243 event
.SetClientObject( GetClientObject(n
) );
244 else if ( HasClientUntypedData() )
245 event
.SetClientData( GetClientData(n
) );
246 ProcessCommand(event
);
251 wxSize
wxChoice::DoGetBestSize() const
253 int lbWidth
= GetCount() > 0 ? 20 : 100; // some defaults
258 GetThemeMetric(kThemeMetricPopupButtonHeight
, &metric
);
262 wxMacPortStateHelper
st( UMAGetWindowPort( (WindowRef
) MacGetTopLevelWindowRef() ) ) ;
265 ::TextFont( m_font
.MacGetFontNum() ) ;
266 ::TextSize( m_font
.MacGetFontSize() ) ;
267 ::TextFace( m_font
.MacGetFontStyle() ) ;
271 ::TextFont( kFontIDMonaco
) ;
275 // Find the widest line
276 for(int i
= 0; i
< GetCount(); i
++) {
277 wxString
str(GetString(i
));
281 ::GetThemeTextDimensions( wxMacCFStringHolder( str
, m_font
.GetEncoding() ) ,
282 kThemeCurrentPortFont
,
289 wLine
= ::TextWidth( str
.c_str() , 0 , str
.Length() ) ;
291 lbWidth
= wxMax(lbWidth
, wLine
);
293 // Add room for the popup arrow
294 lbWidth
+= 2 * lbHeight
;
295 // And just a bit more
296 int cx
= ::TextWidth( "X" , 0 , 1 ) ;
300 return wxSize(lbWidth
, lbHeight
);