Kaydet (Commit) 97135b15 authored tarafından Henry Castro's avatar Henry Castro

sc: prefix members of ScTransferObj

Change-Id: I553c552a62b817642b4ce430610e4d9b690d3aae
Reviewed-on: https://gerrit.libreoffice.org/53923Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarHenry Castro <hcastro@collabora.com>
üst 6064e4f3
This diff is collapsed.
......@@ -40,23 +40,23 @@ namespace com { namespace sun { namespace star {
class ScTransferObj : public TransferableHelper
{
private:
ScDocument* pDoc;
ScRange aBlock;
SCROW nNonFiltered; // non-filtered rows
TransferableObjectDescriptor aObjDesc;
SfxObjectShellRef aDocShellRef;
SfxObjectShellRef aDrawPersistRef;
css::uno::Reference<css::sheet::XSheetCellRanges> xDragSourceRanges;
SCCOL nDragHandleX;
SCROW nDragHandleY;
SCCOL nSourceCursorX;
SCROW nSourceCursorY;
SCTAB nVisibleTab;
ScDragSrc nDragSourceFlags;
bool bDragWasInternal;
bool bUsedForLink;
bool bHasFiltered; // if has filtered rows
bool bUseInApi; // to recognize clipboard content copied from API
ScDocument* m_pDoc;
ScRange m_aBlock;
SCROW m_nNonFiltered; // non-filtered rows
TransferableObjectDescriptor m_aObjDesc;
SfxObjectShellRef m_aDocShellRef;
SfxObjectShellRef m_aDrawPersistRef;
css::uno::Reference<css::sheet::XSheetCellRanges> m_xDragSourceRanges;
SCCOL m_nDragHandleX;
SCROW m_nDragHandleY;
SCCOL m_nSourceCursorX;
SCROW m_nSourceCursorY;
SCTAB m_nVisibleTab;
ScDragSrc m_nDragSourceFlags;
bool m_bDragWasInternal;
bool m_bUsedForLink;
bool m_bHasFiltered; // if has filtered rows
bool m_bUseInApi; // to recognize clipboard content copied from API
// #i123405# added parameter to allow size calculation without limitation
// to PageSize, e.g. used for Metafile creation for clipboard.
......@@ -78,18 +78,18 @@ public:
const css::datatransfer::DataFlavor& rFlavor ) override;
virtual void DragFinished( sal_Int8 nDropAction ) override;
ScDocument* GetDocument() { return pDoc; } // owned by ScTransferObj
const ScRange& GetRange() const { return aBlock; }
SCROW GetNonFilteredRows() const { return nNonFiltered; }
SCCOL GetDragHandleX() const { return nDragHandleX; }
SCROW GetDragHandleY() const { return nDragHandleY; }
ScDocument* GetDocument() { return m_pDoc; } // owned by ScTransferObj
const ScRange& GetRange() const { return m_aBlock; }
SCROW GetNonFilteredRows() const { return m_nNonFiltered; }
SCCOL GetDragHandleX() const { return m_nDragHandleX; }
SCROW GetDragHandleY() const { return m_nDragHandleY; }
bool WasSourceCursorInSelection() const;
SCCOL GetSourceCursorX() const { return nSourceCursorX; }
SCROW GetSourceCursorY() const { return nSourceCursorY; }
SCTAB GetVisibleTab() const { return nVisibleTab; }
ScDragSrc GetDragSourceFlags() const { return nDragSourceFlags; }
bool HasFilteredRows() const { return bHasFiltered; }
bool GetUseInApi() const { return bUseInApi; }
SCCOL GetSourceCursorX() const { return m_nSourceCursorX; }
SCROW GetSourceCursorY() const { return m_nSourceCursorY; }
SCTAB GetVisibleTab() const { return m_nVisibleTab; }
ScDragSrc GetDragSourceFlags() const { return m_nDragSourceFlags; }
bool HasFilteredRows() const { return m_bHasFiltered; }
bool GetUseInApi() const { return m_bUseInApi; }
ScDocShell* GetSourceDocShell();
ScDocument* GetSourceDocument();
ScMarkData GetSourceMarkData();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment