Lines Matching refs:nTable

62 void ScMySharedData::SetLastColumn(const sal_Int32 nTable, const sal_Int32 nCol)  in SetLastColumn()  argument
64 if(nCol > nLastColumns[nTable]) nLastColumns[nTable] = nCol; in SetLastColumn()
67 sal_Int32 ScMySharedData::GetLastColumn(const sal_Int32 nTable) in GetLastColumn() argument
69 return nLastColumns[nTable]; in GetLastColumn()
72 void ScMySharedData::SetLastRow(const sal_Int32 nTable, const sal_Int32 nRow) in SetLastRow() argument
74 if(nRow > nLastRows[nTable]) nLastRows[nTable] = nRow; in SetLastRow()
77 sal_Int32 ScMySharedData::GetLastRow(const sal_Int32 nTable) in GetLastRow() argument
79 return nLastRows[nTable]; in GetLastRow()
82 void ScMySharedData::AddDrawPage(const ScMyDrawPage& aDrawPage, const sal_Int32 nTable) in AddDrawPage() argument
86 (*pDrawPages)[nTable] = aDrawPage; in AddDrawPage()
89 void ScMySharedData::SetDrawPageHasForms(const sal_Int32 nTable, sal_Bool bHasForms) in SetDrawPageHasForms() argument
93 (*pDrawPages)[nTable].bHasForms = bHasForms; in SetDrawPageHasForms()
96 uno::Reference<drawing::XDrawPage> ScMySharedData::GetDrawPage(const sal_Int32 nTable) in GetDrawPage() argument
100 return (*pDrawPages)[nTable].xDrawPage; in GetDrawPage()
105 sal_Bool ScMySharedData::HasForm(const sal_Int32 nTable, uno::Reference<drawing::XDrawPage>& xDrawP… in HasForm() argument
110 if ((*pDrawPages)[nTable].bHasForms) in HasForm()
113 xDrawPage = (*pDrawPages)[nTable].xDrawPage; in HasForm()
138 void ScMySharedData::AddTableShape(const sal_Int32 nTable, const uno::Reference<drawing::XShape>& x… in AddTableShape() argument
142 (*pTableShapes)[nTable].push_back(xShape); in AddTableShape()