lok: initialize the load-language
[LibreOffice.git] / include / svx / svdotable.hxx
blobb837bc0e460879c460ae0e449777b5420978d56e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <com/sun/star/text/WritingMode.hpp>
23 #include <com/sun/star/container/XIndexAccess.hpp>
24 #include <com/sun/star/table/XTable.hpp>
25 #include <rtl/ref.hxx>
26 #include <svx/svdotext.hxx>
27 #include <svx/svxdllapi.h>
28 #include <boost/property_tree/ptree_fwd.hpp>
30 class SvStream;
31 class SfxStyleSheet;
32 class SdrUndoAction;
34 namespace sdr::contact {
35 class ViewContactOfTableObj;
38 namespace sdr::table {
40 class TableLayouter;
41 struct ImplTableShadowPaintInfo;
43 #ifndef CellRef
44 class Cell;
45 typedef rtl::Reference< Cell > CellRef;
46 #endif
49 /// SdrTableHitKind
50 enum class TableHitKind
52 NONE,
53 Cell,
54 CellTextArea,
55 HorizontalBorder,
56 VerticallBorder
60 struct CellPos
62 sal_Int32 mnCol;
63 sal_Int32 mnRow;
65 CellPos() : mnCol( 0 ), mnRow( 0 ) {}
66 CellPos( sal_Int32 nCol, sal_Int32 nRow ) { mnCol = nCol; mnRow = nRow; }
68 bool operator==( const CellPos& r ) const { return (r.mnCol == mnCol) && (r.mnRow == mnRow); }
69 bool operator!=( const CellPos& r ) const { return (r.mnCol != mnCol) || (r.mnRow != mnRow); }
73 /// TableStyleSettings
74 struct TableStyleSettings
76 bool mbUseFirstRow;
77 bool mbUseLastRow;
78 bool mbUseFirstColumn;
79 bool mbUseLastColumn;
80 bool mbUseRowBanding;
81 bool mbUseColumnBanding;
83 TableStyleSettings();
84 TableStyleSettings( const TableStyleSettings& rStyle );
85 TableStyleSettings& operator=(const TableStyleSettings& rStyle);
87 bool operator==( const TableStyleSettings& r ) const;
90 /// SdrTableObj
91 class SdrTableObjImpl;
93 class SVXCORE_DLLPUBLIC SdrTableObj final : public ::SdrTextObj
95 friend class Cell;
96 friend class SdrTableObjImpl;
98 // protected destructor
99 virtual ~SdrTableObj() override;
101 public:
102 SdrTableObj(SdrModel& rSdrModel);
103 // Copy constructor
104 SdrTableObj(SdrModel& rSdrModel, SdrTableObj const & rSource);
105 SdrTableObj(
106 SdrModel& rSdrModel,
107 const ::tools::Rectangle& rNewRect,
108 sal_Int32 nColumns,
109 sal_Int32 nRows);
111 // helper to limit existing TableModel to a given selection
112 void CropTableModelToSelection(const CellPos& rStart, const CellPos& rEnd);
114 // Table stuff
115 void DistributeColumns( sal_Int32 nFirstColumn, sal_Int32 nLastColumn, const bool bOptimize, const bool bMinimize );
116 void DistributeRows( sal_Int32 nFirstRow, sal_Int32 nLastRow, const bool bOptimize, const bool bMinimize );
118 css::uno::Reference< css::table::XTable > getTable() const;
120 bool isValid( const sdr::table::CellPos& rPos ) const;
121 static CellPos getFirstCell();
122 CellPos getLastCell() const;
123 CellPos getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const;
124 CellPos getRightCell( const CellPos& rPos, bool bEdgeTravel ) const;
125 CellPos getUpCell( const CellPos& rPos, bool bEdgeTravel ) const;
126 CellPos getDownCell( const CellPos& rPos, bool bEdgeTravel ) const;
127 CellPos getPreviousCell( const CellPos& rPos, bool bEdgeTravel ) const;
128 CellPos getNextCell( const CellPos& rPos, bool bEdgeTravel ) const;
129 CellPos getPreviousRow( const CellPos& rPos, bool bEdgeTravel ) const;
130 CellPos getNextRow( const CellPos& rPos, bool bEdgeTravel ) const;
132 void createCell( sdr::table::CellRef& xCell );
134 const sdr::table::TableStyleSettings& getTableStyleSettings() const;
135 void setTableStyleSettings( const sdr::table::TableStyleSettings& rStyle );
137 TableHitKind CheckTableHit( const Point& rPos, sal_Int32& rnX, sal_Int32& rnY, const sal_uInt16 aTol = 0 ) const;
139 void uno_lock();
140 void uno_unlock();
142 /** The active table has the focus or is currently edited */
143 const sdr::table::CellRef& getActiveCell() const;
145 CellRef getCell(const CellPos& rPos) const;
147 void setActiveCell( const sdr::table::CellPos& rPos );
148 void getActiveCellPos( sdr::table::CellPos& rPos ) const;
149 sal_Int32 getColumnCount() const;
150 sal_Int32 getRowCount() const;
152 bool createTableEdgesJson(boost::property_tree::ptree & rJsonRoot);
153 void changeEdge(bool bHorizontal, int nEdge, sal_Int32 nOffset);
155 void getCellBounds( const sdr::table::CellPos& rPos, ::tools::Rectangle& rCellRect );
157 const SfxItemSet& GetActiveCellItemSet() const;
159 void setTableStyle( const css::uno::Reference< css::container::XIndexAccess >& xAutoFormatStyle );
160 const css::uno::Reference< css::container::XIndexAccess >& getTableStyle() const;
162 // Text stuff
164 /** Returns the currently active text */
165 virtual SdrText* getActiveText() const override;
167 /** Returns the nth available text */
168 virtual SdrText* getText( sal_Int32 nIndex ) const override;
170 /** Returns the number of texts available for this object */
171 virtual sal_Int32 getTextCount() const override;
173 /** Changes the current active text */
174 virtual void setActiveText( sal_Int32 nIndex ) override;
176 /** Returns the index of the text that contains the given point or -1 */
177 virtual sal_Int32 CheckTextHit(const Point& rPnt) const override;
179 // #i121917#
180 virtual bool HasText() const override;
182 bool IsTextEditActive() const { return mpEditingOutliner != nullptr; }
183 bool IsTextEditActive( const sdr::table::CellPos& rPos );
185 /** Returns true only if we are in edit mode and the user actually changed anything */
186 virtual bool IsReallyEdited() const override;
188 /** At the same time, we set the text in the outliner (if applicable the EditOutliners')
189 * as well as the PaperSize
191 void TakeTextRect( const sdr::table::CellPos& rPos, SdrOutliner& rOutliner, ::tools::Rectangle& rTextRect, bool bNoEditText, ::tools::Rectangle* pAnchorRect ) const;
192 virtual void TakeTextRect( SdrOutliner& rOutliner, tools::Rectangle& rTextRect, bool bNoEditText, tools::Rectangle* pAnchorRect, bool bLineWidth = true ) const override;
193 void TakeTextAnchorRect(const sdr::table::CellPos& rPos, ::tools::Rectangle& rAnchorRect ) const;
194 virtual void TakeTextAnchorRect(::tools::Rectangle& rAnchorRect) const override;
196 virtual bool IsAutoGrowHeight() const override;
197 virtual bool IsAutoGrowWidth() const override;
199 virtual bool IsFontwork() const override;
201 virtual void TakeObjInfo(SdrObjTransformInfoRec& rInfo) const override;
202 virtual SdrObjKind GetObjIdentifier() const override;
203 virtual void SetChanged() override;
205 virtual bool AdjustTextFrameWidthAndHeight(tools::Rectangle& rR, bool bHgt = true, bool bWdt = true) const override;
206 virtual bool AdjustTextFrameWidthAndHeight() override;
207 virtual OUString TakeObjNameSingul() const override;
208 virtual OUString TakeObjNamePlural() const override;
209 virtual rtl::Reference<SdrObject> CloneSdrObject(SdrModel& rTargetModel) const override;
210 virtual void RecalcSnapRect() override;
211 virtual const tools::Rectangle& GetSnapRect() const override;
212 virtual void NbcSetSnapRect(const tools::Rectangle& rRect) override;
214 virtual const tools::Rectangle& GetLogicRect() const override;
215 virtual void NbcSetLogicRect(const tools::Rectangle& rRect) override;
216 virtual void AdjustToMaxRect( const tools::Rectangle& rMaxRect, bool bShrinkOnly = false ) override;
218 virtual sal_uInt32 GetHdlCount() const override;
219 virtual void AddToHdlList(SdrHdlList& rHdlList) const override;
221 // Special drag methods
222 virtual bool hasSpecialDrag() const override;
223 virtual bool beginSpecialDrag(SdrDragStat& rDrag) const override;
224 virtual bool applySpecialDrag(SdrDragStat& rDrag) override;
225 virtual basegfx::B2DPolyPolygon getSpecialDragPoly(const SdrDragStat& rDrag) const override;
227 virtual bool BegCreate(SdrDragStat& rStat) override;
228 virtual bool MovCreate(SdrDragStat& rStat) override;
229 virtual bool EndCreate(SdrDragStat& rStat, SdrCreateCmd eCmd) override;
230 virtual bool BckCreate(SdrDragStat& rStat) override;
231 virtual void BrkCreate(SdrDragStat& rStat) override;
232 virtual basegfx::B2DPolyPolygon TakeCreatePoly(const SdrDragStat& rDrag) const override;
233 virtual PointerStyle GetCreatePointer() const override;
235 virtual void NbcMove(const Size& rSiz) override;
236 virtual void NbcResize(const Point& rRef, const Fraction& xFact, const Fraction& yFact) override;
238 virtual bool BegTextEdit(SdrOutliner& rOutl) override;
239 virtual void EndTextEdit(SdrOutliner& rOutl) override;
240 virtual void TakeTextEditArea(Size* pPaperMin, Size* pPaperMax, tools::Rectangle* pViewInit, tools::Rectangle* pViewMin) const override;
241 void TakeTextEditArea(const sdr::table::CellPos& rPos, Size* pPaperMin, Size* pPaperMax, tools::Rectangle* pViewInit, tools::Rectangle* pViewMin) const;
242 virtual EEAnchorMode GetOutlinerViewAnchorMode() const override;
244 virtual void NbcSetOutlinerParaObject(std::optional<OutlinerParaObject> pTextObject) override;
246 virtual OutlinerParaObject* GetOutlinerParaObject() const override;
248 virtual void NbcReformatText() override;
250 virtual bool IsVerticalWriting() const override;
251 virtual void SetVerticalWriting(bool bVertical) override;
253 css::text::WritingMode GetWritingMode() const;
255 /// Add an undo action that should be on the undo stack after ending text edit.
256 void AddUndo(SdrUndoAction* pUndo);
258 /// Next time layouting would be done, skip it (to layout at the end of multiple actions).
259 void SetSkipChangeLayout(bool bSkipChangeLayout);
261 void LayoutTableHeight(tools::Rectangle& rArea, bool bFit);
263 virtual void onEditOutlinerStatusEvent( EditStatus* pEditStatus ) override;
265 virtual void dumpAsXml(xmlTextWriterPtr pWriter) const override;
267 private:
268 void init( sal_Int32 nColumns, sal_Int32 nRows );
270 virtual std::unique_ptr<sdr::properties::BaseProperties> CreateObjectSpecificProperties() override;
271 virtual std::unique_ptr<sdr::contact::ViewContact> CreateObjectSpecificViewContact() override;
273 virtual std::unique_ptr<SdrObjGeoData> NewGeoData() const override;
274 virtual void SaveGeoData(SdrObjGeoData& rGeo) const override;
275 virtual void RestoreGeoData(const SdrObjGeoData& rGeo) override;
277 SdrOutliner* GetCellTextEditOutliner( const sdr::table::Cell& rCell ) const;
279 // For the ViewContactOfTableObj to build the primitive representation, it is necessary to access the
280 // TableLayouter for position and attribute information
281 friend class sdr::contact::ViewContactOfTableObj;
282 const TableLayouter& getTableLayouter() const;
284 tools::Rectangle maLogicRect;
285 rtl::Reference<SdrTableObjImpl> mpImpl;
288 /** Hack for clipboard with calc and writer, export and import table content as rtf table */
289 SVX_DLLPUBLIC void ExportAsRTF( SvStream& rStrm, SdrTableObj& rObj );
290 SVX_DLLPUBLIC void ImportAsRTF( SvStream& rStrm, SdrTableObj& rObj );
294 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */