diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-01-11 20:42:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-01-12 12:13:38 +0000 |
commit | 4a478876e2ce355072c0865f0008807f9d9a796a (patch) | |
tree | 93cc5bb86d949df5b59be350f8c3f2dfb90f5aba /sw/source/ui/table/tablepg.hxx | |
parent | b3782fad3be3319775d94447a27e8fdf16ad08e7 (diff) |
split out table textflow page and adapt code
Change-Id: Icc32df960b7a1d794ce5342daa594344d9279477
Diffstat (limited to 'sw/source/ui/table/tablepg.hxx')
-rw-r--r-- | sw/source/ui/table/tablepg.hxx | 46 |
1 files changed, 21 insertions, 25 deletions
diff --git a/sw/source/ui/table/tablepg.hxx b/sw/source/ui/table/tablepg.hxx index 9258b93a432e..4e28ce690324 100644 --- a/sw/source/ui/table/tablepg.hxx +++ b/sw/source/ui/table/tablepg.hxx @@ -158,31 +158,27 @@ public: class SwTextFlowPage : public SfxTabPage { - FixedLine aFlowFL; - CheckBox aPgBrkCB; - RadioButton aPgBrkRB; - RadioButton aColBrkRB; - RadioButton aPgBrkBeforeRB; - RadioButton aPgBrkAfterRB; - CheckBox aPageCollCB; - ListBox aPageCollLB; - FixedText aPageNoFT; - NumericField aPageNoNF; - CheckBox aSplitCB; - TriStateBox aSplitRowCB; - CheckBox aKeepCB; - CheckBox aHeadLineCB; - FixedText aRepeatHeaderFT; // "dummy" to build before and after FT - FixedText aRepeatHeaderBeforeFT; - NumericField aRepeatHeaderNF; - FixedText aRepeatHeaderAfterFT; - TextControlCombo aRepeatHeaderCombo; - FixedText aTextDirectionFT; - ListBox aTextDirectionLB; - - FixedLine aVertOrientFL; - FixedText aVertOrientFT; - ListBox aVertOrientLB; + CheckBox* m_pPgBrkCB; + + RadioButton* m_pPgBrkRB; + RadioButton* m_pColBrkRB; + + RadioButton* m_pPgBrkBeforeRB; + RadioButton* m_pPgBrkAfterRB; + + CheckBox* m_pPageCollCB; + ListBox* m_pPageCollLB; + FixedText* m_pPageNoFT; + NumericField* m_pPageNoNF; + CheckBox* m_pSplitCB; + TriStateBox* m_pSplitRowCB; + CheckBox* m_pKeepCB; + CheckBox* m_pHeadLineCB; + NumericField* m_pRepeatHeaderNF; + VclContainer* m_pRepeatHeaderCombo; + ListBox* m_pTextDirectionLB; + + ListBox* m_pVertOrientLB; SwWrtShell* pShell; |