X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7577ac4b5c56d384441b995b4cea3b24d5fc441e..f4bc1aa27cb33f679d7e9c1518a7855bbc1fa471:/src/xrc/xh_radbx.cpp diff --git a/src/xrc/xh_radbx.cpp b/src/xrc/xh_radbx.cpp index 83be9a2d29..c6ee9307a6 100644 --- a/src/xrc/xh_radbx.cpp +++ b/src/xrc/xh_radbx.cpp @@ -21,10 +21,9 @@ #ifndef WX_PRECOMP #include "wx/intl.h" + #include "wx/radiobox.h" #endif -#include "wx/radiobox.h" - IMPLEMENT_DYNAMIC_CLASS(wxRadioBoxXmlHandler, wxXmlResourceHandler) wxRadioBoxXmlHandler::wxRadioBoxXmlHandler() @@ -48,70 +47,92 @@ wxObject *wxRadioBoxXmlHandler::DoCreateResource() m_insideBox = true; CreateChildrenPrivately( NULL, GetParamNode(wxT("content"))); - wxString *strings; - if ( !labels.empty() ) - { - strings = new wxString[labels.size()]; - const unsigned count = labels.size(); - for( unsigned i = 0; i < count; i++ ) - strings[i] = labels[i]; - } - else - { - strings = NULL; - } - XRC_MAKE_INSTANCE(control, wxRadioBox) control->Create(m_parentAsWindow, GetID(), GetText(wxT("label")), GetPosition(), GetSize(), - labels.size(), - strings, + m_labels, GetLong(wxT("dimension"), 1), GetStyle(), wxDefaultValidator, GetName()); - delete[] strings; - if (selection != -1) control->SetSelection(selection); SetupWindow(control); -#if wxUSE_TOOLTIPS - const unsigned count = labels.size(); + const unsigned count = m_labels.size(); for( unsigned i = 0; i < count; i++ ) { - if ( !tooltips[i].empty() ) - control->SetItemToolTip(i, tooltips[i]); +#if wxUSE_TOOLTIPS + if ( !m_tooltips[i].empty() ) + control->SetItemToolTip(i, m_tooltips[i]); +#endif // wxUSE_TOOLTIPS +#if wxUSE_HELP + if ( m_helptextSpecified[i] ) + control->SetItemHelpText(i, m_helptexts[i]); +#endif // wxUSE_HELP + + if ( !m_isShown[i] ) + control->Show(i, false); + if ( !m_isEnabled[i] ) + control->Enable(i, false); } + + + // forget information about the items of this radiobox, we should start + // afresh for the next one + m_labels.clear(); + +#if wxUSE_TOOLTIPS + m_tooltips.clear(); #endif // wxUSE_TOOLTIPS - labels.clear(); // dump the strings - tooltips.clear(); // dump the tooltips +#if wxUSE_HELP + m_helptexts.clear(); + m_helptextSpecified.clear(); +#endif // wxUSE_HELP + + m_isShown.clear(); + m_isEnabled.clear(); return control; } else // inside the radiobox element { - // we handle Label constructs here + // we handle handle Label constructs here, and the item + // tag can have tooltip, helptext, enabled and hidden attributes + + wxString label = GetNodeContent(m_node); - wxString str = GetNodeContent(m_node); wxString tooltip; - m_node->GetPropVal(wxT("tooltip"), &tooltip); + m_node->GetAttribute(wxT("tooltip"), &tooltip); + + wxString helptext; + bool hasHelptext = m_node->GetAttribute(wxT("helptext"), &helptext); if (m_resource->GetFlags() & wxXRC_USE_LOCALE) { - str = wxGetTranslation(str); + label = wxGetTranslation(label, m_resource->GetDomain()); if ( !tooltip.empty() ) - tooltip = wxGetTranslation(tooltip); + tooltip = wxGetTranslation(tooltip, m_resource->GetDomain()); + if ( hasHelptext ) + helptext = wxGetTranslation(helptext, m_resource->GetDomain()); } - labels.push_back(str); - tooltips.push_back(tooltip); + m_labels.push_back(label); +#if wxUSE_TOOLTIPS + m_tooltips.push_back(tooltip); +#endif // wxUSE_TOOLTIPS +#if wxUSE_HELP + m_helptexts.push_back(helptext); + m_helptextSpecified.push_back(hasHelptext); +#endif // wxUSE_HELP + m_isEnabled.push_back(GetBoolAttr("enabled", 1)); + m_isShown.push_back(!GetBoolAttr("hidden", 0)); return NULL; }