diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-10-19 11:08:00 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-10-19 11:08:00 +0000 |
commit | 32fb802dd047ffc1ad34b760d7f9b5e803e52daa (patch) | |
tree | 2d6a975216ba9d7efb3adf6c7ac0490776105981 /svx/inc | |
parent | a8d0bc40192468d61d86c87af31e47f737d84c89 (diff) |
INTEGRATION: CWS cov2src (1.8.82); FILE MERGED
2005/10/18 14:14:12 rt 1.8.82.1: #126234# Join MWS COV680 m4 into SRC680
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/sdr/contact/objectcontact.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/svx/inc/svx/sdr/contact/objectcontact.hxx b/svx/inc/svx/sdr/contact/objectcontact.hxx index 20b244babff2..d4870105429f 100644 --- a/svx/inc/svx/sdr/contact/objectcontact.hxx +++ b/svx/inc/svx/sdr/contact/objectcontact.hxx @@ -4,9 +4,9 @@ * * $RCSfile: objectcontact.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 19:57:04 $ + * last change: $Author: rt $ $Date: 2005-10-19 12:08:00 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -105,6 +105,9 @@ namespace sdr // Initialisation is with sal_False of course. unsigned mbDrawHierarchyValid : 1; + // ## test for preview renderer + unsigned mbIsPreviewRenderer : 1; + // method to create a ObjectAnimator. Needs to give a result. virtual sdr::animation::ObjectAnimator* CreateObjectAnimator(); @@ -219,6 +222,9 @@ namespace sdr // check if buffering of MasterPages is allowed. Default is sal_False. virtual sal_Bool IsMasterPageBufferingAllowed() const; + + // check if this is a preview renderer. Default is sal_False. + bool IsPreviewRenderer() const { return mbIsPreviewRenderer; } }; } // end of namespace contact } // end of namespace sdr |