123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #include "stdafx.h"
- #include "UIChildLayout.h"
- namespace DuiLib
- {
- CChildLayoutUI::CChildLayoutUI (IDialogBuilderCallback* pParentBuilder) :m_pParentBuilder (pParentBuilder)
- {
- }
- void CChildLayoutUI::Init()
- {
- if (!m_pstrXMLFile.IsEmpty())
- {
- CDialogBuilder builder;
-
- CContainerUI* pChildWindow = static_cast<CContainerUI*>(builder.Create(m_pstrXMLFile.GetData(), (UINT)0, m_pParentBuilder, m_pManager));
- if (pChildWindow)
- {
- this->Add(pChildWindow);
- }
- else
- {
- this->RemoveAll();
- }
- }
- }
- void CChildLayoutUI::SetAttribute( LPCTSTR pstrName, LPCTSTR pstrValue )
- {
- if( _tcscmp(pstrName, _T("xmlfile")) == 0 )
- SetChildLayoutXML(pstrValue);
- else
- CContainerUI::SetAttribute(pstrName,pstrValue);
- }
- void CChildLayoutUI::SetChildLayoutXML( CDuiString pXML )
- {
- m_pstrXMLFile=pXML;
- }
- CDuiString CChildLayoutUI::GetChildLayoutXML()
- {
- return m_pstrXMLFile;
- }
- LPVOID CChildLayoutUI::GetInterface( LPCTSTR pstrName )
- {
- if( _tcscmp(pstrName, DUI_CTR_CHILDLAYOUT) == 0 ) return static_cast<CChildLayoutUI*>(this);
- return CControlUI::GetInterface(pstrName);
- }
- LPCTSTR CChildLayoutUI::GetClass() const
- {
- return _T("ChildLayoutUI");
- }
- } // namespace DuiLib
|