summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xcl97esc.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-27 14:20:54 +0200
committerNoel Grandin <noel@peralex.com>2015-10-28 09:22:34 +0200
commit16246ed7b280f51a39a01ded24c0d7bd59d59365 (patch)
treee506c24eeae16b384555f08818e0b62ba41e0285 /sc/source/filter/inc/xcl97esc.hxx
parent5d3c37b99e8bfa9256f12015152439bf4e5ebbb4 (diff)
com::sun::star->css in sc
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
Diffstat (limited to 'sc/source/filter/inc/xcl97esc.hxx')
-rw-r--r--sc/source/filter/inc/xcl97esc.hxx33
1 files changed, 16 insertions, 17 deletions
diff --git a/sc/source/filter/inc/xcl97esc.hxx b/sc/source/filter/inc/xcl97esc.hxx
index 76e09398976a..3c02a9500ad0 100644
--- a/sc/source/filter/inc/xcl97esc.hxx
+++ b/sc/source/filter/inc/xcl97esc.hxx
@@ -57,9 +57,9 @@ class EscherExHostAppData;
class ShapeInteractionHelper
{
public:
- static XclExpShapeObj* CreateShapeObj( XclExpObjectManager& rObjMgr, const ::com::sun::star::uno::Reference<
- ::com::sun::star::drawing::XShape >& xShape, ScDocument* pDoc );
- static void PopulateShapeInteractionInfo( XclExpObjectManager& rObjMgr, const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& xShape, EscherExHostAppData& rHostAppData );
+ static XclExpShapeObj* CreateShapeObj( XclExpObjectManager& rObjMgr, const css::uno::Reference<
+ css::drawing::XShape >& xShape, ScDocument* pDoc );
+ static void PopulateShapeInteractionInfo( XclExpObjectManager& rObjMgr, const css::uno::Reference< css::drawing::XShape >& xShape, EscherExHostAppData& rHostAppData );
};
class XclEscherEx : public EscherEx, protected XclExpRoot
@@ -92,7 +92,7 @@ public:
XclExpDffAnchorBase* CreateDffAnchor( const SdrObject& rSdrObj ) const;
virtual EscherExHostAppData* StartShape(
- const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape>& rxShape,
+ const css::uno::Reference< css::drawing::XShape>& rxShape,
const Rectangle* pChildAnchor ) override;
virtual void EndShape( sal_uInt16 nShapeType, sal_uInt32 nShapeID ) override;
virtual EscherExHostAppData* EnterAdditionalTextGroup() override;
@@ -102,35 +102,34 @@ public:
/** Creates an OCX form control OBJ record from the passed form control.
@descr Writes the form control data to the 'Ctls' stream. */
std::unique_ptr<XclExpOcxControlObj> CreateOCXCtrlObj(
- ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape,
+ css::uno::Reference< css::drawing::XShape > xShape,
const Rectangle* pChildAnchor );
private:
tools::SvRef<SotStorageStream> mxCtlsStrm; /// The 'Ctls' stream.
/** Creates a TBX form control OBJ record from the passed form control. */
std::unique_ptr<XclExpTbxControlObj> CreateTBXCtrlObj(
- ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape,
+ css::uno::Reference< css::drawing::XShape > xShape,
const Rectangle* pChildAnchor );
private:
/** Tries to get the name of a Basic macro from a control. */
void ConvertTbxMacro(
XclExpTbxControlObj& rTbxCtrlObj,
- ::com::sun::star::uno::Reference<
- ::com::sun::star::awt::XControlModel > xCtrlModel );
+ css::uno::Reference< css::awt::XControlModel > xCtrlModel );
void DeleteCurrAppData();
private:
- XclExpObjectManager& mrObjMgr;
- std::stack< std::pair< XclObj*, XclEscherHostAppData* > > aStack;
- XclObj* pCurrXclObj;
- XclEscherHostAppData* pCurrAppData;
- XclEscherClientData* pTheClientData; // always the same
- XclEscherClientTextbox* pAdditionalText;
- sal_uInt16 nAdditionalText;
- sal_uInt32 mnNextKey;
- bool mbIsRootDff;
+ XclExpObjectManager& mrObjMgr;
+ std::stack< std::pair< XclObj*, XclEscherHostAppData* > > aStack;
+ XclObj* pCurrXclObj;
+ XclEscherHostAppData* pCurrAppData;
+ XclEscherClientData* pTheClientData; // always the same
+ XclEscherClientTextbox* pAdditionalText;
+ sal_uInt16 nAdditionalText;
+ sal_uInt32 mnNextKey;
+ bool mbIsRootDff;
};
// --- class XclEscherHostAppData ------------------------------------