Home
last modified time | relevance | path

Searched refs:childsize (Results 1 – 10 of 10) sorted by relevance

/GUIX-v6.2.1/guix_studio/
Dstring_table_edit_dlg.cpp430 CRect childsize; in PositionChildren() local
443 childsize = size; in PositionChildren()
446 childsize.top += (m_title_bar_height + 4); in PositionChildren()
447 childsize.bottom = childsize.top + m_button_bar_height; in PositionChildren()
448 childsize.left += 4; in PositionChildren()
449 childsize.right -= 4; in PositionChildren()
450 mpButtonFrame->MoveWindow(childsize); in PositionChildren()
452 childsize.right = size.right - m_string_info_column_width - 4; in PositionChildren()
453 childsize.top = childsize.bottom + 1; in PositionChildren()
454 childsize.bottom = childsize.top + m_table_header_height; in PositionChildren()
[all …]
Dtrigger_list_edit_dlg.cpp594 CRect childsize = client; in PositionChildren() local
601 childsize.top -= (m_scroll_helper->GetScrollPos()).cy; in PositionChildren()
602 childsize.bottom = childsize.top + rowheight; in PositionChildren()
606 row->MoveWindow(&childsize); in PositionChildren()
607 childsize.top += rowheight; in PositionChildren()
608 childsize.bottom += rowheight; in PositionChildren()
Dfont_path_dialog.cpp281 CRect childsize; in CreateExtendedRangeEntry() local
282 GetClientRect(&childsize); in CreateExtendedRangeEntry()
284 childsize.top -= (m_scroll_helper->GetScrollPos()).cy; in CreateExtendedRangeEntry()
285 childsize.top += NUM_FONT_CHAR_RANGES * m_range_row_height; in CreateExtendedRangeEntry()
286 childsize.bottom = childsize.top + m_range_row_height - 1; in CreateExtendedRangeEntry()
298 childsize, this, 0, NULL); in CreateExtendedRangeEntry()
301 childsize.top += m_range_row_height; in CreateExtendedRangeEntry()
302 childsize.bottom += m_range_row_height; in CreateExtendedRangeEntry()
Dresource_item.cpp1650 CRect childsize;
1654 childsize.SetRect(m_size.left + COLOR_BOX_SPACE,
1663 child->SetPos(childsize);
1665 if (childsize.right + step > m_size.right)
1668 childsize.SetRect(m_size.left + COLOR_BOX_SPACE,
1675 childsize.OffsetRect(step, 0);
1682 if (childsize.right + step > m_size.right)
1691 m_add_icon_x = childsize.left;
Dresource_view.cpp1382 CRect childsize; in OnTreeSizeChange() local
1383 GetClientRect(&childsize); in OnTreeSizeChange()
1384 childsize.bottom = childsize.top + mpTree->GetHeight(); in OnTreeSizeChange()
1385 childsize.right = childsize.left + mpTree->GetWidth(); in OnTreeSizeChange()
1388 total.cx = childsize.Width(); in OnTreeSizeChange()
1389 total.cy = childsize.Height() + 20; in OnTreeSizeChange()
/GUIX-v6.2.1/samples/demo_guix_medical/
Dpatients.c164 GX_RECTANGLE childsize; in patient_row_create() local
175 gx_utility_rectangle_define(&childsize, list->gx_window_client.gx_rectangle_left, 0, in patient_row_create()
177 gx_widget_create(&row->background, NULL, list, GX_STYLE_ENABLED, GX_ID_NONE, &childsize); in patient_row_create()
182childsize.gx_rectangle_left = patients_screen.patients_screen_patient_name_label.gx_widget_size.gx… in patient_row_create()
183childsize.gx_rectangle_right = patients_screen.patients_screen_DOB_label.gx_widget_size.gx_rectang… in patient_row_create()
184 …L, &row->background, 0, GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT | GX_STYLE_ENABLED, 0, &childsize); in patient_row_create()
189 childsize.gx_rectangle_left = childsize.gx_rectangle_right + 1; in patient_row_create()
190childsize.gx_rectangle_right = patients_screen.patients_screen_room_label.gx_widget_size.gx_rectan… in patient_row_create()
191 …L, &row->background, 0, GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT | GX_STYLE_ENABLED, 0, &childsize); in patient_row_create()
196 childsize.gx_rectangle_left = childsize.gx_rectangle_right + 1; in patient_row_create()
[all …]
/GUIX-v6.2.1/test/example_internal/guix_medical_mouse_support/
Dpatients.c105 GX_RECTANGLE childsize; in patient_row_create() local
119 gx_utility_rectangle_define(&childsize, list->gx_window_client.gx_rectangle_left + 10, 0, in patient_row_create()
121 gx_widget_create(&row->background, NULL, list, GX_STYLE_ENABLED, GX_ID_NONE, &childsize); in patient_row_create()
124 childsize.gx_rectangle_left += 10; in patient_row_create()
125 childsize.gx_rectangle_right = childsize.gx_rectangle_left + 190; in patient_row_create()
127 GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT, 0, &childsize); in patient_row_create()
131 gx_utility_rectangle_shift(&childsize, MR_NUM_SHIFT, 0); in patient_row_create()
133 GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT, 0, &childsize); in patient_row_create()
137 gx_utility_rectangle_shift(&childsize, ROOM_NUM_SHIFT, 0); in patient_row_create()
139 GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT, 0, &childsize); in patient_row_create()
[all …]
/GUIX-v6.2.1/common/src/
Dgx_generic_scroll_wheel_children_position.c80 GX_RECTANGLE childsize; in _gx_generic_scroll_wheel_children_position() local
115 childsize = *client; in _gx_generic_scroll_wheel_children_position()
124 childsize.gx_rectangle_top = (GX_VALUE)(selected_top - (top_rows * row_height)); in _gx_generic_scroll_wheel_children_position()
125 childsize.gx_rectangle_bottom = (GX_VALUE)(childsize.gx_rectangle_top + row_height - 1); in _gx_generic_scroll_wheel_children_position()
143 if (childsize.gx_rectangle_top == selected_top) in _gx_generic_scroll_wheel_children_position()
155 _gx_widget_resize(child, &childsize); in _gx_generic_scroll_wheel_children_position()
157 _gx_utility_rectangle_shift(&childsize, 0, row_height); in _gx_generic_scroll_wheel_children_position()
Dgx_vertical_list_children_position.c75 GX_RECTANGLE childsize = vertical_list -> gx_window_client; in _gx_vertical_list_children_position() local
118 childsize.gx_rectangle_bottom = (GX_VALUE)(childsize.gx_rectangle_top + height - 1); in _gx_vertical_list_children_position()
119 _gx_widget_resize(child, &childsize); in _gx_vertical_list_children_position()
120 childsize.gx_rectangle_top = (GX_VALUE)(childsize.gx_rectangle_bottom + 1); in _gx_vertical_list_children_position()
Dgx_horizontal_list_children_position.c78 GX_RECTANGLE childsize = horizontal_list -> gx_window_client; in _gx_horizontal_list_children_position() local
122 childsize.gx_rectangle_right = (GX_VALUE)(childsize.gx_rectangle_left + width - 1); in _gx_horizontal_list_children_position()
123 _gx_widget_resize(child, &childsize); in _gx_horizontal_list_children_position()
124 childsize.gx_rectangle_left = (GX_VALUE)(childsize.gx_rectangle_right + 1); in _gx_horizontal_list_children_position()