Lines Matching refs:row
964 table_row *row = (table_row *)mpTableFrame->GetWindow(GW_CHILD); in OnTestMessage() local
967 while (string_id && row) in OnTestMessage()
969 row = (table_row *)row->GetWindow(GW_HWNDNEXT); in OnTestMessage()
973 if (row) in OnTestMessage()
976 row->GetWindowRect(&rect); in OnTestMessage()
977 row->ScreenToClient(&rect); in OnTestMessage()
978 row->SendMessage(WM_LBUTTONDOWN, MK_LBUTTON, MAKELPARAM(rect.left + 1, rect.top + 1)); in OnTestMessage()
1563 table_row *row; in CreateTableRows() local
1581 row = new table_row(this, mRowCount++, index, mpTable); in CreateTableRows()
1582 …row->Create(target_class_name, _T("string_row"), WS_VISIBLE | WS_CHILD, CRect(0, 0, 0, 0), this, 0… in CreateTableRows()
1671 table_row *row = (table_row *) GetWindow(GW_CHILD); in OnSize() local
1673 if (row) in OnSize()
1675 mRowHeight = row->GetRowHeight(); in OnSize()
1728 table_row * row = (table_row*)GetWindow(GW_CHILD); in PreTranslateMessage() local
1729 int pagesize = rect.Height() / row->GetRowHeight(); in PreTranslateMessage()
1740 table_row* row = (table_row*)GetWindow(GW_CHILD); in PreTranslateMessage() local
1741 int pagesize = rect.Height() / row->GetRowHeight(); in PreTranslateMessage()
1784 CWnd* row = GetRow(mSelectedRow); in OnSetFocus() local
1785 if (row) in OnSetFocus()
1787 row->Invalidate(); in OnSetFocus()
1788 row->SetFocus(); in OnSetFocus()
1812 table_row *row = (table_row *) GetWindow(GW_CHILD); in PositionChildren() local
1814 if (row) in PositionChildren()
1816 rowheight = row->GetRowHeight(); in PositionChildren()
1823 while(row) in PositionChildren()
1827 row->SetWindowText(name); in PositionChildren()
1829 row->MoveWindow(&childsize); in PositionChildren()
1832 row = (table_row *) row->GetWindow(GW_HWNDNEXT); in PositionChildren()
1860 CWnd* row = GetRow(mSelectedRow); in RowSelected() local
1861 if (row) in RowSelected()
1863 row->Invalidate(); in RowSelected()
1867 row->SetFocus(); in RowSelected()
1912 table_row *row = new table_row(this, mRowCount, mRowCount, mpTable); in AddString() local
1913 …row->Create(target_class_name, _T("string_row"), WS_VISIBLE | WS_CHILD, CRect(0, 0, 0, 0), this, 0… in AddString()
1927 table_row *row = (table_row *) GetWindow(GW_CHILD); in DeleteString() local
1929 if (row) in DeleteString()
1931 while(row->GetWindow(GW_HWNDNEXT)) in DeleteString()
1933 row = (table_row *) row->GetWindow(GW_HWNDNEXT); in DeleteString()
1935 row->DestroyWindow(); in DeleteString()
1936 delete row; in DeleteString()
2006 table_row *row = (table_row *) GetWindow(GW_CHILD); in SelectFirstRow() local
2008 if (row) in SelectFirstRow()
2010 RowSelected(0, row->GetRowId()); in SelectFirstRow()
2056 table_row *row = (table_row *)GetRow(row_id); in GetStringIndex() local
2057 if (row) in GetStringIndex()
2059 return row->GetStringIndex(); in GetStringIndex()
2651 string_reference_row *row; in CreateStringReferenceRows() local
2674 row = new string_reference_row(this, info, string_id); in CreateStringReferenceRows()
2675 …row->Create(target_class_name, _T("string_reference_row"), WS_VISIBLE | WS_CHILD, CRect(0, 0, 0, 0… in CreateStringReferenceRows()
2676 row->MakeWidgetPreview(); in CreateStringReferenceRows()
2736 string_reference_row *row; in PositionChildren() local
2752 row = (string_reference_row *)GetWindow(GW_CHILD); in PositionChildren()
2753 while (row) in PositionChildren()
2755 size = row->GetWidgetPreviewSize(); in PositionChildren()
2760 text_extent = dc->GetTextExtent(row->GetInfoText()); in PositionChildren()
2774 row = (string_reference_row *)row->GetWindow(GW_HWNDNEXT); in PositionChildren()
2816 row = (string_reference_row *)GetWindow(GW_CHILD); in PositionChildren()
2817 while (row) in PositionChildren()
2819 size = row->GetWidgetPreviewSize(); in PositionChildren()
2827 row->MoveWindow(&childsize); in PositionChildren()
2829 row = (string_reference_row *)row->GetWindow(GW_HWNDNEXT); in PositionChildren()