Home
last modified time | relevance | path

Searched refs:buttonContainer_ (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/urho3d/Urho3D-1.7.1/Source/Samples/16_Chat/
H A DChat.cpp98 buttonContainer_ = root->CreateChild<UIElement>(); in CreateUI()
99 buttonContainer_->SetFixedSize(graphics->GetWidth(), 20); in CreateUI()
100 buttonContainer_->SetPosition(0, graphics->GetHeight() - 20); in CreateUI()
101 buttonContainer_->SetLayoutMode(LM_HORIZONTAL); in CreateUI()
103 textEdit_ = buttonContainer_->CreateChild<LineEdit>(); in CreateUI()
146 Button* button = buttonContainer_->CreateChild<Button>(); in CreateButton()
H A DChat.h95 SharedPtr<UIElement> buttonContainer_; variable
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Samples/17_SceneReplication/
H A DSceneReplication.cpp189 buttonContainer_ = root->CreateChild<UIElement>(); in CreateUI()
190 buttonContainer_->SetFixedSize(500, 20); in CreateUI()
191 buttonContainer_->SetPosition(20, 20); in CreateUI()
192 buttonContainer_->SetLayoutMode(LM_HORIZONTAL); in CreateUI()
194 textEdit_ = buttonContainer_->CreateChild<LineEdit>(); in CreateUI()
245 Button* button = buttonContainer_->CreateChild<Button>(); in CreateButton()
H A DSceneReplication.h104 SharedPtr<UIElement> buttonContainer_; variable