Home
last modified time | relevance | path

Searched refs:CellPos (Results 1 – 25 of 52) sorted by relevance

123

/dports/editors/libreoffice/libreoffice-7.2.6.2/include/svx/
H A Dsvdotable.hxx61 struct CellPos struct
113 void CropTableModelToSelection(const CellPos& rStart, const CellPos& rEnd);
123 CellPos getLastCell() const;
124 CellPos getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const;
125 CellPos getRightCell( const CellPos& rPos, bool bEdgeTravel ) const;
126 CellPos getUpCell( const CellPos& rPos, bool bEdgeTravel ) const;
127 CellPos getDownCell( const CellPos& rPos, bool bEdgeTravel ) const;
128 CellPos getPreviousCell( const CellPos& rPos, bool bEdgeTravel ) const;
129 CellPos getNextCell( const CellPos& rPos, bool bEdgeTravel ) const;
130 CellPos getPreviousRow( const CellPos& rPos, bool bEdgeTravel ) const;
[all …]
H A Dselectioncontroller.hxx40 namespace table { struct CellPos; }
78 virtual void getSelectedCells(table::CellPos& rFirstPos, table::CellPos& rLastPos);
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/svx/
H A Dsvdotable.hxx61 struct CellPos struct
111 void CropTableModelToSelection(const CellPos& rStart, const CellPos& rEnd);
121 CellPos getLastCell() const;
122 CellPos getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const;
123 CellPos getRightCell( const CellPos& rPos, bool bEdgeTravel ) const;
124 CellPos getUpCell( const CellPos& rPos, bool bEdgeTravel ) const;
125 CellPos getDownCell( const CellPos& rPos, bool bEdgeTravel ) const;
126 CellPos getPreviousCell( const CellPos& rPos, bool bEdgeTravel ) const;
127 CellPos getNextCell( const CellPos& rPos, bool bEdgeTravel ) const;
128 CellPos getPreviousRow( const CellPos& rPos, bool bEdgeTravel ) const;
[all …]
H A Dselectioncontroller.hxx41 namespace table { struct CellPos; }
77 virtual void getSelectedCells(table::CellPos& rFirstPos, table::CellPos& rLastPos);
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/view/
H A Dspellcheckcontext.cxx15 size_t SpellCheckContext::CellPos::Hash::operator() (const CellPos& rPos) const in operator ()()
23 SpellCheckContext::CellPos::CellPos() : mnCol(0), mnRow(0) {} in CellPos() function in sc::SpellCheckContext::CellPos
24 SpellCheckContext::CellPos::CellPos(SCCOL nCol, SCROW nRow) : mnCol(nCol), mnRow(nRow) {} in CellPos() function in sc::SpellCheckContext::CellPos
26 void SpellCheckContext::CellPos::setInvalid() in setInvalid()
32 bool SpellCheckContext::CellPos::isValid() const in isValid()
37 void SpellCheckContext::CellPos::reset() in reset()
43 bool SpellCheckContext::CellPos::operator== (const CellPos& r) const in operator ==()
54 return maMisspellCells.count(CellPos(nCol, nRow)) > 0; in isMisspelled()
60 CellMapType::const_iterator it = maMisspellCells.find(CellPos(nCol,nRow)); in getMisspellRanges()
70 CellPos aPos(nCol, nRow); in setMisspellRanges()
/dports/games/openspades/openspades-0.1.3/Sources/Client/
H A DGameMapWrapper.cpp70 CellPos p = queue.Front(); in Rebuild()
77 queue.Push(CellPos(x - 1, y, z)); in Rebuild()
81 queue.Push(CellPos(x + 1, y, z)); in Rebuild()
151 Deque<CellPos> queue(1024); in AddBlock()
152 queue.Push(CellPos(x, y, z)); in AddBlock()
154 CellPos p = queue.Front(); in AddBlock()
199 std::vector<CellPos> GameMapWrapper::RemoveBlocks(const std::vector<CellPos> &cells) { in RemoveBlocks()
203 return std::vector<CellPos>(); in RemoveBlocks()
209 Deque<CellPos> queue(1024); in RemoveBlocks()
213 CellPos pos = cells[i]; in RemoveBlocks()
[all …]
H A DGameMapWrapper.h31 struct CellPos { struct
33 CellPos() = default; argument
34 CellPos(int xx, int yy, int zz) : x(xx), y(yy), z(zz) {} in CellPos() argument
36 bool operator<(const CellPos &p) const {
49 bool operator==(const CellPos &p) const { return x == p.x && y == p.y && z == p.z; }
53 inline std::size_t operator()(const CellPos &pos) const { in operator()
112 std::vector<CellPos> RemoveBlocks(const std::vector<CellPos> &);
H A DWorld.cpp208 static std::vector<std::vector<CellPos>>
209 ClusterizeBlocks(const std::vector<CellPos> &blocks) { in ClusterizeBlocks()
210 std::unordered_map<CellPos, bool, CellPosHash> blockMap; in ClusterizeBlocks()
215 std::vector<std::vector<CellPos>> ret; in ClusterizeBlocks()
230 std::vector<CellPos> outBlocks; in ClusterizeBlocks()
245 nextIt = blockMap.find(CellPos(pos.x - 1, pos.y, pos.z)); in ClusterizeBlocks()
249 nextIt = blockMap.find(CellPos(pos.x + 1, pos.y, pos.z)); in ClusterizeBlocks()
294 std::vector<CellPos> cells; in ApplyBlockActions()
326 createdBlocks[CellPos(pos.x, pos.y, pos.z)] = color; in CreateBlock()
329 std::vector<CellPos> cells; in DestroyBlock()
[all …]
H A DWorld.h80 std::unordered_map<CellPos, spades::IntVector3, CellPosHash> createdBlocks;
81 std::unordered_set<CellPos, CellPosHash> destroyedBlocks;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/inc/
H A Dspellcheckcontext.hxx23 struct CellPos struct
27 size_t operator() (const CellPos& rPos) const;
33 CellPos();
34 CellPos(SCCOL nCol, SCROW nRow);
40 bool operator== (const CellPos& r) const;
43 …typedef std::unordered_map<CellPos, std::vector<editeng::MisspellRanges>, CellPos::Hash> CellMapTy…
45 CellPos maPos;
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/svx/sdr/table/
H A Dtablecontroller.hxx109 void getSelectedCells( CellPos& rFirstPos, CellPos& rLastPos ) override;
110 void setSelectedCells( const CellPos& rFirstPos, const CellPos& rLastPos );
152 SVX_DLLPRIVATE const CellPos& getSelectionStart();
154 SVX_DLLPRIVATE const CellPos& getSelectionEnd();
155 SVX_DLLPRIVATE void checkCell( CellPos& rPos );
166 SVX_DLLPRIVATE void StartSelection( const CellPos& rPos );
167 SVX_DLLPRIVATE void UpdateSelection( const CellPos& rPos );
172 SVX_DLLPRIVATE void findMergeOrigin( CellPos& rPos );
179 CellPos maCursorFirstPos;
180 CellPos maCursorLastPos;
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/svx/sdr/table/
H A Dtablecontroller.hxx106 void getSelectedCells( CellPos& rFirstPos, CellPos& rLastPos ) override;
107 void setSelectedCells( const CellPos& rFirstPos, const CellPos& rLastPos );
149 SVX_DLLPRIVATE const CellPos& getSelectionStart();
151 SVX_DLLPRIVATE const CellPos& getSelectionEnd();
152 SVX_DLLPRIVATE void checkCell( CellPos& rPos );
163 SVX_DLLPRIVATE void StartSelection( const CellPos& rPos );
164 SVX_DLLPRIVATE void UpdateSelection( const CellPos& rPos );
169 SVX_DLLPRIVATE void findMergeOrigin( CellPos& rPos );
176 CellPos maCursorFirstPos;
177 CellPos maCursorLastPos;
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/view/
H A Dspellcheckcontext.cxx34 struct CellPos struct in SpellCheckContext::SpellCheckCache
38 size_t operator() (const CellPos& rPos) const in operator ()()
50 CellPos(SCCOL nCol, SCROW nRow) : mnCol(nCol), mnRow(nRow) {} in CellPos() argument
52 bool operator== (const CellPos& r) const in operator ==() argument
60 typedef std::unordered_map<CellPos, std::unique_ptr<MisspellType>, CellPos::Hash> CellMapType;
62 typedef std::unordered_map<CellPos, LanguageType, CellPos::Hash> CellLangMapType;
90 CellMapType::const_iterator it = maEditTextMisspells.find(CellPos(nCol, nRow)); in query()
108 maEditTextMisspells.insert_or_assign(CellPos(nCol, nRow), std::move(pRanges)); in set()
113 CellLangMapType::const_iterator it = maCellLanguages.find(CellPos(nCol, nRow)); in getLanguage()
123 maCellLanguages.erase(CellPos(nCol, nRow)); in setLanguage()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/table/
H A Dsvdotable.cxx200 CellPos maEditPos;
206 void CropTableModelToSelection(const CellPos& rStart, const CellPos& rEnd);
490 CellPos aPos; in ApplyCellStyles()
957 CellPos aPos; in getLastCell()
967 CellPos SdrTableObj::getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const in getLeftCell()
997 CellPos SdrTableObj::getUpCell( const CellPos& rPos, bool bEdgeTravel ) const in getUpCell()
1011 CellPos SdrTableObj::getDownCell( const CellPos& rPos, bool bEdgeTravel ) const in getDownCell()
1027 CellPos aPos( rPos ); in getPreviousCell()
1052 CellPos SdrTableObj::getNextCell( const CellPos& rPos, bool bEdgeTravel ) const in getNextCell()
1120 CellPos SdrTableObj::getNextRow( const CellPos& rPos, bool bEdgeTravel ) const in getNextRow()
[all …]
H A Dtablecontroller.cxx369 CellPos aPos; in onMouseMove()
547 CellPos aStart, aEnd; in onInsert()
869 CellPos aStart, aEnd; in onSelect()
1257 CellPos aStart, aEnd; in SetVertical()
1301 CellPos aStart, aEnd; in MergeMarkedCells()
1384 CellPos aStart, aEnd; in DistributeColumns()
1407 CellPos aStart, aEnd; in DistributeRows()
1433 CellPos aStart, aEnd; in DeleteMarked()
2114 void SvxTableController::getSelectedCells( CellPos& rFirst, CellPos& rLast ) in getSelectedCells()
2327 CellPos aStart,aEnd; in updateSelectionOverlay()
[all …]
H A Dcellcursor.hxx31 struct CellPos;
59 bool GetMergedSelection( CellPos& rStart, CellPos& rEnd );
H A Dtablelayouter.hxx85 … bool getCellArea( const CellRef& xCell, const CellPos& rPos, basegfx::B2IRectangle& rArea ) const;
126 CellRef getCell( const CellPos& rPos ) const;
127 basegfx::B2ITuple getCellSize( const CellRef& xCell, const CellPos& rPos ) const;
134 …bool isValid( const CellPos& rPos ) const { return isValidColumn( rPos.mnCol ) && isValidRow( rPos… in isValid()
H A Dtablelayouter.cxx64 basegfx::B2ITuple TableLayouter::getCellSize( const CellRef& xCell, const CellPos& rPos ) const in getCellSize()
73 CellPos aPos( rPos ); in getCellSize()
107 bool TableLayouter::getCellArea( const CellRef& xCell, const CellPos& rPos, basegfx::B2IRectangle& … in getCellArea()
187 CellRef xCell( getCell( CellPos( nSpannedColumn, nRow ) ) ); in calcPreferredColumnWidth()
198 xCell = getCell( CellPos( nColumn + 1, nRow ) ); in calcPreferredColumnWidth()
604 CellRef xCell( getCell( CellPos( nCol, nRow ) ) ); in LayoutTableWidth()
756 CellRef xCell( getCell( CellPos( nCol, nRow ) ) ); in LayoutTableHeight()
937 CellPos aPos; in updateCells()
962 CellRef TableLayouter::getCell( const CellPos& rPos ) const in getCell()
1098 CellPos aPos; in UpdateBorderLayout()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/table/
H A Dsvdotable.cxx196 CellPos maEditPos;
202 void CropTableModelToSelection(const CellPos& rStart, const CellPos& rEnd);
485 CellPos aPos; in ApplyCellStyles()
922 CellPos aPos; in getLastCell()
932 CellPos SdrTableObj::getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const in getLeftCell()
962 CellPos SdrTableObj::getUpCell( const CellPos& rPos, bool bEdgeTravel ) const in getUpCell()
976 CellPos SdrTableObj::getDownCell( const CellPos& rPos, bool bEdgeTravel ) const in getDownCell()
992 CellPos aPos( rPos ); in getPreviousCell()
1017 CellPos SdrTableObj::getNextCell( const CellPos& rPos, bool bEdgeTravel ) const in getNextCell()
1085 CellPos SdrTableObj::getNextRow( const CellPos& rPos, bool bEdgeTravel ) const in getNextRow()
[all …]
H A Dtablecontroller.cxx364 CellPos aPos; in onMouseMove()
537 CellPos aStart, aEnd; in onInsert()
1202 CellPos aStart, aEnd; in SetVertical()
1246 CellPos aStart, aEnd; in MergeMarkedCells()
1328 CellPos aStart, aEnd; in DistributeColumns()
1351 CellPos aStart, aEnd; in DistributeRows()
1376 CellPos aStart, aEnd; in DeleteMarked()
2037 void SvxTableController::getSelectedCells( CellPos& rFirst, CellPos& rLast ) in getSelectedCells()
2149 CellPos aStart, aEnd; in ChangeFontSize()
2626 CellPos aStart, aEnd; in SetAttrToSelectedCells()
[all …]
H A Dcellcursor.hxx31 struct CellPos;
59 bool GetMergedSelection( CellPos& rStart, CellPos& rEnd );
H A Dtablelayouter.hxx88 … bool getCellArea( const CellRef& xCell, const CellPos& rPos, basegfx::B2IRectangle& rArea ) const;
129 CellRef getCell( const CellPos& rPos ) const;
130 basegfx::B2ITuple getCellSize( const CellRef& xCell, const CellPos& rPos ) const;
137 …bool isValid( const CellPos& rPos ) const { return isValidColumn( rPos.mnCol ) && isValidRow( rPos… in isValid()
H A Dtablelayouter.cxx69 basegfx::B2ITuple TableLayouter::getCellSize( const CellRef& xCell, const CellPos& rPos ) const in getCellSize()
78 CellPos aPos( rPos ); in getCellSize()
112 bool TableLayouter::getCellArea( const CellRef& xCell, const CellPos& rPos, basegfx::B2IRectangle& … in getCellArea()
192 CellRef xCell( getCell( CellPos( nSpannedColumn, nRow ) ) ); in calcPreferredColumnWidth()
203 xCell = getCell( CellPos( nColumn + 1, nRow ) ); in calcPreferredColumnWidth()
609 CellRef xCell( getCell( CellPos( nCol, nRow ) ) ); in LayoutTableWidth()
756 CellRef xCell( getCell( CellPos( nCol, nRow ) ) ); in LayoutTableHeight()
920 CellPos aPos; in updateCells()
945 CellRef TableLayouter::getCell( const CellPos& rPos ) const in getCell()
1081 CellPos aPos; in UpdateBorderLayout()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/svdraw/
H A Dselectioncontroller.cxx107 void SelectionController::getSelectedCells(table::CellPos& /*rFirstPos*/, table::CellPos& /*rLastPo… in getSelectedCells() argument
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/svdraw/
H A Dselectioncontroller.cxx103 void SelectionController::getSelectedCells(table::CellPos& /*rFirstPos*/, table::CellPos& /*rLastPo… in getSelectedCells() argument

123