diff options
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r-- | sc/inc/appoptio.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index af637c5dbdef..d4beeec78c06 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -76,6 +76,10 @@ public: void SetShowSharedDocumentWarning( bool bNew ) { mbShowSharedDocumentWarning = bNew; } bool GetShowSharedDocumentWarning() const { return mbShowSharedDocumentWarning; } + + void SetClickChangeRotation( bool bNew ) { bClickChangeRotation = bNew; } + bool IsClickChangeRotation() const { return bClickChangeRotation; } + ScOptionsUtil::KeyBindingType GetKeyBindingType() const { return meKeyBindingType; } void SetKeyBindingType( ScOptionsUtil::KeyBindingType e ) { meKeyBindingType = e; } @@ -104,6 +108,7 @@ private: sal_Int32 nDefaultObjectSizeWidth; sal_Int32 nDefaultObjectSizeHeight; bool mbShowSharedDocumentWarning; + bool bClickChangeRotation; ScOptionsUtil::KeyBindingType meKeyBindingType; bool mbLinksInsertedLikeMSExcel; }; |