summaryrefslogtreecommitdiff
path: root/include/svx/hdft.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/hdft.hxx')
-rw-r--r--include/svx/hdft.hxx20
1 files changed, 15 insertions, 5 deletions
diff --git a/include/svx/hdft.hxx b/include/svx/hdft.hxx
index fcf59b5439be..1569f9ed73d9 100644
--- a/include/svx/hdft.hxx
+++ b/include/svx/hdft.hxx
@@ -37,11 +37,15 @@ namespace svx
// class SvxHFPage ------------------------------------------------------
-class SVX_DLLPUBLIC SvxHFPage: public SfxTabPage
+class SVX_DLLPUBLIC SvxHFPage : public SfxTabPage
{
using TabPage::ActivatePage;
using TabPage::DeactivatePage;
+private:
+ //UUUU
+ void EnableDrawingLayerFillStyles(bool bNew) { mbEnableDrawingLayerFillStyles = bNew; }
+
public:
virtual bool FillItemSet( SfxItemSet* rOutSet ) SAL_OVERRIDE;
@@ -49,8 +53,12 @@ public:
virtual ~SvxHFPage();
- void DisableDeleteQueryBox() { bDisableQueryBox = true; }
- void EnableBackgroundSelector( bool bNew ) { bEnableBackgroundSelector = bNew; }
+ void DisableDeleteQueryBox() { mbDisableQueryBox = true; }
+ void EnableBackgroundSelector(bool bNew) { mbEnableBackgroundSelector = bNew; }
+
+ //UUUU
+ virtual void PageCreated(const SfxAllItemSet&) SAL_OVERRIDE;
+
void EnableDynamicSpacing();
protected:
@@ -78,8 +86,10 @@ protected:
sal_uInt16 nId;
SfxItemSet* pBBSet;
- bool bDisableQueryBox;
- bool bEnableBackgroundSelector;
+ /// bitfield
+ bool mbDisableQueryBox : 1;
+ bool mbEnableBackgroundSelector : 1;
+ bool mbEnableDrawingLayerFillStyles : 1;
void InitHandler();
DECL_LINK( TurnOnHdl, CheckBox*);