Lines Matching refs:nColumns

1142 …  sal_uInt16 v        = sal::static_int_cast< sal_uInt16 >((aVScrollBar.GetThumbPos() * nColumns));  in Paint()
1164 DrawText(Point((nIV % nColumns) * nLen + (nLen - aSize.Width()) / 2, in Paint()
1165 (nIV / nColumns) * nLen + (nLen - aSize.Height()) / 2), in Paint()
1171 Invert(Rectangle(Point(((nSelectSymbol - v) % nColumns) * nLen, in Paint()
1172 ((nSelectSymbol - v) / nColumns) * nLen), in Paint()
1186 long nPos = (rMEvt.GetPosPixel().Y() / nLen) * nColumns + (rMEvt.GetPosPixel().X() / nLen) + in MouseButtonDown()
1187 aVScrollBar.GetThumbPos() * nColumns; in MouseButtonDown()
1206 case KEY_DOWN: n = n + nColumns; break; in KeyInput()
1207 case KEY_UP: n = n - nColumns; break; in KeyInput()
1212 case KEY_PAGEUP: n -= nColumns * nRows; break; in KeyInput()
1213 case KEY_PAGEDOWN: n += nColumns * nRows; break; in KeyInput()
1227 if ((n < (sal_uInt16) (aVScrollBar.GetThumbPos() * nColumns)) || in KeyInput()
1228 (n >= (sal_uInt16) ((aVScrollBar.GetThumbPos() + nRows) * nColumns))) in KeyInput()
1230 aVScrollBar.SetThumbPos(n / nColumns); in KeyInput()
1253 nColumns = sal::static_int_cast< sal_uInt16 >(nUseableWidth / nLen); in SmShowSymbolSet()
1254 if (nColumns > 2 && nColumns % 2 != 0) in SmShowSymbolSet()
1255 nColumns--; in SmShowSymbolSet()
1258 DBG_ASSERT(nColumns > 0, "Sm : keine Spalten"); in SmShowSymbolSet()
1263 aOutputSize.Width() = nColumns * nLen; in SmShowSymbolSet()
1283 if (static_cast< sal_uInt16 >(aSymbolSet.size()) > (nColumns * nRows)) in SetSymbolSet()
1285 aVScrollBar.SetRange(Range(0, ((aSymbolSet.size() + (nColumns - 1)) / nColumns) - nRows)); in SetSymbolSet()
1300 int v = (int) (aVScrollBar.GetThumbPos() * nColumns); in SelectSymbol()
1303 Invalidate(Rectangle(Point(((nSelectSymbol - v) % nColumns) * nLen, in SelectSymbol()
1304 ((nSelectSymbol - v) / nColumns) * nLen), in SelectSymbol()
1314 Invalidate(Rectangle(Point(((nSelectSymbol - v) % nColumns) * nLen, in SelectSymbol()
1315 ((nSelectSymbol - v) / nColumns) * nLen), in SelectSymbol()