Home
last modified time | relevance | path

Searched refs:client_sz (Results 1 – 2 of 2) sorted by relevance

/dports/games/freeorion/freeorion-0.4.10.2/GG/src/
H A DWnd.cpp690 Pt client_sz = ClientSize(); in HorizontalLayout() local
693 if (wnd_ul.x < 0 || wnd_ul.y < 0 || client_sz.x < wnd_lr.x || client_sz.y < wnd_lr.y) in HorizontalLayout()
715 Pt client_sz = ClientSize(); in VerticalLayout() local
718 if (wnd_ul.x < 0 || wnd_ul.y < 0 || client_sz.x < wnd_lr.x || client_sz.y < wnd_lr.y) in VerticalLayout()
739 Pt client_sz = ClientSize(); in GridLayout() local
747 if (wnd_ul.x < 0 || wnd_ul.y < 0 || client_sz.x < wnd_lr.x || client_sz.y < wnd_lr.y) in GridLayout()
782 for (X x = lr.x + 1; x < client_sz.x; ++x) { in GridLayout()
812 for (Y y = lr.y + 1; y < client_sz.y; ++y) { in GridLayout()
864 Pt client_sz = ClientSize(); in SetLayout() local
867 if (wnd_ul.x < 0 || wnd_ul.y < 0 || client_sz.x < wnd_lr.x || client_sz.y < wnd_lr.y) in SetLayout()
/dports/games/freeorion/freeorion-0.4.10.2/UI/
H A DTechTreeWnd.cpp1402 GG::Pt client_sz = ClientSize(); in Layout() local
1403 GG::Pt layout_size(client_sz.x + m_graph.GetWidth(), client_sz.y + m_graph.GetHeight()); in Layout()
1406 …t_size.y - 1), std::max(50, Value(std::min(layout_size.y / 10, client_sz.y))), Value(client_sz.y)); in Layout()
1407 …t_size.x - 1), std::max(50, Value(std::min(layout_size.x / 10, client_sz.x))), Value(client_sz.x)); in Layout()