| /NW4C-1.2.23/demos/lyt/animShare/sources/ |
| D | main.cpp | 218 nw::lyt::Pane* pPane, in FindLayoutAnimationLink() argument 223 if (nw::lyt::AnimationLink *const pAnimLink = pPane->FindAnimationLinkSelf(animRes)) in FindLayoutAnimationLink() 229 const u8 materialNum = pPane->GetMaterialNum(); in FindLayoutAnimationLink() 232 … if (nw::lyt::AnimationLink *const pAnimLink = pPane->GetMaterial(i)->FindAnimationLink(animRes)) in FindLayoutAnimationLink() 239 …for (nw::lyt::PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildL… in FindLayoutAnimationLink() 263 nw::lyt::Pane* pPane, in SetAnimationFrame() argument 269 if (nw::lyt::AnimationLink *const pAnimLink = pPane->FindAnimationLinkSelf(animRes)) in SetAnimationFrame() 275 const u8 materialNum = pPane->GetMaterialNum(); in SetAnimationFrame() 278 … if (nw::lyt::AnimationLink *const pAnimLink = pPane->GetMaterial(i)->FindAnimationLink(animRes)) in SetAnimationFrame() 285 …for (nw::lyt::PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildL… in SetAnimationFrame() [all …]
|
| /NW4C-1.2.23/sources/libraries/lyt/ |
| D | lyt_Util.cpp | 100 Pane* pPane, in IsContain() argument 105 math::MTX34Inverse(&invGlbMtx, &pPane->GetGlobalMtx()); // ペインのグローバル行列の逆行列を求める in IsContain() 111 return Contains(pPane->GetPaneRect(), math::VEC2(lclPos.x, lclPos.y)); in IsContain() 116 Pane* pPane, in FindHitPane() argument 121 if (! pPane->IsVisible()) in FindHitPane() 127 …for (PaneList::ReverseIterator it = pPane->GetChildList().GetBeginReverseIter(); it != pPane->GetC… in FindHitPane() 136 if (nw::lyt::Bounding *const pBounding = nw::ut::DynamicCast<nw::lyt::Bounding*>(pPane)) in FindHitPane() 160 GetNextPane(Pane* pPane) in GetNextPane() argument 162 if (! pPane->GetChildList().IsEmpty()) // 子供がいれば、最初の子供を返す。 in GetNextPane() 164 PaneList::Iterator paneIt = pPane->GetChildList().GetBeginIter(); in GetNextPane() [all …]
|
| D | lyt_Drawer.cpp | 46 Drawer::Draw( const Pane* pPane, DrawInfo& drawInfo ) in Draw() argument 48 if ( pPane == NULL ) in Draw() 53 if ( pPane->IsVisible() ) in Draw() 55 pPane->MakeUniformData( &drawInfo, this ); in Draw()
|
| D | lyt_Animation.cpp | 190 Pane* pPane, in AnimatePaneSRT() argument 204 … pPane->SetSRTElement(pAnimTarget->target, GetHermiteCurveValue(frame, keys, pAnimTarget->keyNum)); in AnimatePaneSRT() 210 Pane* pPane, in AnimateVisibility() argument 224 pPane->SetVisible(0 != GetStepCurveValue(frame, keys, pAnimTarget->keyNum)); in AnimateVisibility() 230 Pane* pPane, in AnimateVertexColor() argument 247 pPane->SetColorElement(pAnimTarget->target, u8Val); in AnimateVertexColor() 327 Pane* pPane, in IsBindAnimation() argument 333 NW_UNUSED_VARIABLE(pPane) in IsBindAnimation() 338 if (pPane->FindAnimationLinkSelf(pAnimTrans)) in IsBindAnimation() 462 Pane* pPane, in Bind() argument [all …]
|
| D | lyt_Layout.cpp | 53 Pane* pPane, in SetTagProcessorImpl() argument 58 if (TextBox* pTextBox = ut::DynamicCast<TextBox*>(pPane)) in SetTagProcessorImpl() 64 …for (PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildList().Get… in SetTagProcessorImpl() 238 Pane* pPane = BuildPaneObj(kind, dataPtr, resBlockSet); in Build() local 239 if (pPane) in Build() 244 this->SetRootPane(pPane); in Build() 250 pParentPane->AppendChild(pPane); in Build() 253 pLastPane = pPane; in Build()
|
| D | lyt_Group.cpp | 73 Group::AppendPane(Pane* pPane) in AppendPane() argument 77 pPaneLink->target = pPane; in AppendPane()
|
| D | lyt_Pane.cpp | 521 if (Pane* pPane = it->FindPaneByName(findName, bRecursive)) in FindPaneByName() local 523 return pPane; in FindPaneByName()
|
| /NW4C-1.2.23/include/nw/lyt/ |
| D | lyt_Util.h | 140 Pane* pPane, 161 Pane* pPane, 209 Pane* GetNextPane(Pane* pPane);
|
| D | lyt_Animation.h | 174 virtual void Animate(u32 idx, Pane* pPane) = 0; 274 Pane* pPane, 369 Pane* pPane); 391 Pane* pPane, 587 u16 CalcAnimationNum(Pane* pPane, bool bRecursive) const;
|
| D | lyt_Group.h | 139 void AppendPane(Pane* pPane);
|
| D | lyt_Layout.h | 846 void SetRootPane(Pane* pPane) in SetRootPane() argument 848 m_pRootPane = pPane; in SetRootPane()
|
| D | lyt_Drawer.h | 292 void Draw( const Pane* pPane, DrawInfo& drawInfo );
|
| /NW4C-1.2.23/demos/lyt/extUserData/sources/ |
| D | main.cpp | 154 PrintExtUserData(nw::lyt::Pane* pPane) in PrintExtUserData() argument 157 const nw::lyt::ExtUserData *const extUserDataAry = pPane->GetExtUserDataArray(); in PrintExtUserData() 162 for (u16 udIdx = 0; udIdx < pPane->GetExtUserDataNum(); ++udIdx) in PrintExtUserData() 201 const nw::lyt::ExtUserData *const pExtUserDataIntList = pPane->FindExtUserDataByName("int1"); in PrintExtUserData()
|
| /NW4C-1.2.23/demos/lyt/tagGroupBind/sources/ |
| D | main.cpp | 251 FindBoundingPane(nw::lyt::Pane* pPane) in FindBoundingPane() argument 255 if ((pBounding = nw::ut::DynamicCast<nw::lyt::Bounding*>(pPane)) != NULL) in FindBoundingPane() 262 …for (nw::lyt::PaneList::Iterator it = pPane->GetChildList().GetBeginIter(); it != pPane->GetChildL… in FindBoundingPane()
|
| /NW4C-1.2.23/demos/lyt/bounding/sources/ |
| D | main.cpp | 253 if (nw::lyt::Pane* pPane = pLayout->GetRootPane()->FindPaneByName(paneNames[i])) in nnMain() local 255 pPane->BindAnimation(pAnimTrans[ANIMTYPE_UNSELECT]); in nnMain() 256 pPane->BindAnimation(pAnimTrans[ANIMTYPE_SELECT]); in nnMain()
|