diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-02-19 14:38:53 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-02-23 10:10:28 +0100 |
commit | 40e3569a08d89fc6cf91cfc3a88d1049f25533c9 (patch) | |
tree | f3944bb088e7ff6b695964216c80f4f5a1b20ac0 /include/editeng | |
parent | 8632db588d405f10506925ffd2db369691e5bc71 (diff) |
ImpEditEngine::UpdateViews: need to go via Invalidate() for tiled rendering
This makes typed characters appear as you type it (and not only after
the editing of the shape text is finished) in Impress.
Change-Id: Id47efe8223ddfdbad36f436366c9c8c8e0cb45f4
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/editview.hxx | 3 | ||||
-rw-r--r-- | include/editeng/outliner.hxx | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx index 3f7c637f153f..439f63b3fb78 100644 --- a/include/editeng/editview.hxx +++ b/include/editeng/editview.hxx @@ -169,6 +169,9 @@ public: void SetBackgroundColor( const Color& rColor ); Color GetBackgroundColor() const; + void setTiledRendering(bool bTiledRendering); + bool isTiledRendering(); + void SetControlWord( sal_uInt32 nWord ); sal_uInt32 GetControlWord() const; diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx index 075fdebf148f..d63d884b7ea4 100644 --- a/include/editeng/outliner.hxx +++ b/include/editeng/outliner.hxx @@ -257,6 +257,9 @@ public: void SetBackgroundColor( const Color& rColor ); Color GetBackgroundColor(); + /// Set if we are doing tiled rendering. + void setTiledRendering(bool bTiledRendering); + SfxItemSet GetAttribs(); void Cut(); |