Home
last modified time | relevance | path

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

12

/NW4C-2.0.3/include/nw/lyt/
Dlyt_Pane.h55 class Pane; variable
64 typedef ut::LinkList<Pane, offsetof(internal::PaneBase, m_Link)> PaneList;
75 class Pane : public internal::PaneBase
92 Pane();
103 Pane(const res::Pane* pBlock);
109 virtual ~Pane();
888 __forceinline Pane* GetParent() const in GetParent()
902 __forceinline Pane* GetFirstChild() const in GetFirstChild()
907 return const_cast<Pane*>(&list.front()); in GetFirstChild()
929 __forceinline Pane* GetNextChild(const Pane* pChild) const in GetNextChild()
[all …]
Dlyt_Util.h36 class Pane; variable
142 Pane* pPane,
162 Pane* FindHitPane(
163 Pane* pPane,
190 Pane* FindHitPane(
211 Pane* GetNextPane(Pane* pPane);
Dlyt_Animation.h46 class Pane; variable
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;
682 Pane* pTargetPane,
686 Pane* pTargetPane,
691 Pane* pTargetPane,
Dlyt_Group.h46 Pane* target;
93 Group(const res::Group* pResGroup, Pane* pRootPane);
141 void AppendPane(Pane* pPane);
Dlyt_Bounding.h41 class Bounding : public Pane
43 typedef Pane Base;
Dlyt_Layout.h60 class Pane; variable
543 Pane* GetRootPane() const in GetRootPane()
832 virtual Pane* BuildPaneObj(
848 void SetRootPane(Pane* pPane) in SetRootPane()
891 Pane* m_pRootPane;
Dlyt_Picture.h42 class Picture : public Pane
44 typedef Pane Base;
Dlyt_Resources.h896 struct Pane struct
941 struct Picture : public Pane argument
975 struct TextBox : public Pane
1082 struct Window : public Pane
1120 struct Bounding : public Pane
Dlyt_Drawer.h92 class Pane; variable
294 void Draw( const Pane* pPane, DrawInfo& drawInfo );
Dlyt_Window.h42 class Window : public Pane
44 typedef Pane Base;
Dlyt_TextBox.h56 class TextBox : public Pane
58 typedef Pane Base;
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_Pane.cpp289 NW_UT_RUNTIME_TYPEINFO_ROOT_DEFINITION(Pane); // 実行時型情報の実体を定義
291 Pane::Pane() in Pane() function in nw::lyt::Pane
317 Pane::Pane(const res::Pane* pBlock) in Pane() function in nw::lyt::Pane
338 Pane::Init() in Init()
350 Pane::~Pane() in ~Pane()
369 Pane::SetName(const char* name) in SetName()
375 Pane::SetUserData(const char* userData) in SetUserData()
381 Pane::AppendChild(Pane* pChild) in AppendChild()
387 Pane::PrependChild(Pane* pChild) in PrependChild()
393 Pane::InsertChild( in InsertChild()
[all …]
Dlyt_Layout.cpp55 Pane* pPane, in SetTagProcessorImpl()
78 Pane* pTargetPane in IsIncludeAnimationGroupRef()
96 …for (Pane* pParentPane = pTargetPane->GetParent(); pParentPane; pParentPane = pParentPane->GetPare… in IsIncludeAnimationGroupRef()
202 Pane* pParentPane = 0; in Build()
203 Pane* pLastPane = 0; in Build()
240 Pane* pPane = BuildPaneObj(kind, dataPtr, resBlockSet); in Build()
463Pane *const pSrcPane = this->GetRootPane()->FindPaneByName(animShareInfoAry[i].GetSrcPaneName()); in BindAnimationAuto()
600 Pane*
611 const res::Pane* pResPane = static_cast<const res::Pane*>(dataPtr); in BuildPaneObj()
612 return NewObj<Pane>(pResPane); in BuildPaneObj()
Dlyt_Group.cpp38 Pane* pRootPane in Group()
49 … if (Pane* pFindPane = pRootPane->FindPaneByName(paneNameBase + i * ResourceNameStrMax, true)) in Group()
75 Group::AppendPane(Pane* pPane) in AppendPane()
Dlyt_Util.cpp103 Pane* pPane, in IsContain()
117 Pane*
119 Pane* pPane, in FindHitPane()
132 if (Pane *const ret = FindHitPane(&(*it), pos)) in FindHitPane()
150 Pane*
162 Pane*
163 GetNextPane(Pane* pPane) in GetNextPane()
Dlyt_Animation.cpp192 Pane* pPane, in AnimatePaneSRT()
212 Pane* pPane, in AnimateVisibility()
232 Pane* pPane, in AnimateVertexColor()
329 Pane* pPane, in IsBindAnimation()
464 Pane* pPane, in Bind()
480 if (Pane *const pFindPane = pPane->FindPaneByName(animCont.name, bRecursive)) in Bind()
542 AnimTransformBasic::Animate(u32 idx, Pane* pPane) in Animate()
787 Pane* pPane, in CalcAnimationNum()
804 if (Pane *const pFindPane = pPane->FindPaneByName(animCont.name, bRecursive)) in CalcAnimationNum()
877 Pane* pTargetPane, in AnimPaneTree()
[all …]
Dlyt_Drawer.cpp48 Drawer::Draw( const Pane* pPane, DrawInfo& drawInfo ) in Draw()
/NW4C-2.0.3/demos/Nw4cDemo/include/
DSmLayout.h101 nw::lyt::Pane* rootPane = m_Layout->GetRootPane(); in GetOriginalRect()
103 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetOriginalRect()
112 nw::lyt::Pane* GetPane( const char* name ) const in GetPane()
114 nw::lyt::Pane* rootPane = m_Layout->GetRootPane(); in GetPane()
116 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetPane()
152 void SetPanePosition( nw::lyt::Pane* pane, f32 x, f32 y ) in SetPanePosition()
190 nw::lyt::Pane* pane = m_LayoutResource->GetPane( paneName ); in SetVisiblePane()
218 nw::lyt::Pane* m_OffsetPane;
DSmLytSliderBar.h59 nw::lyt::Pane* m_HandlePane;
/NW4C-2.0.3/demos/lyt/animShare/sources/
Dmain.cpp196 nw::lyt::Pane* pCrossBar = layout.GetRootPane()->FindPaneByName("CrossBar", true); in ApplyCursorPosition()
220 nw::lyt::Pane* pPane, in FindLayoutAnimationLink()
265 nw::lyt::Pane* pPane, in SetAnimationFrame()
305 nw::lyt::Pane* pPane, in UpdateAnimationFrame()
369 nw::lyt::Pane *const pPane = it->target; in UpdatePane()
/NW4C-2.0.3/demos/Nw4cDemo/sources/
DSmLayout.cpp33 const nw::lyt::Pane* pane = GetPane( name ); in GetRect()
184 nw::lyt::Pane* pane = layout->GetRootPane(); in SetupLayout()
DSmLytButton.cpp55 const nw::lyt::Pane* pane = layoutRes->GetPane("TextBox_00"); in SmLytButton()
/NW4C-2.0.3/demos/lyt/bounding/sources/
Dmain.cpp186 nw::lyt::Pane* pCrossBar = pLayout->GetRootPane()->FindPaneByName("CrossBar", true); in ApplyCursorPosition()
255 if (nw::lyt::Pane* pPane = pLayout->GetRootPane()->FindPaneByName(paneNames[i])) in nnMain()
299 nw::lyt::Pane* pHitPane = 0; in nnMain()
/NW4C-2.0.3/demos/lyt/extUserData/sources/
Dmain.cpp156 PrintExtUserData(nw::lyt::Pane* pPane) in PrintExtUserData()
246 nw::lyt::Pane *const pExtUserDataPane = pLayout->GetRootPane()->FindPaneByName("TextBox"); in nnMain()
/NW4C-2.0.3/demos/lyt/locationAdjust/sources/
Dmain.cpp237 … nw::lyt::Pane *const pTextBoxEnabled = pLayout->GetRootPane()->FindPaneByName("TextBoxEnabled"); in nnMain()
239 … nw::lyt::Pane *const pTextBoxDisabled = pLayout->GetRootPane()->FindPaneByName("TextBoxDisabled"); in nnMain()

12