Lines Matching refs:row_id
667 BOOL string_table_edit_dlg::StringSelected(int row_id, BOOL bIdEdit) in StringSelected() argument
671 if (row_id < 0 || row_id > mpTableFrame->GetRowCount()) in StringSelected()
673 row_id = 0; in StringSelected()
675 mRowId = row_id; in StringSelected()
679 if (row_id > 0) in StringSelected()
1843 void table_frame::RowSelected(int column, int row_id, bool assign_focus) in RowSelected() argument
1849 if (dlg->StringSelected(row_id, TRUE)) in RowSelected()
1850 mSelectedRow = row_id; in RowSelected()
1854 if (dlg->StringSelected(row_id, FALSE)) in RowSelected()
1855 mSelectedRow = row_id; in RowSelected()
1925 void table_frame::DeleteString(int row_id) in DeleteString() argument
1941 if (row_id >= mRowCount) in DeleteString()
1943 row_id--; in DeleteString()
1945 RowSelected(NULL, row_id, FALSE); in DeleteString()
2015 void table_frame::GetRowName(int row_id, CString& name) in GetRowName() argument
2017 name.Format(_T("row %d"), row_id); in GetRowName()
2021 CWnd *table_frame::GetRow(int row_id) in GetRow() argument
2025 if (row_id <= 0) in GetRow()
2032 while ((row_id > 1) && child) in GetRow()
2035 row_id--; in GetRow()
2042 void table_frame::InvalidateRow(int row_id) in InvalidateRow() argument
2045 CWnd *child = GetRow(row_id); in InvalidateRow()
2054 int table_frame::GetStringIndex(int row_id) in GetStringIndex() argument
2056 table_row *row = (table_row *)GetRow(row_id); in GetStringIndex()