diff options
Diffstat (limited to 'sw/inc/frmfmt.hxx')
-rw-r--r-- | sw/inc/frmfmt.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx index fafa003e423f..c9f869e6e1cd 100644 --- a/sw/inc/frmfmt.hxx +++ b/sw/inc/frmfmt.hxx @@ -24,6 +24,7 @@ #include <tools/gen.hxx> #include <format.hxx> #include "swdllapi.h" +#include <list> class SwFlyFrame; class SwAnchoredObject; @@ -248,6 +249,7 @@ public: class SwDrawFrameFormat; class SwDrawContact; +class SdrTextObj; namespace sw { @@ -321,6 +323,12 @@ namespace sw CreatePortionHint(SwDrawContact** ppContact) : m_ppContact(ppContact) {}; virtual ~CreatePortionHint() override; }; + struct SW_DLLPUBLIC CollectTextObjectsHint final : SfxHint + { + std::list<SdrTextObj*>& m_rTextObjects; + CollectTextObjectsHint(std::list<SdrTextObj*>& rTextObjects) : m_rTextObjects(rTextObjects) {}; + virtual ~CollectTextObjectsHint() override; + }; } class SW_DLLPUBLIC SwDrawFrameFormat: public SwFrameFormat |