+ m_macIsUserPane = false ;
+
+ if ( !wxControl::Create(parent, id, pos, size, style, validator, name) )
+ return false;
+
+ Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
+ m_peer = new wxMacControl(this) ;
+
+ OSStatus err = CreateDisclosureTriangleControl(
+ MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds,
+ kControlDisclosureTrianglePointDefault,
+ wxCFStringRef( label ),
+ 0, // closed
+ TRUE, // draw title
+ TRUE, // auto toggle back and forth
+ m_peer->GetControlRefAddr() );
+
+ verify_noerr( err );
+ wxASSERT_MSG( m_peer != NULL && m_peer->Ok() , wxT("No valid Mac control") ) ;
+
+ MacPostControlCreate( pos, size );
+ // passing the text in the param doesn't seem to work, so lets do if again
+ SetLabel( label );
+
+ return true;
+}
+
+void wxDisclosureTriangle::SetOpen( bool open )
+{
+ m_peer->SetValue( open ? 1 : 0 );
+}
+
+bool wxDisclosureTriangle::IsOpen() const
+{
+ return m_peer->GetValue() == 1;
+}
+
+wxInt32 wxDisclosureTriangle::MacControlHit( WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) )
+{
+ // Just emit button event for now
+ wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId);