Lines Matching refs:Rect
113 type summary add -s "${var.origin%S} ${var.size%S}" curses::Rect
165 struct Rect { struct
169 Rect() : origin(), size() {} in Rect() function
171 Rect(const Point &p, const Size &s) : origin(p), size(s) {} in Rect() function
195 Rect MakeStatusBar() { in MakeStatusBar() argument
196 Rect status_bar; in MakeStatusBar()
209 Rect MakeMenuBar() { in MakeMenuBar() argument
210 Rect menubar; in MakeMenuBar()
222 void HorizontalSplitPercentage(float top_percentage, Rect &top, in HorizontalSplitPercentage() argument
223 Rect &bottom) const { in HorizontalSplitPercentage()
228 void HorizontalSplit(int top_height, Rect &top, Rect &bottom) const { in HorizontalSplit() argument
241 void VerticalSplitPercentage(float left_percentage, Rect &left, in VerticalSplitPercentage() argument
242 Rect &right) const { in VerticalSplitPercentage()
247 void VerticalSplit(int left_width, Rect &left, Rect &right) const { in VerticalSplit() argument
261 bool operator==(const Rect &lhs, const Rect &rhs) { in operator ==()
265 bool operator!=(const Rect &lhs, const Rect &rhs) { in operator !=()
362 Surface SubSurface(Rect bounds) { in SubSurface()
397 Rect GetFrame() const { return Rect(Point(), GetSize()); } in GetFrame()
454 void Box(const Rect &bounds, chtype v_char = ACS_VLINE, in Box()
474 void TitledBox(const Rect &bounds, const char *title, in TitledBox()
590 Window(const char *name, const Rect &bounds) in Window()
625 Rect GetBounds() const { return Rect(GetParentOrigin(), GetSize()); } in GetBounds()
627 Rect GetCenteredRect(int width, int height) { in GetCenteredRect()
633 return Rect(Point(x, y), Size(width, height)); in GetCenteredRect()
658 void SetBounds(const Rect &bounds) { in SetBounds()
678 WindowSP CreateSubWindow(const char *name, const Rect &bounds, in CreateSubWindow()
807 Rect bounds = GetBounds(); in CreateHelpSubwindow()
1134 Rect content_bounds = surface.GetFrame(); in DrawField()
1153 Rect frame = surface.GetFrame(); in FieldDelegateDraw()
1154 Rect field_bounds, error_bounds; in FieldDelegateDraw()
1565 Rect content_bounds = surface.GetFrame(); in FieldDelegateDraw()
1786 Rect bounds = Rect(Point(0, line), Size(width, height)); in DrawFields()
1787 Rect field_bounds, remove_button_bounds; in DrawFields()
1822 Rect content_bounds = surface.GetFrame(); in FieldDelegateDraw()
1824 Rect fields_bounds, new_button_bounds; in FieldDelegateDraw()
2075 Rect bounds = surface.GetFrame(); in FieldDelegateDraw()
2076 Rect key_field_bounds, arrow_and_value_field_bounds; in FieldDelegateDraw()
2079 Rect arrow_bounds, value_field_bounds; in FieldDelegateDraw()
2594 Rect bounds = Rect(Point(0, line), Size(width, height)); in DrawFields()
2609 Rect bounds = Rect(Point(x, 0), Size(width, 1)); in DrawActions()
2617 Rect frame = surface.GetFrame(); in DrawElements()
2618 Rect fields_bounds, actions_bounds; in DrawElements()
2638 Rect frame = pad.GetFrame(); in DrawContent()
2639 Rect error_bounds, elements_bounds; in DrawContent()
2671 Rect content_bounds = window.GetFrame(); in WindowDelegateDraw()
2976 Rect bounds = m_main_window_sp->GetCenteredRect(85, 8); in StopRunningProcess()
3555 Rect bounds = m_main_window_sp->GetCenteredRect(85, 8); in StopRunningProcess()
3735 Rect content_bounds = surface.GetFrame(); in DrawContent()
3736 Rect text_field_bounds, matchs_bounds; in DrawContent()
3751 Rect content_bounds = window.GetFrame(); in WindowDelegateDraw()
4188 Rect menu_bounds; in WindowDelegateHandleChar()
4422 Rect content_bounds = m_window_sp->GetFrame(); in TerminalSizeChanged()
4434 Rect threads_bounds; in TerminalSizeChanged()
4435 Rect source_variables_bounds; in TerminalSizeChanged()
4443 Rect source_bounds; in TerminalSizeChanged()
4444 Rect variables_registers_bounds; in TerminalSizeChanged()
4449 Rect variables_bounds; in TerminalSizeChanged()
4450 Rect registers_bounds; in TerminalSizeChanged()
6384 Rect bounds = main_window_sp->GetCenteredRect(80, 19); in MenuDelegateAction()
6435 Rect bounds = main_window_sp->GetCenteredRect(80, 22); in MenuDelegateAction()
6447 Rect bounds = main_window_sp->GetCenteredRect(80, 22); in MenuDelegateAction()
6556 const Rect source_bounds = source_window_sp->GetBounds(); in MenuDelegateAction()
6559 const Rect variables_bounds = variables_window_sp->GetBounds(); in MenuDelegateAction()
6566 Rect registers_bounds = variables_bounds; in MenuDelegateAction()
6577 Rect new_variables_rect; in MenuDelegateAction()
6582 const Rect variables_bounds = registers_window_sp->GetBounds(); in MenuDelegateAction()
6583 Rect new_registers_rect; in MenuDelegateAction()
6589 Rect new_source_rect; in MenuDelegateAction()
6608 const Rect source_bounds = source_window_sp->GetBounds(); in MenuDelegateAction()
6612 const Rect variables_bounds = variables_window_sp->GetBounds(); in MenuDelegateAction()
6628 Rect new_regs_rect; in MenuDelegateAction()
6633 const Rect variables_bounds = variables_window_sp->GetBounds(); in MenuDelegateAction()
6634 Rect new_vars_rect; in MenuDelegateAction()
6640 Rect new_source_rect; in MenuDelegateAction()
6659 const Rect threads_bounds = threads_window_sp->GetBounds(); in MenuDelegateAction()
6672 Rect new_threads_bounds, breakpoints_bounds; in MenuDelegateAction()
7637 Rect content_bounds = main_window_sp->GetFrame(); in Activate()
7638 Rect menubar_bounds = content_bounds.MakeMenuBar(); in Activate()
7639 Rect status_bounds = content_bounds.MakeStatusBar(); in Activate()
7640 Rect source_bounds; in Activate()
7641 Rect variables_bounds; in Activate()
7642 Rect threads_bounds; in Activate()
7643 Rect source_variables_bounds; in Activate()