Home
last modified time | relevance | path

Searched refs:Pane (Results 1 – 25 of 29) sorted by relevance

12

/NW4C-1.3.3/include/nw/lyt/
Dlyt_Pane.h53 class Pane; variable
62 typedef ut::LinkList<Pane, offsetof(internal::PaneBase, m_Link)> PaneList;
73 class Pane : public internal::PaneBase
90 Pane();
101 Pane(const res::Pane* pBlock);
107 virtual ~Pane();
886 __forceinline Pane* GetParent() const in GetParent()
900 __forceinline Pane* GetFirstChild() const in GetFirstChild()
905 return const_cast<Pane*>(&list.front()); in GetFirstChild()
927 __forceinline Pane* GetNextChild(const Pane* pChild) const in GetNextChild()
[all …]
Dlyt_Util.h34 class Pane; variable
140 Pane* pPane,
160 Pane* FindHitPane(
161 Pane* pPane,
188 Pane* FindHitPane(
209 Pane* GetNextPane(Pane* pPane);
Dlyt_Animation.h44 class Pane; variable
174 virtual void Animate(u32 idx, Pane* pPane) = 0;
274 Pane* pPane,
371 Pane* pPane);
393 Pane* pPane,
608 u16 CalcAnimationNum(Pane* pPane, bool bRecursive) const;
680 Pane* pTargetPane,
684 Pane* pTargetPane,
689 Pane* pTargetPane,
Dlyt_Group.h44 Pane* target;
91 Group(const res::Group* pResGroup, Pane* pRootPane);
139 void AppendPane(Pane* pPane);
Dlyt_Bounding.h39 class Bounding : public Pane
41 typedef Pane Base;
Dlyt_Layout.h58 class Pane; variable
541 Pane* GetRootPane() const in GetRootPane()
830 virtual Pane* BuildPaneObj(
846 void SetRootPane(Pane* pPane) in SetRootPane()
889 Pane* m_pRootPane;
Dlyt_Picture.h40 class Picture : public Pane
42 typedef Pane Base;
Dlyt_Resources.h894 struct Pane struct
939 struct Picture : public Pane argument
973 struct TextBox : public Pane
1080 struct Window : public Pane
1118 struct Bounding : public Pane
Dlyt_Drawer.h90 class Pane; variable
292 void Draw( const Pane* pPane, DrawInfo& drawInfo );
Dlyt_Window.h40 class Window : public Pane
42 typedef Pane Base;
Dlyt_TextBox.h54 class TextBox : public Pane
56 typedef Pane Base;
/NW4C-1.3.3/sources/libraries/lyt/
Dlyt_Pane.cpp287 NW_UT_RUNTIME_TYPEINFO_ROOT_DEFINITION(Pane); // 実行時型情報の実体を定義
289 Pane::Pane() in Pane() function in nw::lyt::Pane
315 Pane::Pane(const res::Pane* pBlock) in Pane() function in nw::lyt::Pane
336 Pane::Init() in Init()
348 Pane::~Pane() in ~Pane()
367 Pane::SetName(const char* name) in SetName()
373 Pane::SetUserData(const char* userData) in SetUserData()
379 Pane::AppendChild(Pane* pChild) in AppendChild()
385 Pane::PrependChild(Pane* pChild) in PrependChild()
391 Pane::InsertChild( in InsertChild()
[all …]
Dlyt_Layout.cpp53 Pane* pPane, in SetTagProcessorImpl()
76 Pane* pTargetPane in IsIncludeAnimationGroupRef()
94 …for (Pane* pParentPane = pTargetPane->GetParent(); pParentPane; pParentPane = pParentPane->GetPare… in IsIncludeAnimationGroupRef()
200 Pane* pParentPane = 0; in Build()
201 Pane* pLastPane = 0; in Build()
238 Pane* pPane = BuildPaneObj(kind, dataPtr, resBlockSet); in Build()
461Pane *const pSrcPane = this->GetRootPane()->FindPaneByName(animShareInfoAry[i].GetSrcPaneName()); in BindAnimationAuto()
598 Pane*
609 const res::Pane* pResPane = static_cast<const res::Pane*>(dataPtr); in BuildPaneObj()
610 return NewObj<Pane>(pResPane); in BuildPaneObj()
Dlyt_Group.cpp36 Pane* pRootPane in Group()
47 … if (Pane* pFindPane = pRootPane->FindPaneByName(paneNameBase + i * ResourceNameStrMax, true)) in Group()
73 Group::AppendPane(Pane* pPane) in AppendPane()
Dlyt_Util.cpp100 Pane* pPane, in IsContain()
114 Pane*
116 Pane* pPane, in FindHitPane()
129 if (Pane *const ret = FindHitPane(&(*it), pos)) in FindHitPane()
147 Pane*
159 Pane*
160 GetNextPane(Pane* pPane) in GetNextPane()
Dlyt_Animation.cpp190 Pane* pPane, in AnimatePaneSRT()
210 Pane* pPane, in AnimateVisibility()
230 Pane* pPane, in AnimateVertexColor()
327 Pane* pPane, in IsBindAnimation()
462 Pane* pPane, in Bind()
478 if (Pane *const pFindPane = pPane->FindPaneByName(animCont.name, bRecursive)) in Bind()
540 AnimTransformBasic::Animate(u32 idx, Pane* pPane) in Animate()
785 Pane* pPane, in CalcAnimationNum()
802 if (Pane *const pFindPane = pPane->FindPaneByName(animCont.name, bRecursive)) in CalcAnimationNum()
875 Pane* pTargetPane, in AnimPaneTree()
[all …]
Dlyt_Drawer.cpp46 Drawer::Draw( const Pane* pPane, DrawInfo& drawInfo ) in Draw()
/NW4C-1.3.3/demos/Nw4cDemo/include/
DSmLayout.h99 nw::lyt::Pane* rootPane = m_Layout->GetRootPane(); in GetOriginalRect()
101 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetOriginalRect()
110 nw::lyt::Pane* GetPane( const char* name ) const in GetPane()
112 nw::lyt::Pane* rootPane = m_Layout->GetRootPane(); in GetPane()
114 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetPane()
150 void SetPanePosition( nw::lyt::Pane* pane, f32 x, f32 y ) in SetPanePosition()
188 nw::lyt::Pane* pane = m_LayoutResource->GetPane( paneName ); in SetVisiblePane()
216 nw::lyt::Pane* m_OffsetPane;
DSmLytSliderBar.h57 nw::lyt::Pane* m_HandlePane;
/NW4C-1.3.3/demos/lyt/animShare/sources/
Dmain.cpp194 nw::lyt::Pane* pCrossBar = layout.GetRootPane()->FindPaneByName("CrossBar", true); in ApplyCursorPosition()
218 nw::lyt::Pane* pPane, in FindLayoutAnimationLink()
263 nw::lyt::Pane* pPane, in SetAnimationFrame()
303 nw::lyt::Pane* pPane, in UpdateAnimationFrame()
367 nw::lyt::Pane *const pPane = it->target; in UpdatePane()
/NW4C-1.3.3/demos/Nw4cDemo/sources/
DSmLayout.cpp31 const nw::lyt::Pane* pane = GetPane( name ); in GetRect()
182 nw::lyt::Pane* pane = layout->GetRootPane(); in SetupLayout()
DSmLytButton.cpp53 const nw::lyt::Pane* pane = layoutRes->GetPane("TextBox_00"); in SmLytButton()
/NW4C-1.3.3/demos/lyt/bounding/sources/
Dmain.cpp184 nw::lyt::Pane* pCrossBar = pLayout->GetRootPane()->FindPaneByName("CrossBar", true); in ApplyCursorPosition()
253 if (nw::lyt::Pane* pPane = pLayout->GetRootPane()->FindPaneByName(paneNames[i])) in nnMain()
297 nw::lyt::Pane* pHitPane = 0; in nnMain()
/NW4C-1.3.3/demos/lyt/locationAdjust/sources/
Dmain.cpp235 … nw::lyt::Pane *const pTextBoxEnabled = pLayout->GetRootPane()->FindPaneByName("TextBoxEnabled"); in nnMain()
237 … nw::lyt::Pane *const pTextBoxDisabled = pLayout->GetRootPane()->FindPaneByName("TextBoxDisabled"); in nnMain()
/NW4C-1.3.3/demos/lyt/extUserData/sources/
Dmain.cpp154 PrintExtUserData(nw::lyt::Pane* pPane) in PrintExtUserData()
244 nw::lyt::Pane *const pExtUserDataPane = pLayout->GetRootPane()->FindPaneByName("TextBox"); in nnMain()

12