Home
last modified time | relevance | path

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

/dports/games/freeorion/freeorion-0.4.10.2/UI/
H A DTechTreeWnd.cpp1999 TechTreeWnd::TechTreeWnd(GG::X w, GG::Y h, bool initially_hidden /*= true*/) : in TechTreeWnd() function in TechTreeWnd
2097 TechTreeWnd::~TechTreeWnd() in ~TechTreeWnd()
2111 double TechTreeWnd::Scale() const in Scale()
2114 void TechTreeWnd::Update() { in Update()
2119 void TechTreeWnd::Clear() { in Clear()
2124 void TechTreeWnd::Reset() { in Reset()
2142 void TechTreeWnd::Show() { in Show()
2269 void TechTreeWnd::ShowPedia() { in ShowPedia()
2277 void TechTreeWnd::HidePedia() { in HidePedia()
2284 void TechTreeWnd::TogglePedia() { in TogglePedia()
[all …]
H A DTechTreeWnd.h18 class TechTreeWnd : public GG::Wnd {
31 TechTreeWnd(GG::X w, GG::Y h, bool initially_hidden = true);
32 ~TechTreeWnd();
H A DResearchWnd.h8 class TechTreeWnd; variable
66 std::shared_ptr<TechTreeWnd> m_tech_tree_wnd;
H A DResearchWnd.cpp421 …m_tech_tree_wnd = GG::Wnd::Create<TechTreeWnd>(tech_tree_wnd_size.x, tech_tree_wnd_size.y, initial… in ResearchWnd()