| /NW4C-2.0.3/demos/lyt/animShare/sources/ |
| D | main.cpp | 220 nw::lyt::Pane* pPane, in FindLayoutAnimationLink() argument 225 if (nw::lyt::AnimationLink *const pAnimLink = pPane->FindAnimationLinkSelf(animRes)) in FindLayoutAnimationLink() 231 const u8 materialNum = pPane->GetMaterialNum(); in FindLayoutAnimationLink() 234 … if (nw::lyt::AnimationLink *const pAnimLink = pPane->GetMaterial(i)->FindAnimationLink(animRes)) in FindLayoutAnimationLink() 241 …for (nw::lyt::PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildL… in FindLayoutAnimationLink() 265 nw::lyt::Pane* pPane, in SetAnimationFrame() argument 271 if (nw::lyt::AnimationLink *const pAnimLink = pPane->FindAnimationLinkSelf(animRes)) in SetAnimationFrame() 277 const u8 materialNum = pPane->GetMaterialNum(); in SetAnimationFrame() 280 … if (nw::lyt::AnimationLink *const pAnimLink = pPane->GetMaterial(i)->FindAnimationLink(animRes)) in SetAnimationFrame() 287 …for (nw::lyt::PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildL… in SetAnimationFrame() [all …]
|
| /NW4C-2.0.3/sources/libraries/lyt/ |
| D | lyt_Util.cpp | 103 Pane* pPane, in IsContain() argument 108 math::MTX34Inverse(&invGlbMtx, &pPane->GetGlobalMtx()); // ペインのグローバル行列の逆行列を求める in IsContain() 114 return Contains(pPane->GetPaneRect(), math::VEC2(lclPos.x, lclPos.y)); in IsContain() 119 Pane* pPane, in FindHitPane() argument 124 if (! pPane->IsVisible()) in FindHitPane() 130 …for (PaneList::ReverseIterator it = pPane->GetChildList().GetBeginReverseIter(); it != pPane->GetC… in FindHitPane() 139 if (nw::lyt::Bounding *const pBounding = nw::ut::DynamicCast<nw::lyt::Bounding*>(pPane)) in FindHitPane() 163 GetNextPane(Pane* pPane) in GetNextPane() argument 165 if (! pPane->GetChildList().IsEmpty()) // 子供がいれば、最初の子供を返す。 in GetNextPane() 167 PaneList::Iterator paneIt = pPane->GetChildList().GetBeginIter(); in GetNextPane() [all …]
|
| D | lyt_Drawer.cpp | 48 Drawer::Draw( const Pane* pPane, DrawInfo& drawInfo ) in Draw() argument 50 if ( pPane == NULL ) in Draw() 55 if ( pPane->IsVisible() ) in Draw() 57 pPane->MakeUniformData( &drawInfo, this ); in Draw()
|
| D | lyt_Animation.cpp | 192 Pane* pPane, in AnimatePaneSRT() argument 206 … pPane->SetSRTElement(pAnimTarget->target, GetHermiteCurveValue(frame, keys, pAnimTarget->keyNum)); in AnimatePaneSRT() 212 Pane* pPane, in AnimateVisibility() argument 226 pPane->SetVisible(0 != GetStepCurveValue(frame, keys, pAnimTarget->keyNum)); in AnimateVisibility() 232 Pane* pPane, in AnimateVertexColor() argument 249 pPane->SetColorElement(pAnimTarget->target, u8Val); in AnimateVertexColor() 329 Pane* pPane, in IsBindAnimation() argument 335 NW_UNUSED_VARIABLE(pPane) in IsBindAnimation() 340 if (pPane->FindAnimationLinkSelf(pAnimTrans)) in IsBindAnimation() 464 Pane* pPane, in Bind() argument [all …]
|
| D | lyt_Layout.cpp | 55 Pane* pPane, in SetTagProcessorImpl() argument 60 if (TextBox* pTextBox = ut::DynamicCast<TextBox*>(pPane)) in SetTagProcessorImpl() 66 …for (PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildList().Get… in SetTagProcessorImpl() 240 Pane* pPane = BuildPaneObj(kind, dataPtr, resBlockSet); in Build() local 241 if (pPane) in Build() 246 this->SetRootPane(pPane); in Build() 252 pParentPane->AppendChild(pPane); in Build() 255 pLastPane = pPane; in Build()
|
| D | lyt_Group.cpp | 75 Group::AppendPane(Pane* pPane) in AppendPane() argument 79 pPaneLink->target = pPane; in AppendPane()
|
| D | lyt_Pane.cpp | 523 if (Pane* pPane = it->FindPaneByName(findName, bRecursive)) in FindPaneByName() local 525 return pPane; in FindPaneByName()
|
| /NW4C-2.0.3/include/nw/lyt/ |
| D | lyt_Util.h | 142 Pane* pPane, 163 Pane* pPane, 211 Pane* GetNextPane(Pane* pPane);
|
| D | lyt_Animation.h | 176 virtual void Animate(u32 idx, Pane* pPane) = 0; 276 Pane* pPane, 373 Pane* pPane); 395 Pane* pPane, 610 u16 CalcAnimationNum(Pane* pPane, bool bRecursive) const;
|
| D | lyt_Group.h | 141 void AppendPane(Pane* pPane);
|
| D | lyt_Layout.h | 848 void SetRootPane(Pane* pPane) in SetRootPane() argument 850 m_pRootPane = pPane; in SetRootPane()
|
| D | lyt_Drawer.h | 294 void Draw( const Pane* pPane, DrawInfo& drawInfo );
|
| /NW4C-2.0.3/demos/lyt/extUserData/sources/ |
| D | main.cpp | 156 PrintExtUserData(nw::lyt::Pane* pPane) in PrintExtUserData() argument 159 const nw::lyt::ExtUserData *const extUserDataAry = pPane->GetExtUserDataArray(); in PrintExtUserData() 164 for (u16 udIdx = 0; udIdx < pPane->GetExtUserDataNum(); ++udIdx) in PrintExtUserData() 203 const nw::lyt::ExtUserData *const pExtUserDataIntList = pPane->FindExtUserDataByName("int1"); in PrintExtUserData()
|
| /NW4C-2.0.3/demos/lyt/tagGroupBind/sources/ |
| D | main.cpp | 253 FindBoundingPane(nw::lyt::Pane* pPane) in FindBoundingPane() argument 257 if ((pBounding = nw::ut::DynamicCast<nw::lyt::Bounding*>(pPane)) != NULL) in FindBoundingPane() 264 …for (nw::lyt::PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildL… in FindBoundingPane()
|
| /NW4C-2.0.3/demos/lyt/bounding/sources/ |
| D | main.cpp | 255 if (nw::lyt::Pane* pPane = pLayout->GetRootPane()->FindPaneByName(paneNames[i])) in nnMain() local 257 pPane->BindAnimation(pAnimTrans[ANIMTYPE_UNSELECT]); in nnMain() 258 pPane->BindAnimation(pAnimTrans[ANIMTYPE_SELECT]); in nnMain()
|