diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-07-16 19:31:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-17 15:45:03 +0100 |
commit | 3bbcae718be74a2e47effeec99655f53f97bed90 (patch) | |
tree | 21006ba32834f25dd49c46f9411156edc70dc046 /sw/source/ui/inc/wrap.hxx | |
parent | 47e2359ded050c5e179c91ee3485c0ea87cea0d9 (diff) |
convert frame/graphic wrap page to .ui
Change-Id: I931214850dea1442fa0a4e3314dd339aaff5a789
Diffstat (limited to 'sw/source/ui/inc/wrap.hxx')
-rw-r--r-- | sw/source/ui/inc/wrap.hxx | 40 |
1 files changed, 15 insertions, 25 deletions
diff --git a/sw/source/ui/inc/wrap.hxx b/sw/source/ui/inc/wrap.hxx index 684ef6cca0d9..7190ab9acc77 100644 --- a/sw/source/ui/inc/wrap.hxx +++ b/sw/source/ui/inc/wrap.hxx @@ -48,34 +48,24 @@ public: class SwWrapTabPage: public SfxTabPage { // WRAPPING - FixedLine aWrapFLC; - ImageRadioButton aNoWrapRB; - ImageRadioButton aWrapLeftRB; - ImageRadioButton aWrapRightRB; - ImageRadioButton aWrapParallelRB; - ImageRadioButton aWrapThroughRB; - ImageRadioButton aIdealWrapRB; + RadioButton* m_pNoWrapRB; + RadioButton* m_pWrapLeftRB; + RadioButton* m_pWrapRightRB; + RadioButton* m_pWrapParallelRB; + RadioButton* m_pWrapThroughRB; + RadioButton* m_pIdealWrapRB; // MARGIN - FixedLine aMarginFL; - FixedText aLeftMarginFT; - MetricField aLeftMarginED; - FixedText aRightMarginFT; - MetricField aRightMarginED; - FixedText aTopMarginFT; - MetricField aTopMarginED; - FixedText aBottomMarginFT; - MetricField aBottomMarginED; + MetricField* m_pLeftMarginED; + MetricField* m_pRightMarginED; + MetricField* m_pTopMarginED; + MetricField* m_pBottomMarginED; // OPTIONS - FixedLine aOptionsSepFL; - FixedLine aOptionsFL; - CheckBox aWrapAnchorOnlyCB; - CheckBox aWrapTransparentCB; - CheckBox aWrapOutlineCB; - CheckBox aWrapOutsideCB; - - ImageList aWrapIL; + CheckBox* m_pWrapAnchorOnlyCB; + CheckBox* m_pWrapTransparentCB; + CheckBox* m_pWrapOutlineCB; + CheckBox* m_pWrapOutsideCB; sal_uInt16 nOldLeftMargin; sal_uInt16 nOldRightMargin; @@ -104,7 +94,7 @@ class SwWrapTabPage: public SfxTabPage virtual void DataChanged( const DataChangedEvent& rDCEvt ); DECL_LINK( RangeModifyHdl, MetricField * ); - DECL_LINK( WrapTypeHdl, ImageRadioButton * ); + DECL_LINK( WrapTypeHdl, RadioButton * ); DECL_LINK(ContourHdl, void *); using SfxTabPage::ActivatePage; |