diff options
author | Steve Yin <steve_y@apache.org> | 2013-11-28 12:09:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-11-28 13:32:30 +0000 |
commit | cc5518ca61b209408a9d5262bbdcc39efccdd72d (patch) | |
tree | 23f4be456f58a52ad53a3aaab82894b91a4f797d /sd/inc | |
parent | 0a05120e1a08c29b3495878d2a3b5fb30d344c6c (diff) |
Integrate branch of IAccessible2
Change-Id: Ibf3be46e8619c2dce9636e8a90a6703f3e28ba33
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/drawdoc.hxx | 11 | ||||
-rw-r--r-- | sd/inc/glob.hxx | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index d8e2de742f37..695cf6bbee11 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -141,6 +141,16 @@ namespace sd class SdDrawDocument : public FmFormModel { private: + OUString msDocAccTitle; +public: + virtual void setDocAccTitle( const OUString& rTitle ) { msDocAccTitle = rTitle; } + virtual const OUString getDocAccTitle() const { return msDocAccTitle; } +private: + sal_Bool bReadOnly; +public: + virtual void setDocReadOnly( sal_Bool b){ bReadOnly = b; } + virtual sal_Bool getDocReadOnly() const { return bReadOnly; } +private: ::sd::Outliner* mpOutliner; ///< local outliner for outline mode ::sd::Outliner* mpInternalOutliner; ///< internal outliner for creation of text objects Timer* mpWorkStartupTimer; @@ -654,6 +664,7 @@ private: virtual void PageListChanged(); virtual void MasterPageListChanged(); + virtual ImageMap* GetImageMapForObject(SdrObject* pObj); }; namespace sd diff --git a/sd/inc/glob.hxx b/sd/inc/glob.hxx index f5e1565f9086..42617744e33e 100644 --- a/sd/inc/glob.hxx +++ b/sd/inc/glob.hxx @@ -30,6 +30,7 @@ #define SD_IF_SDDRAWDOCSHELL SFX_INTERFACE_SD_START + 1 #define SD_IF_SDVIEWSHELL SFX_INTERFACE_SD_START + 2 #define SD_IF_SDDRAWVIEWSHELL SFX_INTERFACE_SD_START + 3 +#define SD_IF_SDSLIDEVIEWSHELL SFX_INTERFACE_SD_START + 4 #define SD_IF_SDOUTLINEVIEWSHELL SFX_INTERFACE_SD_START + 5 #define SD_IF_SDDRAWSTDOBJECTBAR SFX_INTERFACE_SD_START + 6 #define SD_IF_SDDRAWTEXTOBJECTBAR SFX_INTERFACE_SD_START + 7 |