Lines Matching refs:childrect

55     RECT childrect;  in OnCreate()  local
60 childrect = clientrect; in OnCreate()
62 childrect.bottom = childrect.top + m_header_height - 1; in OnCreate()
64 mp_project_header->Create(NULL, NULL, WS_CHILD|WS_VISIBLE, childrect, this, 0, NULL); in OnCreate()
66 childrect.top = childrect.bottom; in OnCreate()
67 childrect.bottom -= (clientrect.bottom - clientrect.top) / 2; in OnCreate()
69 mp_project_view->Create(NULL, NULL, WS_CHILD, childrect, this, PROJECT_VIEW_ID, NULL); in OnCreate()
76 RECT childrect; in PositionChildren() local
81 GetClientRect(&childrect); in PositionChildren()
82 bottom = childrect.bottom; in PositionChildren()
83 childrect.bottom = childrect.top + m_header_height - 1; in PositionChildren()
84 mp_project_header->MoveWindow(&childrect); in PositionChildren()
86 childrect.top = childrect.bottom; in PositionChildren()
87 childrect.bottom = bottom; in PositionChildren()
88 mp_project_view->MoveWindow(&childrect); in PositionChildren()
150 RECT childrect; in OnCreate() local
155 childrect = clientrect; in OnCreate()
157 childrect.top = childrect.top; in OnCreate()
158 childrect.bottom = childrect.top + m_header_height - 1; in OnCreate()
160 mp_props_header->Create(NULL, NULL, WS_CHILD | WS_VISIBLE, childrect, this, 0, NULL); in OnCreate()
162 childrect.top = childrect.bottom + 1; in OnCreate()
163 childrect.bottom = clientrect.bottom; in OnCreate()
172 RECT childrect; in PositionChildren() local
177 GetClientRect(&childrect); in PositionChildren()
178 bottom = childrect.bottom; in PositionChildren()
180 childrect.bottom = childrect.top + m_header_height - 1; in PositionChildren()
181 mp_props_header->MoveWindow(&childrect); in PositionChildren()
183 childrect.top = childrect.bottom; in PositionChildren()
184 childrect.bottom = bottom; in PositionChildren()
185 mp_properties_win->MoveWindow(&childrect); in PositionChildren()