void CUIVerticalLayout::SetAttribute(LPCWSTR pstrName, LPCWSTR pstrValue) { if( wcscmp(pstrName, L"sepheight") == 0 ) SetSepHeight(/*_wtoi(pstrValue)*/wcstol(pstrValue, NULL, 10)); else if( wcscmp(pstrName, L"sepimm") == 0 ) SetSepImmMode(wcscmp(pstrValue, L"true") == 0); else CUIContainer::SetAttribute(pstrName, pstrValue); }
void CHorizontalLayoutUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) { if( _tcscmp(pstrName, _T("way")) == 0 ) { if( _tcscmp(pstrValue, _T("left")) == 0 ) m_unWay = 0; else if( _tcscmp(pstrValue, _T("right")) == 0 ) m_unWay = 1; } else if( _tcscmp(pstrName, _T("sepwidth")) == 0 ) SetSepWidth(_ttoi(pstrValue)); else if( _tcscmp(pstrName, _T("sepimm")) == 0 ) SetSepImmMode(_tcscmp(pstrValue, _T("true")) == 0); else CContainerUI::SetAttribute(pstrName, pstrValue); }
void CVerticalLayoutUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) { if( _tcscmp(pstrName, _T("sepheight")) == 0 ) SetSepHeight(_ttoi(pstrValue)); else if( _tcscmp(pstrName, _T("sepimm")) == 0 ) SetSepImmMode(_tcscmp(pstrValue, _T("true")) == 0); else CContainerUI::SetAttribute(pstrName, pstrValue); }
void CHorizontalLayoutUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) { if( _tcscmp(pstrName, _T("sepwidth")) == 0 ) SetSepWidth(_ttoi(pstrValue)); else if( _tcscmp(pstrName, _T("sepimm")) == 0 ) SetSepImmMode(_tcscmp(pstrValue, _T("TRUE")) == 0); else CContainerUI::SetAttribute(pstrName, pstrValue); }