Convert page header/footer to new widget UI

* The widget UI needs further work for better display, but all elements are there
* Fix First page toggle with header/footer on/off
* Calculations for Edit button position in Calc discarded.
* Some comments in German translated
* Need to address helpID's

Change-Id: Iab4eec4fb2497d17c8eb1ab2bab7c31b028af7b0
Reviewed-on: https://gerrit.libreoffice.org/2478
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Olivier Hallot
2013-03-01 00:44:20 -03:00
committed by Caolán McNamara
parent 35a2f39de7
commit 5c2d43d25b
12 changed files with 760 additions and 693 deletions

View File

@@ -89,7 +89,6 @@ $(eval $(call gb_SrsTarget_add_files,sc/res,\
sc/source/ui/docshell/tpstat.src \ sc/source/ui/docshell/tpstat.src \
sc/source/ui/optdlg/calcoptionsdlg.src \ sc/source/ui/optdlg/calcoptionsdlg.src \
sc/source/ui/pagedlg/pagedlg.src \ sc/source/ui/pagedlg/pagedlg.src \
sc/source/ui/pagedlg/tphf.src \
sc/source/ui/pagedlg/hfedtdlg.src \ sc/source/ui/pagedlg/hfedtdlg.src \
sc/source/ui/styleui/scstyles.src \ sc/source/ui/styleui/scstyles.src \
sc/source/ui/styleui/styledlg.src \ sc/source/ui/styleui/styledlg.src \

View File

@@ -981,7 +981,7 @@
#define RID_SCDLG_HFEDIT_ALL (SC_DIALOGS_START + 51) #define RID_SCDLG_HFEDIT_ALL (SC_DIALOGS_START + 51)
#define RID_SCDLG_HFED_HEADER (SC_DIALOGS_START + 52) #define RID_SCDLG_HFED_HEADER (SC_DIALOGS_START + 52)
#define RID_SCDLG_HFED_FOOTER (SC_DIALOGS_START + 53) #define RID_SCDLG_HFED_FOOTER (SC_DIALOGS_START + 53)
#define RID_SCBTN_HFEDIT (SC_DIALOGS_START + 54)
#define RID_SCPAGE_CALC (SC_DIALOGS_START + 56) #define RID_SCPAGE_CALC (SC_DIALOGS_START + 56)
#define RID_SCDLG_NAVIGATOR (SC_DIALOGS_START + 57) #define RID_SCDLG_NAVIGATOR (SC_DIALOGS_START + 57)
#define RID_SCDLG_TABOP (SC_DIALOGS_START + 58) #define RID_SCDLG_TABOP (SC_DIALOGS_START + 58)

View File

@@ -20,7 +20,6 @@
#ifndef SC_TPHF_HXX #ifndef SC_TPHF_HXX
#define SC_TPHF_HXX #define SC_TPHF_HXX
#include <svx/hdft.hxx> #include <svx/hdft.hxx>
class ScStyleDlg; class ScStyleDlg;
@@ -40,7 +39,6 @@ public:
protected: protected:
ScHFPage( Window* pParent, ScHFPage( Window* pParent,
sal_uInt16 nResId,
const SfxItemSet& rSet, const SfxItemSet& rSet,
sal_uInt16 nSetId ); sal_uInt16 nSetId );
@@ -50,9 +48,9 @@ protected:
virtual int DeactivatePage( SfxItemSet* pSet = 0 ); virtual int DeactivatePage( SfxItemSet* pSet = 0 );
private: private:
PushButton aBtnEdit; PushButton* m_pBtnEdit;
SfxItemSet aDataSet; SfxItemSet aDataSet;
String aStrPageStyle; OUString aStrPageStyle;
sal_uInt16 nPageUsage; sal_uInt16 nPageUsage;
const ScStyleDlg* pStyleDlg; const ScStyleDlg* pStyleDlg;

View File

@@ -49,29 +49,22 @@
// class ScHFPage // class ScHFPage
//================================================================== //==================================================================
ScHFPage::ScHFPage( Window* pParent, sal_uInt16 nResId, ScHFPage::ScHFPage( Window* pParent, const SfxItemSet& rSet, sal_uInt16 nSetId )
const SfxItemSet& rSet, sal_uInt16 nSetId )
: SvxHFPage ( pParent, nResId, rSet, nSetId ), : SvxHFPage ( pParent, rSet, nSetId ),
aBtnEdit ( this, ScResId( RID_SCBTN_HFEDIT ) ),
aDataSet ( *rSet.GetPool(), aDataSet ( *rSet.GetPool(),
ATTR_PAGE_HEADERLEFT, ATTR_PAGE_FOOTERRIGHT, ATTR_PAGE_HEADERLEFT, ATTR_PAGE_FOOTERRIGHT,
ATTR_PAGE, ATTR_PAGE, 0 ), ATTR_PAGE, ATTR_PAGE, 0 ),
nPageUsage ( (sal_uInt16)SVX_PAGE_ALL ), nPageUsage ( (sal_uInt16)SVX_PAGE_ALL ),
pStyleDlg ( NULL ) pStyleDlg ( NULL )
{ {
get(m_pBtnEdit,"buttonEdit");
SetExchangeSupport(); SetExchangeSupport();
SfxViewShell* pSh = SfxViewShell::Current(); SfxViewShell* pSh = SfxViewShell::Current();
ScTabViewShell* pViewSh = PTR_CAST(ScTabViewShell,pSh); ScTabViewShell* pViewSh = PTR_CAST(ScTabViewShell,pSh);
Point aPos( aBackgroundBtn.GetPosPixel() ); m_pBtnEdit->Show();
// aBackgroundBtn position not changed anymore
aPos.X() += aBackgroundBtn.GetSizePixel().Width();
aPos.X() += LogicToPixel( Size(3,0), MAP_APPFONT ).Width();
aBtnEdit.SetPosPixel( aPos );
aBtnEdit.Show();
aDataSet.Put( rSet ); aDataSet.Put( rSet );
@@ -83,15 +76,15 @@ ScHFPage::ScHFPage( Window* pParent, sal_uInt16 nResId,
aStrPageStyle = pDoc->GetPageStyle( pViewData->GetTabNo() ); aStrPageStyle = pDoc->GetPageStyle( pViewData->GetTabNo() );
} }
aBtnEdit.SetClickHdl ( LINK( this, ScHFPage, BtnHdl ) ); m_pBtnEdit->SetClickHdl ( LINK( this, ScHFPage, BtnHdl ) );
aTurnOnBox.SetClickHdl ( LINK( this, ScHFPage, TurnOnHdl ) ); m_pTurnOnBox->SetClickHdl ( LINK( this, ScHFPage, TurnOnHdl ) );
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
aBtnEdit.SetHelpId( HID_SC_HEADER_EDIT ); m_pBtnEdit->SetHelpId( HID_SC_HEADER_EDIT );
else else
aBtnEdit.SetHelpId( HID_SC_FOOTER_EDIT ); m_pBtnEdit->SetHelpId( HID_SC_FOOTER_EDIT );
aBtnEdit.SetAccessibleRelationMemberOf(&aFrm); m_pBtnEdit->SetAccessibleRelationMemberOf(m_pFrm);
} }
//------------------------------------------------------------------ //------------------------------------------------------------------
@@ -173,12 +166,12 @@ void ScHFPage::DeactivatePage()
IMPL_LINK_NOARG(ScHFPage, TurnOnHdl) IMPL_LINK_NOARG(ScHFPage, TurnOnHdl)
{ {
SvxHFPage::TurnOnHdl( &aTurnOnBox ); SvxHFPage::TurnOnHdl( m_pTurnOnBox );
if ( aTurnOnBox.IsChecked() ) if ( m_pTurnOnBox->IsChecked() )
aBtnEdit.Enable(); m_pBtnEdit->Enable();
else else
aBtnEdit.Disable(); m_pBtnEdit->Disable();
return 0; return 0;
} }
@@ -188,10 +181,9 @@ IMPL_LINK_NOARG(ScHFPage, TurnOnHdl)
IMPL_LINK_NOARG(ScHFPage, BtnHdl) IMPL_LINK_NOARG(ScHFPage, BtnHdl)
{ {
// Wenn der Bearbeiten-Dialog direkt aus dem Click-Handler des Buttons // When the Edit-Dialog is directly called up from the Button's Click-Handler,
// aufgerufen wird, funktioniert im Bearbeiten-Dialog unter OS/2 das // the GraveFocus from the Edit-Dialog under OS/2 doesn't work.(Bug #41805#).
// GrabFocus nicht (Bug #41805#). // With the new StarView, this workaround should be again considered!
// Mit dem neuen StarView sollte dieser Workaround wieder raus koennen!
Application::PostUserEvent( LINK( this, ScHFPage, HFEditHdl ) ); Application::PostUserEvent( LINK( this, ScHFPage, HFEditHdl ) );
return 0; return 0;
@@ -207,8 +199,8 @@ IMPL_LINK_NOARG(ScHFPage, HFEditHdl)
return 0; return 0;
} }
if ( aCntSharedBox.IsEnabled() if ( m_pCntSharedBox->IsEnabled()
&& !aCntSharedBox.IsChecked() ) && !m_pCntSharedBox->IsChecked() )
{ {
sal_uInt16 nResId = ( nId == SID_ATTR_PAGE_HEADERSET ) sal_uInt16 nResId = ( nId == SID_ATTR_PAGE_HEADERSET )
? RID_SCDLG_HFED_HEADER ? RID_SCDLG_HFED_HEADER
@@ -227,9 +219,9 @@ IMPL_LINK_NOARG(ScHFPage, HFEditHdl)
} }
else else
{ {
String aText; OUString aText;
SfxNoLayoutSingleTabDialog* pDlg = new SfxNoLayoutSingleTabDialog( this, aDataSet, 42 ); SfxNoLayoutSingleTabDialog* pDlg = new SfxNoLayoutSingleTabDialog( this, aDataSet, 42 );
sal_Bool bRightPage = aCntSharedBox.IsChecked() sal_Bool bRightPage = m_pCntSharedBox->IsChecked()
|| ( SVX_PAGE_LEFT != SvxPageUsage(nPageUsage) ); || ( SVX_PAGE_LEFT != SvxPageUsage(nPageUsage) );
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
@@ -252,11 +244,8 @@ IMPL_LINK_NOARG(ScHFPage, HFEditHdl)
SvxNumType eNumType = ((const SvxPageItem&)aDataSet.Get(ATTR_PAGE)).GetNumType(); SvxNumType eNumType = ((const SvxPageItem&)aDataSet.Get(ATTR_PAGE)).GetNumType();
((ScHFEditPage*)pDlg->GetTabPage())->SetNumType(eNumType); ((ScHFEditPage*)pDlg->GetTabPage())->SetNumType(eNumType);
aText.AppendAscii(RTL_CONSTASCII_STRINGPARAM( " (" )); aText += " (" + ScGlobal::GetRscString( STR_PAGESTYLE );
aText += ScGlobal::GetRscString( STR_PAGESTYLE ); aText += ": " + aStrPageStyle + ")";
aText.AppendAscii(RTL_CONSTASCII_STRINGPARAM( ": " ));
aText += aStrPageStyle;
aText += ')';
pDlg->SetText( aText ); pDlg->SetText( aText );
@@ -276,7 +265,7 @@ IMPL_LINK_NOARG(ScHFPage, HFEditHdl)
//================================================================== //==================================================================
ScHeaderPage::ScHeaderPage( Window* pParent, const SfxItemSet& rSet ) ScHeaderPage::ScHeaderPage( Window* pParent, const SfxItemSet& rSet )
: ScHFPage( pParent, RID_SVXPAGE_HEADER, rSet, SID_ATTR_PAGE_HEADERSET ) : ScHFPage( pParent, rSet, SID_ATTR_PAGE_HEADERSET )
{ {
} }
@@ -299,7 +288,7 @@ sal_uInt16* ScHeaderPage::GetRanges()
//================================================================== //==================================================================
ScFooterPage::ScFooterPage( Window* pParent, const SfxItemSet& rSet ) ScFooterPage::ScFooterPage( Window* pParent, const SfxItemSet& rSet )
: ScHFPage( pParent, RID_SVXPAGE_FOOTER, rSet, SID_ATTR_PAGE_FOOTERSET ) : ScHFPage( pParent, rSet, SID_ATTR_PAGE_FOOTERSET )
{ {
} }

View File

@@ -1,28 +0,0 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "sc.hrc"
PushButton RID_SCBTN_HFEDIT
{
TabStop = TRUE ;
Hide = TRUE ;
Pos = MAP_APPFONT ( 0 , 0 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text [ en-US ] = "~Edit..." ;
};

View File

@@ -55,7 +55,6 @@ $(eval $(call gb_SrsTarget_add_files,svx/res,\
svx/source/dialog/docrecovery.src \ svx/source/dialog/docrecovery.src \
svx/source/dialog/fontwork.src \ svx/source/dialog/fontwork.src \
svx/source/dialog/frmsel.src \ svx/source/dialog/frmsel.src \
svx/source/dialog/hdft.src \
svx/source/dialog/imapdlg.src \ svx/source/dialog/imapdlg.src \
svx/source/dialog/langbox.src \ svx/source/dialog/langbox.src \
svx/source/dialog/language.src \ svx/source/dialog/language.src \

View File

@@ -14,6 +14,7 @@ $(eval $(call gb_UI_add_uifiles,svx,\
svx/uiconfig/ui/asianphoneticguidedialog \ svx/uiconfig/ui/asianphoneticguidedialog \
svx/uiconfig/ui/chineseconversiondialog \ svx/uiconfig/ui/chineseconversiondialog \
svx/uiconfig/ui/compressgraphicdialog \ svx/uiconfig/ui/compressgraphicdialog \
svx/uiconfig/ui/headfootformatpage \
svx/uiconfig/ui/redlinecontrol \ svx/uiconfig/ui/redlinecontrol \
svx/uiconfig/ui/redlinefilterpage \ svx/uiconfig/ui/redlinefilterpage \
svx/uiconfig/ui/redlineviewpage \ svx/uiconfig/ui/redlineviewpage \

View File

@@ -57,25 +57,31 @@ protected:
virtual void ActivatePage( const SfxItemSet& rSet ); virtual void ActivatePage( const SfxItemSet& rSet );
virtual int DeactivatePage( SfxItemSet* pSet = 0 ); virtual int DeactivatePage( SfxItemSet* pSet = 0 );
SvxHFPage( Window* pParent, sal_uInt16 nResId, const SfxItemSet& rSet, SvxHFPage( Window* pParent, const SfxItemSet& rSet, sal_uInt16 nSetId );
sal_uInt16 nSetId );
FixedLine aFrm; VclFrame* m_pFrm;
CheckBox aTurnOnBox; FixedText* m_pPageLbl;
CheckBox aCntSharedBox; CheckBox* m_pTurnOnBox;
CheckBox aCntSharedFirstBox; CheckBox* m_pCntSharedBox;
FixedText aLMLbl; CheckBox* m_pCntSharedFirstBox;
MetricField aLMEdit; FixedText* m_pLMLbl;
FixedText aRMLbl; MetricField* m_pLMEdit;
MetricField aRMEdit; FixedText* m_pRMLbl;
FixedText aDistFT; MetricField* m_pRMEdit;
MetricField aDistEdit; FixedText* m_pDistFT;
CheckBox aDynSpacingCB; MetricField* m_pDistEdit;
FixedText aHeightFT; CheckBox* m_pDynSpacingCB;
MetricField aHeightEdit; FixedText* m_pHeightFT;
CheckBox aHeightDynBtn; MetricField* m_pHeightEdit;
SvxPageWindow aBspWin; CheckBox* m_pHeightDynBtn;
PushButton aBackgroundBtn; SvxPageWindow* m_pBspWin;
PushButton* m_pBackgroundBtn;
FixedText* m_pFooterOn;
FixedText* m_pFooterLbl;
FixedText* m_pHeaderOn;
FixedText* m_pHeaderLbl;
FixedText* m_pMsg;
sal_uInt16 nId; sal_uInt16 nId;
SfxItemSet* pBBSet; SfxItemSet* pBBSet;

View File

@@ -28,7 +28,7 @@
#include <sfx2/sfxsids.hrc> #include <sfx2/sfxsids.hrc>
#include <svx/svxids.hrc> #include <svx/svxids.hrc>
#include <svx/dialogs.hrc> #include <svx/dialogs.hrc>
#include "hdft.hrc"
#include <svl/intitem.hxx> #include <svl/intitem.hxx>
#define _SVX_HDFT_CXX #define _SVX_HDFT_CXX
@@ -139,7 +139,7 @@ SfxTabPage* SvxFooterPage::Create( Window* pParent, const SfxItemSet& rSet )
SvxHeaderPage::SvxHeaderPage( Window* pParent, const SfxItemSet& rAttr ) : SvxHeaderPage::SvxHeaderPage( Window* pParent, const SfxItemSet& rAttr ) :
SvxHFPage( pParent, RID_SVXPAGE_HEADER, rAttr, SID_ATTR_PAGE_HEADERSET ) SvxHFPage( pParent, rAttr, SID_ATTR_PAGE_HEADERSET )
{ {
} }
@@ -148,69 +148,86 @@ SvxHeaderPage::SvxHeaderPage( Window* pParent, const SfxItemSet& rAttr ) :
SvxFooterPage::SvxFooterPage( Window* pParent, const SfxItemSet& rAttr ) : SvxFooterPage::SvxFooterPage( Window* pParent, const SfxItemSet& rAttr ) :
SvxHFPage( pParent, RID_SVXPAGE_FOOTER, rAttr, SID_ATTR_PAGE_FOOTERSET ) SvxHFPage( pParent, rAttr, SID_ATTR_PAGE_FOOTERSET )
{ {
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
SvxHFPage::SvxHFPage( Window* pParent, sal_uInt16 nResId, const SfxItemSet& rAttr, sal_uInt16 nSetId ) : SvxHFPage::SvxHFPage( Window* pParent, const SfxItemSet& rSet, sal_uInt16 nSetId ) :
SfxTabPage( pParent, SVX_RES( nResId ), rAttr ),
aFrm ( this, SVX_RES( FL_FRAME ) ),
aTurnOnBox ( this, SVX_RES( CB_TURNON ) ),
aCntSharedBox ( this, SVX_RES( CB_SHARED ) ),
aCntSharedFirstBox ( this, SVX_RES( CB_SHARED_FIRST ) ),
aLMLbl ( this, SVX_RES( FT_LMARGIN ) ),
aLMEdit ( this, SVX_RES( ED_LMARGIN ) ),
aRMLbl ( this, SVX_RES( FT_RMARGIN ) ),
aRMEdit ( this, SVX_RES( ED_RMARGIN ) ),
aDistFT ( this, SVX_RES( FT_DIST ) ),
aDistEdit ( this, SVX_RES( ED_DIST ) ),
aDynSpacingCB ( this, SVX_RES( CB_DYNSPACING ) ),
aHeightFT ( this, SVX_RES( FT_HEIGHT ) ),
aHeightEdit ( this, SVX_RES( ED_HEIGHT ) ),
aHeightDynBtn ( this, SVX_RES( CB_HEIGHT_DYN ) ),
aBspWin ( this, SVX_RES( WN_BSP ) ),
aBackgroundBtn ( this, SVX_RES( BTN_EXTRAS ) ),
SfxTabPage( pParent, "HFFormatPage", "svx/ui/headfootformatpage.ui", rSet ),
nId ( nSetId ), nId ( nSetId ),
pBBSet ( NULL ), pBBSet ( NULL ),
bDisableQueryBox ( sal_False ), bDisableQueryBox ( sal_False ),
bEnableBackgroundSelector ( sal_True ) bEnableBackgroundSelector ( sal_True )
{ {
get(m_pFrm,"frameHdrOn");
get(m_pPageLbl,"labelHeaderFooterFormat");
get(m_pTurnOnBox,"checkHeaderOn");
get(m_pCntSharedBox,"checkSameLR");
get(m_pCntSharedFirstBox,"checkSameFP");
get(m_pLMEdit,"spinMargLeft");
get(m_pLMLbl,"labelLeftMarg");
get(m_pRMEdit,"spinMargRight");
get(m_pRMLbl,"labelRightMarg");
get(m_pDistEdit,"spinSpacing");
get(m_pDistFT,"labelSpacing");
get(m_pDynSpacingCB,"checkDynSpacing");
get(m_pHeightFT,"labelHeight");
get(m_pHeightEdit,"spinHeight");
get(m_pHeightDynBtn,"checkAutofit");
get(m_pBspWin,"drawingareaPageHF");
get(m_pBackgroundBtn,"buttonMore");
get(m_pFooterOn,"labelFooterOn");
get(m_pFooterLbl,"labelFooter");
get(m_pHeaderOn,"labelHeaderOn");
get(m_pHeaderLbl,"labelHeader");
get(m_pMsg,"labelMsg");
//swap header <-> footer in UI
if(nId == SID_ATTR_PAGE_FOOTERSET)
{
m_pPageLbl->SetText(m_pFooterLbl->GetText());
m_pTurnOnBox->SetText(m_pFooterOn->GetText());
}
else //Header
{
m_pPageLbl->SetText(m_pHeaderLbl->GetText());
m_pTurnOnBox->SetText(m_pHeaderOn->GetText());
}
InitHandler(); InitHandler();
aBspWin.EnableRTL( sal_False ); m_pBspWin->EnableRTL( sal_False );
// This Page needs ExchangeSupport // This Page needs ExchangeSupport
SetExchangeSupport(); SetExchangeSupport();
FreeResource();
// Set metrics // Set metrics
FieldUnit eFUnit = GetModuleFieldUnit( rAttr ); FieldUnit eFUnit = GetModuleFieldUnit( rSet );
SetFieldUnit( aDistEdit, eFUnit ); SetFieldUnit( *m_pDistEdit, eFUnit );
SetFieldUnit( aHeightEdit, eFUnit ); SetFieldUnit( *m_pHeightEdit, eFUnit );
SetFieldUnit( aLMEdit, eFUnit ); SetFieldUnit( *m_pLMEdit, eFUnit );
SetFieldUnit( aRMEdit, eFUnit ); SetFieldUnit( *m_pRMEdit, eFUnit );
aTurnOnBox.SetAccessibleRelationMemberOf( &aFrm ); m_pTurnOnBox->SetAccessibleRelationMemberOf( m_pFrm );
aCntSharedBox.SetAccessibleRelationMemberOf( &aFrm ); m_pCntSharedBox->SetAccessibleRelationMemberOf( m_pFrm );
aCntSharedFirstBox.SetAccessibleRelationMemberOf( &aFrm ); m_pCntSharedFirstBox->SetAccessibleRelationMemberOf( m_pFrm );
aLMLbl.SetAccessibleRelationMemberOf( &aFrm ); m_pLMLbl->SetAccessibleRelationMemberOf( m_pFrm );
aLMEdit.SetAccessibleRelationMemberOf( &aFrm ); m_pLMEdit->SetAccessibleRelationMemberOf( m_pFrm );
aRMLbl.SetAccessibleRelationMemberOf( &aFrm ); m_pRMLbl->SetAccessibleRelationMemberOf( m_pFrm );
aRMEdit.SetAccessibleRelationMemberOf( &aFrm ); m_pRMEdit->SetAccessibleRelationMemberOf( m_pFrm );
aDistFT.SetAccessibleRelationMemberOf( &aFrm ); m_pDistFT->SetAccessibleRelationMemberOf( m_pFrm );
aDistEdit.SetAccessibleRelationMemberOf( &aFrm ); m_pDistEdit->SetAccessibleRelationMemberOf( m_pFrm );
aDynSpacingCB.SetAccessibleRelationMemberOf( &aFrm ); m_pDynSpacingCB->SetAccessibleRelationMemberOf( m_pFrm );
aHeightFT.SetAccessibleRelationMemberOf( &aFrm ); m_pHeightFT->SetAccessibleRelationMemberOf( m_pFrm );
aHeightEdit.SetAccessibleRelationMemberOf( &aFrm ); m_pHeightEdit->SetAccessibleRelationMemberOf( m_pFrm );
aHeightDynBtn.SetAccessibleRelationMemberOf( &aFrm ); m_pHeightDynBtn->SetAccessibleRelationMemberOf( m_pFrm );
aBackgroundBtn.SetAccessibleRelationMemberOf(&aFrm); m_pBackgroundBtn->SetAccessibleRelationMemberOf(m_pFrm);
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
@@ -257,14 +274,14 @@ sal_Bool SvxHFPage::FillItemSet( SfxItemSet& rSet )
//-------------------------------------------------------------------- //--------------------------------------------------------------------
aSet.Put( SfxBoolItem( nWOn, aTurnOnBox.IsChecked() ) ); aSet.Put( SfxBoolItem( nWOn, m_pTurnOnBox->IsChecked() ) );
aSet.Put( SfxBoolItem( nWDynamic, aHeightDynBtn.IsChecked() ) ); aSet.Put( SfxBoolItem( nWDynamic, m_pHeightDynBtn->IsChecked() ) );
aSet.Put( SfxBoolItem( nWShared, aCntSharedBox.IsChecked() ) ); aSet.Put( SfxBoolItem( nWShared, m_pCntSharedBox->IsChecked() ) );
aSet.Put( SfxBoolItem( nWSharedFirst, aCntSharedFirstBox.IsChecked() ) ); aSet.Put( SfxBoolItem( nWSharedFirst, m_pCntSharedFirstBox->IsChecked() ) );
if(aDynSpacingCB.IsVisible() && SFX_WHICH_MAX > nWDynSpacing) if(m_pDynSpacingCB->IsVisible() && SFX_WHICH_MAX > nWDynSpacing)
{ {
SfxBoolItem* pBoolItem = (SfxBoolItem*)pPool->GetDefaultItem(nWDynSpacing).Clone(); SfxBoolItem* pBoolItem = (SfxBoolItem*)pPool->GetDefaultItem(nWDynSpacing).Clone();
pBoolItem->SetValue(aDynSpacingCB.IsChecked()); pBoolItem->SetValue(m_pDynSpacingCB->IsChecked());
aSet.Put(*pBoolItem); aSet.Put(*pBoolItem);
delete pBoolItem; delete pBoolItem;
} }
@@ -272,8 +289,8 @@ sal_Bool SvxHFPage::FillItemSet( SfxItemSet& rSet )
// Size // Size
SvxSizeItem aSizeItem( (const SvxSizeItem&)rOldSet.Get( nWSize ) ); SvxSizeItem aSizeItem( (const SvxSizeItem&)rOldSet.Get( nWSize ) );
Size aSize( aSizeItem.GetSize() ); Size aSize( aSizeItem.GetSize() );
long nDist = GetCoreValue( aDistEdit, eUnit ); long nDist = GetCoreValue( *m_pDistEdit, eUnit );
long nH = GetCoreValue( aHeightEdit, eUnit ); long nH = GetCoreValue( *m_pHeightEdit, eUnit );
nH += nDist; // add distance nH += nDist; // add distance
aSize.Height() = nH; aSize.Height() = nH;
@@ -282,8 +299,8 @@ sal_Bool SvxHFPage::FillItemSet( SfxItemSet& rSet )
// Margins // Margins
SvxLRSpaceItem aLR( nWLRSpace ); SvxLRSpaceItem aLR( nWLRSpace );
aLR.SetLeft( (sal_uInt16)GetCoreValue( aLMEdit, eUnit ) ); aLR.SetLeft( (sal_uInt16)GetCoreValue( *m_pLMEdit, eUnit ) );
aLR.SetRight( (sal_uInt16)GetCoreValue( aRMEdit, eUnit ) ); aLR.SetRight( (sal_uInt16)GetCoreValue( *m_pRMEdit, eUnit ) );
aSet.Put( aLR ); aSet.Put( aLR );
SvxULSpaceItem aUL( nWULSpace ); SvxULSpaceItem aUL( nWULSpace );
@@ -344,7 +361,7 @@ void SvxHFPage::Reset( const SfxItemSet& rSet )
const SfxBoolItem& rHeaderOn = const SfxBoolItem& rHeaderOn =
(const SfxBoolItem&)rHeaderSet.Get(GetWhich(SID_ATTR_PAGE_ON)); (const SfxBoolItem&)rHeaderSet.Get(GetWhich(SID_ATTR_PAGE_ON));
aTurnOnBox.Check(rHeaderOn.GetValue()); m_pTurnOnBox->Check(rHeaderOn.GetValue());
if ( rHeaderOn.GetValue() ) if ( rHeaderOn.GetValue() )
{ {
@@ -361,33 +378,33 @@ void SvxHFPage::Reset( const SfxItemSet& rSet )
(const SvxULSpaceItem&)rHeaderSet.Get( GetWhich( SID_ATTR_ULSPACE ) ); (const SvxULSpaceItem&)rHeaderSet.Get( GetWhich( SID_ATTR_ULSPACE ) );
const SvxLRSpaceItem& rLR = const SvxLRSpaceItem& rLR =
(const SvxLRSpaceItem&)rHeaderSet.Get( GetWhich( SID_ATTR_LRSPACE ) ); (const SvxLRSpaceItem&)rHeaderSet.Get( GetWhich( SID_ATTR_LRSPACE ) );
if(aDynSpacingCB.IsVisible()) if(m_pDynSpacingCB->IsVisible())
{ {
const SfxBoolItem& rDynSpacing = const SfxBoolItem& rDynSpacing =
(const SfxBoolItem&)rHeaderSet.Get(GetWhich(SID_ATTR_HDFT_DYNAMIC_SPACING)); (const SfxBoolItem&)rHeaderSet.Get(GetWhich(SID_ATTR_HDFT_DYNAMIC_SPACING));
aDynSpacingCB.Check(rDynSpacing.GetValue()); m_pDynSpacingCB->Check(rDynSpacing.GetValue());
} }
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
{ // Header { // Header
SetMetricValue( aDistEdit, rUL.GetLower(), eUnit ); SetMetricValue( *m_pDistEdit, rUL.GetLower(), eUnit );
SetMetricValue( aHeightEdit, rSize.GetSize().Height() - rUL.GetLower(), eUnit ); SetMetricValue( *m_pHeightEdit, rSize.GetSize().Height() - rUL.GetLower(), eUnit );
} }
else else
{ // Footer { // Footer
SetMetricValue( aDistEdit, rUL.GetUpper(), eUnit ); SetMetricValue( *m_pDistEdit, rUL.GetUpper(), eUnit );
SetMetricValue( aHeightEdit, rSize.GetSize().Height() - rUL.GetUpper(), eUnit ); SetMetricValue( *m_pHeightEdit, rSize.GetSize().Height() - rUL.GetUpper(), eUnit );
} }
aHeightDynBtn.Check(rDynamic.GetValue()); m_pHeightDynBtn->Check(rDynamic.GetValue());
SetMetricValue( aLMEdit, rLR.GetLeft(), eUnit ); SetMetricValue( *m_pLMEdit, rLR.GetLeft(), eUnit );
SetMetricValue( aRMEdit, rLR.GetRight(), eUnit ); SetMetricValue( *m_pRMEdit, rLR.GetRight(), eUnit );
aCntSharedBox.Check(rShared.GetValue()); m_pCntSharedBox->Check(rShared.GetValue());
if (pSharedFirst) if (pSharedFirst)
aCntSharedFirstBox.Check(pSharedFirst->GetValue()); m_pCntSharedFirstBox->Check(pSharedFirst->GetValue());
else else
aCntSharedFirstBox.Hide(); m_pCntSharedFirstBox->Hide();
} }
else else
pSetItem = 0; pSetItem = 0;
@@ -402,27 +419,27 @@ void SvxHFPage::Reset( const SfxItemSet& rSet )
if ( pExt1 && pExt1->ISA(SfxBoolItem) && pExt2 && pExt2->ISA(SfxBoolItem) ) if ( pExt1 && pExt1->ISA(SfxBoolItem) && pExt2 && pExt2->ISA(SfxBoolItem) )
nDefaultDist = DEF_DIST_CALC; nDefaultDist = DEF_DIST_CALC;
SetMetricValue( aDistEdit, nDefaultDist, SFX_MAPUNIT_100TH_MM ); SetMetricValue( *m_pDistEdit, nDefaultDist, SFX_MAPUNIT_100TH_MM );
SetMetricValue( aHeightEdit, 500, SFX_MAPUNIT_100TH_MM ); SetMetricValue( *m_pHeightEdit, 500, SFX_MAPUNIT_100TH_MM );
} }
if ( !pSetItem ) if ( !pSetItem )
{ {
aTurnOnBox.Check( sal_False ); m_pTurnOnBox->Check( sal_False );
aHeightDynBtn.Check( sal_True ); m_pHeightDynBtn->Check( sal_True );
aCntSharedBox.Check( sal_True ); m_pCntSharedBox->Check( sal_True );
aCntSharedFirstBox.Check( sal_True ); m_pCntSharedFirstBox->Check( sal_True );
} }
TurnOnHdl(0); TurnOnHdl(0);
aTurnOnBox.SaveValue(); m_pTurnOnBox->SaveValue();
aDistEdit.SaveValue(); m_pDistEdit->SaveValue();
aHeightEdit.SaveValue(); m_pHeightEdit->SaveValue();
aHeightDynBtn.SaveValue(); m_pHeightDynBtn->SaveValue();
aLMEdit.SaveValue(); m_pLMEdit->SaveValue();
aRMEdit.SaveValue(); m_pRMEdit->SaveValue();
aCntSharedBox.SaveValue(); m_pCntSharedBox->SaveValue();
RangeHdl( 0 ); RangeHdl( 0 );
const SfxPoolItem* pItem = 0; const SfxPoolItem* pItem = 0;
@@ -435,8 +452,8 @@ void SvxHFPage::Reset( const SfxItemSet& rSet )
nHtmlMode = ((SfxUInt16Item*)pItem)->GetValue(); nHtmlMode = ((SfxUInt16Item*)pItem)->GetValue();
if(nHtmlMode & HTMLMODE_ON) if(nHtmlMode & HTMLMODE_ON)
{ {
aCntSharedBox.Hide(); m_pCntSharedBox->Hide();
aBackgroundBtn.Hide(); m_pBackgroundBtn->Hide();
} }
} }
@@ -444,72 +461,73 @@ void SvxHFPage::Reset( const SfxItemSet& rSet )
void SvxHFPage::InitHandler() void SvxHFPage::InitHandler()
{ {
aTurnOnBox.SetClickHdl(LINK(this, SvxHFPage, TurnOnHdl)); m_pTurnOnBox->SetClickHdl(LINK(this, SvxHFPage, TurnOnHdl));
aDistEdit.SetModifyHdl(LINK(this, SvxHFPage, DistModify)); m_pDistEdit->SetModifyHdl(LINK(this, SvxHFPage, DistModify));
aDistEdit.SetLoseFocusHdl(LINK(this, SvxHFPage, RangeHdl)); m_pDistEdit->SetLoseFocusHdl(LINK(this, SvxHFPage, RangeHdl));
aHeightEdit.SetModifyHdl(LINK(this, SvxHFPage, HeightModify)); m_pHeightEdit->SetModifyHdl(LINK(this, SvxHFPage, HeightModify));
aHeightEdit.SetLoseFocusHdl(LINK(this,SvxHFPage,RangeHdl)); m_pHeightEdit->SetLoseFocusHdl(LINK(this,SvxHFPage,RangeHdl));
aLMEdit.SetModifyHdl(LINK(this, SvxHFPage, BorderModify)); m_pLMEdit->SetModifyHdl(LINK(this, SvxHFPage, BorderModify));
aLMEdit.SetLoseFocusHdl(LINK(this, SvxHFPage, RangeHdl)); m_pLMEdit->SetLoseFocusHdl(LINK(this, SvxHFPage, RangeHdl));
aRMEdit.SetModifyHdl(LINK(this, SvxHFPage, BorderModify)); m_pRMEdit->SetModifyHdl(LINK(this, SvxHFPage, BorderModify));
aRMEdit.SetLoseFocusHdl(LINK(this, SvxHFPage, RangeHdl)); m_pRMEdit->SetLoseFocusHdl(LINK(this, SvxHFPage, RangeHdl));
aBackgroundBtn.SetClickHdl(LINK(this,SvxHFPage, BackgroundHdl)); m_pBackgroundBtn->SetClickHdl(LINK(this,SvxHFPage, BackgroundHdl));
} }
IMPL_LINK( SvxHFPage, TurnOnHdl, CheckBox *, pBox ) IMPL_LINK( SvxHFPage, TurnOnHdl, CheckBox *, pBox )
{ {
if ( aTurnOnBox.IsChecked() ) if ( m_pTurnOnBox->IsChecked() )
{ {
aDistFT.Enable(); m_pDistFT->Enable();
aDistEdit.Enable(); m_pDistEdit->Enable();
aDynSpacingCB.Enable(); m_pDynSpacingCB->Enable();
aHeightFT.Enable(); m_pHeightFT->Enable();
aHeightEdit.Enable(); m_pHeightEdit->Enable();
aHeightDynBtn.Enable(); m_pHeightDynBtn->Enable();
aLMLbl.Enable(); m_pLMLbl->Enable();
aLMEdit.Enable(); m_pLMEdit->Enable();
aRMLbl.Enable(); m_pRMLbl->Enable();
aRMEdit.Enable(); m_pRMEdit->Enable();
sal_uInt16 nUsage = aBspWin.GetUsage(); sal_uInt16 nUsage = m_pBspWin->GetUsage();
if( nUsage == SVX_PAGE_RIGHT || nUsage == SVX_PAGE_LEFT ) if( nUsage == SVX_PAGE_RIGHT || nUsage == SVX_PAGE_LEFT )
aCntSharedBox.Disable(); m_pCntSharedBox->Disable();
else else
{ {
aCntSharedBox.Enable(); m_pCntSharedBox->Enable();
aCntSharedFirstBox.Enable(); m_pCntSharedFirstBox->Enable();
} }
aBackgroundBtn.Enable(); m_pBackgroundBtn->Enable();
} }
else else
{ {
sal_Bool bDelete = sal_True; sal_Bool bDelete = sal_True;
if ( !bDisableQueryBox && pBox && aTurnOnBox.GetSavedValue() == sal_True ) if ( !bDisableQueryBox && pBox && m_pTurnOnBox->GetSavedValue() == sal_True )
bDelete = ( QueryBox( this, SVX_RES( RID_SVXQBX_DELETE_HEADFOOT ) ).Execute() == RET_YES ); bDelete = ( QueryBox( this, SVX_RES( RID_SVXQBX_DELETE_HEADFOOT ) ).Execute() == RET_YES );
if ( bDelete ) if ( bDelete )
{ {
aDistFT.Disable(); m_pDistFT->Disable();
aDistEdit.Disable(); m_pDistEdit->Disable();
aDynSpacingCB.Enable(sal_False); m_pDynSpacingCB->Enable(sal_False);
aHeightFT.Disable(); m_pHeightFT->Disable();
aHeightEdit.Disable(); m_pHeightEdit->Disable();
aHeightDynBtn.Disable(); m_pHeightDynBtn->Disable();
aLMLbl.Disable(); m_pLMLbl->Disable();
aLMEdit.Disable(); m_pLMEdit->Disable();
aRMLbl.Disable(); m_pRMLbl->Disable();
aRMEdit.Disable(); m_pRMEdit->Disable();
aCntSharedBox.Disable(); m_pCntSharedBox->Disable();
aBackgroundBtn.Disable(); m_pBackgroundBtn->Disable();
m_pCntSharedFirstBox->Disable();
} }
else else
aTurnOnBox.Check(); m_pTurnOnBox->Check();
} }
UpdateExample(); UpdateExample();
return 0; return 0;
@@ -574,9 +592,9 @@ IMPL_LINK_NOARG(SvxHFPage, BackgroundHdl)
{ {
const SvxBrushItem& rItem = (const SvxBrushItem&)pBBSet->Get( nWhich ); const SvxBrushItem& rItem = (const SvxBrushItem&)pBBSet->Get( nWhich );
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
aBspWin.SetHdColor( rItem.GetColor() ); m_pBspWin->SetHdColor( rItem.GetColor() );
else else
aBspWin.SetFtColor( rItem.GetColor() ); m_pBspWin->SetFtColor( rItem.GetColor() );
} }
//---------------------------------------------------------------- //----------------------------------------------------------------
@@ -588,9 +606,9 @@ IMPL_LINK_NOARG(SvxHFPage, BackgroundHdl)
const SvxBoxItem& rItem = (const SvxBoxItem&)pBBSet->Get( nWhich ); const SvxBoxItem& rItem = (const SvxBoxItem&)pBBSet->Get( nWhich );
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
aBspWin.SetHdBorder( rItem ); m_pBspWin->SetHdBorder( rItem );
else else
aBspWin.SetFtBorder( rItem ); m_pBspWin->SetFtBorder( rItem );
} }
UpdateExample(); UpdateExample();
@@ -603,21 +621,21 @@ void SvxHFPage::UpdateExample()
{ {
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
{ {
aBspWin.SetHeader( aTurnOnBox.IsChecked() ); m_pBspWin->SetHeader( m_pTurnOnBox->IsChecked() );
aBspWin.SetHdHeight( GetCoreValue( aHeightEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetHdHeight( GetCoreValue( *m_pHeightEdit, SFX_MAPUNIT_TWIP ) );
aBspWin.SetHdDist( GetCoreValue( aDistEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetHdDist( GetCoreValue( *m_pDistEdit, SFX_MAPUNIT_TWIP ) );
aBspWin.SetHdLeft( GetCoreValue( aLMEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetHdLeft( GetCoreValue( *m_pLMEdit, SFX_MAPUNIT_TWIP ) );
aBspWin.SetHdRight( GetCoreValue( aRMEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetHdRight( GetCoreValue( *m_pRMEdit, SFX_MAPUNIT_TWIP ) );
} }
else else
{ {
aBspWin.SetFooter( aTurnOnBox.IsChecked() ); m_pBspWin->SetFooter( m_pTurnOnBox->IsChecked() );
aBspWin.SetFtHeight( GetCoreValue( aHeightEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetFtHeight( GetCoreValue( *m_pHeightEdit, SFX_MAPUNIT_TWIP ) );
aBspWin.SetFtDist( GetCoreValue( aDistEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetFtDist( GetCoreValue( *m_pDistEdit, SFX_MAPUNIT_TWIP ) );
aBspWin.SetFtLeft( GetCoreValue( aLMEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetFtLeft( GetCoreValue( *m_pLMEdit, SFX_MAPUNIT_TWIP ) );
aBspWin.SetFtRight( GetCoreValue( aRMEdit, SFX_MAPUNIT_TWIP ) ); m_pBspWin->SetFtRight( GetCoreValue( *m_pRMEdit, SFX_MAPUNIT_TWIP ) );
} }
aBspWin.Invalidate(); m_pBspWin->Invalidate();
} }
void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet ) void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet )
@@ -639,7 +657,7 @@ void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet )
if ( rTmpSet.GetItemState( nWhich ) == SFX_ITEM_SET ) if ( rTmpSet.GetItemState( nWhich ) == SFX_ITEM_SET )
{ {
const SvxBrushItem& rItem = (const SvxBrushItem&)rTmpSet.Get( nWhich ); const SvxBrushItem& rItem = (const SvxBrushItem&)rTmpSet.Get( nWhich );
aBspWin.SetHdColor( rItem.GetColor() ); m_pBspWin->SetHdColor( rItem.GetColor() );
} }
nWhich = GetWhich( SID_ATTR_BORDER_OUTER ); nWhich = GetWhich( SID_ATTR_BORDER_OUTER );
@@ -647,7 +665,7 @@ void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet )
{ {
const SvxBoxItem& rItem = const SvxBoxItem& rItem =
(const SvxBoxItem&)rTmpSet.Get( nWhich ); (const SvxBoxItem&)rTmpSet.Get( nWhich );
aBspWin.SetHdBorder( rItem ); m_pBspWin->SetHdBorder( rItem );
} }
} }
} }
@@ -669,7 +687,7 @@ void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet )
if ( rTmpSet.GetItemState( nWhich ) == SFX_ITEM_SET ) if ( rTmpSet.GetItemState( nWhich ) == SFX_ITEM_SET )
{ {
const SvxBrushItem& rItem = (const SvxBrushItem&)rTmpSet.Get( nWhich ); const SvxBrushItem& rItem = (const SvxBrushItem&)rTmpSet.Get( nWhich );
aBspWin.SetFtColor( rItem.GetColor() ); m_pBspWin->SetFtColor( rItem.GetColor() );
} }
nWhich = GetWhich( SID_ATTR_BORDER_OUTER ); nWhich = GetWhich( SID_ATTR_BORDER_OUTER );
@@ -677,7 +695,7 @@ void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet )
{ {
const SvxBoxItem& rItem = const SvxBoxItem& rItem =
(const SvxBoxItem&)rTmpSet.Get( nWhich ); (const SvxBoxItem&)rTmpSet.Get( nWhich );
aBspWin.SetFtBorder( rItem ); m_pBspWin->SetFtBorder( rItem );
} }
} }
} }
@@ -686,23 +704,23 @@ void SvxHFPage::ResetBackground_Impl( const SfxItemSet& rSet )
if ( rSet.GetItemState( nWhich ) >= SFX_ITEM_AVAILABLE ) if ( rSet.GetItemState( nWhich ) >= SFX_ITEM_AVAILABLE )
{ {
const SvxBrushItem& rItem = (const SvxBrushItem&)rSet.Get( nWhich ); const SvxBrushItem& rItem = (const SvxBrushItem&)rSet.Get( nWhich );
aBspWin.SetColor( rItem.GetColor() ); m_pBspWin->SetColor( rItem.GetColor() );
const Graphic* pGrf = rItem.GetGraphic(); const Graphic* pGrf = rItem.GetGraphic();
if ( pGrf ) if ( pGrf )
{ {
Bitmap aBitmap = pGrf->GetBitmap(); Bitmap aBitmap = pGrf->GetBitmap();
aBspWin.SetBitmap( &aBitmap ); m_pBspWin->SetBitmap( &aBitmap );
} }
else else
aBspWin.SetBitmap( NULL ); m_pBspWin->SetBitmap( NULL );
} }
nWhich = GetWhich( SID_ATTR_BORDER_OUTER ); nWhich = GetWhich( SID_ATTR_BORDER_OUTER );
if ( rSet.GetItemState( nWhich ) >= SFX_ITEM_AVAILABLE ) if ( rSet.GetItemState( nWhich ) >= SFX_ITEM_AVAILABLE )
{ {
const SvxBoxItem& rItem = (const SvxBoxItem&)rSet.Get( nWhich ); const SvxBoxItem& rItem = (const SvxBoxItem&)rSet.Get( nWhich );
aBspWin.SetBorder( rItem ); m_pBspWin->SetBorder( rItem );
} }
} }
@@ -715,13 +733,13 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
// Set left and right margins // Set left and right margins
const SvxLRSpaceItem& rLRSpace = (const SvxLRSpaceItem&)*pItem; const SvxLRSpaceItem& rLRSpace = (const SvxLRSpaceItem&)*pItem;
aBspWin.SetLeft( rLRSpace.GetLeft() ); m_pBspWin->SetLeft( rLRSpace.GetLeft() );
aBspWin.SetRight( rLRSpace.GetRight() ); m_pBspWin->SetRight( rLRSpace.GetRight() );
} }
else else
{ {
aBspWin.SetLeft( 0 ); m_pBspWin->SetLeft( 0 );
aBspWin.SetRight( 0 ); m_pBspWin->SetRight( 0 );
} }
pItem = GetItem( rSet, SID_ATTR_ULSPACE ); pItem = GetItem( rSet, SID_ATTR_ULSPACE );
@@ -731,13 +749,13 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
// Set top and bottom margins // Set top and bottom margins
const SvxULSpaceItem& rULSpace = (const SvxULSpaceItem&)*pItem; const SvxULSpaceItem& rULSpace = (const SvxULSpaceItem&)*pItem;
aBspWin.SetTop( rULSpace.GetUpper() ); m_pBspWin->SetTop( rULSpace.GetUpper() );
aBspWin.SetBottom( rULSpace.GetLower() ); m_pBspWin->SetBottom( rULSpace.GetLower() );
} }
else else
{ {
aBspWin.SetTop( 0 ); m_pBspWin->SetTop( 0 );
aBspWin.SetBottom( 0 ); m_pBspWin->SetBottom( 0 );
} }
sal_uInt16 nUsage = SVX_PAGE_ALL; sal_uInt16 nUsage = SVX_PAGE_ALL;
@@ -746,14 +764,14 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
if ( pItem ) if ( pItem )
nUsage = ( (const SvxPageItem*)pItem )->GetPageUsage(); nUsage = ( (const SvxPageItem*)pItem )->GetPageUsage();
aBspWin.SetUsage( nUsage ); m_pBspWin->SetUsage( nUsage );
if ( SVX_PAGE_RIGHT == nUsage || SVX_PAGE_LEFT == nUsage ) if ( SVX_PAGE_RIGHT == nUsage || SVX_PAGE_LEFT == nUsage )
aCntSharedBox.Disable(); m_pCntSharedBox->Disable();
else else
{ {
aCntSharedBox.Enable(); m_pCntSharedBox->Enable();
aCntSharedFirstBox.Enable(); m_pCntSharedFirstBox->Enable();
} }
pItem = GetItem( rSet, SID_ATTR_PAGE_SIZE ); pItem = GetItem( rSet, SID_ATTR_PAGE_SIZE );
@@ -762,7 +780,7 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
// Orientation and Size from the PageItem // Orientation and Size from the PageItem
const SvxSizeItem& rSize = (const SvxSizeItem&)*pItem; const SvxSizeItem& rSize = (const SvxSizeItem&)*pItem;
// if the size is already swapped (Landscape) // if the size is already swapped (Landscape)
aBspWin.SetSize( rSize.GetSize() ); m_pBspWin->SetSize( rSize.GetSize() );
} }
// Evaluate Header attribute // Evaluate Header attribute
@@ -786,11 +804,11 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
rHeaderSet.Get( GetWhich( SID_ATTR_LRSPACE ) ); rHeaderSet.Get( GetWhich( SID_ATTR_LRSPACE ) );
long nDist = rUL.GetLower(); long nDist = rUL.GetLower();
aBspWin.SetHdHeight( rSize.GetSize().Height() - nDist ); m_pBspWin->SetHdHeight( rSize.GetSize().Height() - nDist );
aBspWin.SetHdDist( nDist ); m_pBspWin->SetHdDist( nDist );
aBspWin.SetHdLeft( rLR.GetLeft() ); m_pBspWin->SetHdLeft( rLR.GetLeft() );
aBspWin.SetHdRight( rLR.GetRight() ); m_pBspWin->SetHdRight( rLR.GetRight() );
aBspWin.SetHeader( sal_True ); m_pBspWin->SetHeader( sal_True );
} }
else else
pSetItem = 0; pSetItem = 0;
@@ -798,12 +816,12 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
if ( !pSetItem ) if ( !pSetItem )
{ {
aBspWin.SetHeader( sal_False ); m_pBspWin->SetHeader( sal_False );
if ( SID_ATTR_PAGE_HEADERSET == nId ) if ( SID_ATTR_PAGE_HEADERSET == nId )
{ {
aCntSharedBox.Disable(); m_pCntSharedBox->Disable();
aCntSharedFirstBox.Disable(); m_pCntSharedFirstBox->Disable();
} }
} }
pSetItem = 0; pSetItem = 0;
@@ -826,11 +844,11 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
rFooterSet.Get( GetWhich( SID_ATTR_LRSPACE ) ); rFooterSet.Get( GetWhich( SID_ATTR_LRSPACE ) );
long nDist = rUL.GetUpper(); long nDist = rUL.GetUpper();
aBspWin.SetFtHeight( rSize.GetSize().Height() - nDist ); m_pBspWin->SetFtHeight( rSize.GetSize().Height() - nDist );
aBspWin.SetFtDist( nDist ); m_pBspWin->SetFtDist( nDist );
aBspWin.SetFtLeft( rLR.GetLeft() ); m_pBspWin->SetFtLeft( rLR.GetLeft() );
aBspWin.SetFtRight( rLR.GetRight() ); m_pBspWin->SetFtRight( rLR.GetRight() );
aBspWin.SetFooter( sal_True ); m_pBspWin->SetFooter( sal_True );
} }
else else
pSetItem = 0; pSetItem = 0;
@@ -838,12 +856,12 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
if ( !pSetItem ) if ( !pSetItem )
{ {
aBspWin.SetFooter( sal_False ); m_pBspWin->SetFooter( sal_False );
if ( SID_ATTR_PAGE_FOOTERSET == nId ) if ( SID_ATTR_PAGE_FOOTERSET == nId )
{ {
aCntSharedBox.Disable(); m_pCntSharedBox->Disable();
aCntSharedFirstBox.Disable(); m_pCntSharedFirstBox->Disable();
} }
} }
@@ -851,16 +869,16 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet )
if ( pItem && pItem->ISA(SfxBoolItem) ) if ( pItem && pItem->ISA(SfxBoolItem) )
{ {
aBspWin.SetTable( sal_True ); m_pBspWin->SetTable( sal_True );
aBspWin.SetHorz( ( (SfxBoolItem*)pItem )->GetValue() ); m_pBspWin->SetHorz( ( (SfxBoolItem*)pItem )->GetValue() );
} }
pItem = GetItem( rSet, SID_ATTR_PAGE_EXT2 ); pItem = GetItem( rSet, SID_ATTR_PAGE_EXT2 );
if ( pItem && pItem->ISA(SfxBoolItem) ) if ( pItem && pItem->ISA(SfxBoolItem) )
{ {
aBspWin.SetTable( sal_True ); m_pBspWin->SetTable( sal_True );
aBspWin.SetVert( ( (SfxBoolItem*)pItem )->GetValue() ); m_pBspWin->SetVert( ( (SfxBoolItem*)pItem )->GetValue() );
} }
ResetBackground_Impl( rSet ); ResetBackground_Impl( rSet );
RangeHdl( 0 ); RangeHdl( 0 );
@@ -875,16 +893,16 @@ int SvxHFPage::DeactivatePage( SfxItemSet* _pSet )
IMPL_LINK_NOARG(SvxHFPage, RangeHdl) IMPL_LINK_NOARG(SvxHFPage, RangeHdl)
{ {
long nHHeight = aBspWin.GetHdHeight(); long nHHeight = m_pBspWin->GetHdHeight();
long nHDist = aBspWin.GetHdDist(); long nHDist = m_pBspWin->GetHdDist();
long nFHeight = aBspWin.GetFtHeight(); long nFHeight = m_pBspWin->GetFtHeight();
long nFDist = aBspWin.GetFtDist(); long nFDist = m_pBspWin->GetFtDist();
long nHeight = Max( (long)MINBODY, long nHeight = Max( (long)MINBODY,
static_cast<long>(aHeightEdit.Denormalize( aHeightEdit.GetValue( FUNIT_TWIP ) ) ) ); static_cast<long>(m_pHeightEdit->Denormalize( m_pHeightEdit->GetValue( FUNIT_TWIP ) ) ) );
long nDist = aTurnOnBox.IsChecked() ? long nDist = m_pTurnOnBox->IsChecked() ?
static_cast<long>(aDistEdit.Denormalize( aDistEdit.GetValue( FUNIT_TWIP ) )) : 0; static_cast<long>(m_pDistEdit->Denormalize( m_pDistEdit->GetValue( FUNIT_TWIP ) )) : 0;
long nMin; long nMin;
long nMax; long nMax;
@@ -901,13 +919,13 @@ IMPL_LINK_NOARG(SvxHFPage, RangeHdl)
} }
// Current values of the side edges // Current values of the side edges
long nBT = aBspWin.GetTop(); long nBT = m_pBspWin->GetTop();
long nBB = aBspWin.GetBottom(); long nBB = m_pBspWin->GetBottom();
long nBL = aBspWin.GetLeft(); long nBL = m_pBspWin->GetLeft();
long nBR = aBspWin.GetRight(); long nBR = m_pBspWin->GetRight();
long nH = aBspWin.GetSize().Height(); long nH = m_pBspWin->GetSize().Height();
long nW = aBspWin.GetSize().Width(); long nW = m_pBspWin->GetSize().Width();
// Borders // Borders
if ( nId == SID_ATTR_PAGE_HEADERSET ) if ( nId == SID_ATTR_PAGE_HEADERSET )
@@ -916,11 +934,11 @@ IMPL_LINK_NOARG(SvxHFPage, RangeHdl)
nMin = ( nH - nBB - nBT ) / 5; // 20% nMin = ( nH - nBB - nBT ) / 5; // 20%
nMax = Max( nH - nMin - nHDist - nFDist - nFHeight - nBB - nBT, nMax = Max( nH - nMin - nHDist - nFDist - nFHeight - nBB - nBT,
nMin ); nMin );
aHeightEdit.SetMax( aHeightEdit.Normalize( nMax ), FUNIT_TWIP ); m_pHeightEdit->SetMax( m_pHeightEdit->Normalize( nMax ), FUNIT_TWIP );
nMin = ( nH - nBB - nBT ) / 5; // 20% nMin = ( nH - nBB - nBT ) / 5; // 20%
nDist = Max( nH - nMin - nHHeight - nFDist - nFHeight - nBB - nBT, nDist = Max( nH - nMin - nHHeight - nFDist - nFHeight - nBB - nBT,
long(0) ); long(0) );
aDistEdit.SetMax( aDistEdit.Normalize( nDist ), FUNIT_TWIP ); m_pDistEdit->SetMax( m_pDistEdit->Normalize( nDist ), FUNIT_TWIP );
} }
else else
{ {
@@ -928,21 +946,21 @@ IMPL_LINK_NOARG(SvxHFPage, RangeHdl)
nMin = ( nH - nBT - nBB ) / 5; // 20% nMin = ( nH - nBT - nBB ) / 5; // 20%
nMax = Max( nH - nMin - nFDist - nHDist - nHHeight - nBT - nBB, nMax = Max( nH - nMin - nFDist - nHDist - nHHeight - nBT - nBB,
nMin ); nMin );
aHeightEdit.SetMax( aHeightEdit.Normalize( nMax ), FUNIT_TWIP ); m_pHeightEdit->SetMax( m_pHeightEdit->Normalize( nMax ), FUNIT_TWIP );
nMin = ( nH - nBT - nBB ) / 5; // 20% nMin = ( nH - nBT - nBB ) / 5; // 20%
nDist = Max( nH - nMin - nFHeight - nHDist - nHHeight - nBT - nBB, nDist = Max( nH - nMin - nFHeight - nHDist - nHHeight - nBT - nBB,
long(0) ); long(0) );
aDistEdit.SetMax( aDistEdit.Normalize( nDist ), FUNIT_TWIP ); m_pDistEdit->SetMax( m_pDistEdit->Normalize( nDist ), FUNIT_TWIP );
} }
// Limit Indentation // Limit Indentation
nMax = nW - nBL - nBR - nMax = nW - nBL - nBR -
static_cast<long>(aRMEdit.Denormalize( aRMEdit.GetValue( FUNIT_TWIP ) )) - MINBODY; static_cast<long>(m_pRMEdit->Denormalize( m_pRMEdit->GetValue( FUNIT_TWIP ) )) - MINBODY;
aLMEdit.SetMax( aLMEdit.Normalize( nMax ), FUNIT_TWIP ); m_pLMEdit->SetMax( m_pLMEdit->Normalize( nMax ), FUNIT_TWIP );
nMax = nW - nBL - nBR - nMax = nW - nBL - nBR -
static_cast<long>(aLMEdit.Denormalize( aLMEdit.GetValue( FUNIT_TWIP ) )) - MINBODY; static_cast<long>(m_pLMEdit->Denormalize( m_pLMEdit->GetValue( FUNIT_TWIP ) )) - MINBODY;
aRMEdit.SetMax( aLMEdit.Normalize( nMax ), FUNIT_TWIP ); m_pRMEdit->SetMax( m_pLMEdit->Normalize( nMax ), FUNIT_TWIP );
return 0; return 0;
} }
@@ -954,17 +972,17 @@ static void lcl_Move(Window& rWin, sal_Int32 nDiff)
} }
void SvxHFPage::EnableDynamicSpacing() void SvxHFPage::EnableDynamicSpacing()
{ {
aDynSpacingCB.Show(); m_pDynSpacingCB->Show();
//move all following controls //move all following controls
Window* aMoveWindows[] = Window* aMoveWindows[] =
{ {
&aHeightFT, m_pHeightFT,
&aHeightEdit, m_pHeightEdit,
&aHeightDynBtn, m_pHeightDynBtn,
&aBackgroundBtn, m_pBackgroundBtn,
0 0
}; };
sal_Int32 nOffset = aTurnOnBox.GetPosPixel().Y() - aCntSharedBox.GetPosPixel().Y(); sal_Int32 nOffset = m_pTurnOnBox->GetPosPixel().Y() - m_pCntSharedBox->GetPosPixel().Y();
sal_Int32 nIdx = 0; sal_Int32 nIdx = 0;
while(aMoveWindows[nIdx]) while(aMoveWindows[nIdx])
lcl_Move(*aMoveWindows[nIdx++], nOffset); lcl_Move(*aMoveWindows[nIdx++], nOffset);

View File

@@ -1,44 +0,0 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef _SVX_HDFT_HRC
#define _SVX_HDFT_HRC
// defines ---------------------------------------------------------------
#define CB_TURNON 10
#define FT_DIST 11
#define ED_DIST 12
#define FT_HEIGHT 13
#define ED_HEIGHT 14
#define CB_HEIGHT_DYN 15
#define FT_LMARGIN 16
#define ED_LMARGIN 17
#define FT_RMARGIN 18
#define ED_RMARGIN 19
#define CB_SHARED 20
#define FL_FRAME 21
#define CB_DYNSPACING 22
#define CB_SHARED_FIRST 23
#define WN_BSP 30
#define BTN_EXTRAS 40
#endif

View File

@@ -1,348 +0,0 @@
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "helpid.hrc"
#include <svx/dialogs.hrc>
#include "hdft.hrc"
#define _TEXT_FT_LMARGIN \
Text [ en-US ] = "~Left margin" ; \
#define _TEXT_FT_RMARGIN \
Text [ en-US ] = "R~ight margin" ; \
// RID_SVXPAGE_HEADER ----------------------------------------------------
TabPage RID_SVXPAGE_HEADER
{
HelpId = HID_FORMAT_HEADER ;
Hide = TRUE ;
Text [ en-US ] = "Header" ;
Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ;
CheckBox CB_TURNON
{
HelpID = "svx:CheckBox:RID_SVXPAGE_HEADER:CB_TURNON";
Pos = MAP_APPFONT ( 12 , 14 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "Hea~der on" ;
};
CheckBox CB_SHARED
{
HelpID = "svx:CheckBox:RID_SVXPAGE_HEADER:CB_SHARED";
Pos = MAP_APPFONT ( 12 , 30 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "Same ~content left/right" ;
};
CheckBox CB_SHARED_FIRST
{
HelpID = "svx:CheckBox:RID_SVXPAGE_HEADER:CB_SHARED_FIRST";
Pos = MAP_APPFONT ( 12 , 46 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "Same content on first page" ;
};
FixedText FT_LMARGIN
{
Pos = MAP_APPFONT ( 12 , 64 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
_TEXT_FT_LMARGIN
Left = TRUE ;
};
MetricField ED_LMARGIN
{
HelpID = "svx:MetricField:RID_SVXPAGE_HEADER:ED_LMARGIN";
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 62 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Maximum = 9999 ;
Minimum = 0 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
Last = 9999 ;
SpinSize = 10 ;
};
FixedText FT_RMARGIN
{
Pos = MAP_APPFONT ( 12 , 80 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
_TEXT_FT_RMARGIN
Left = TRUE ;
};
MetricField ED_RMARGIN
{
HelpID = "svx:MetricField:RID_SVXPAGE_HEADER:ED_RMARGIN";
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 78 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 0 ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
Last = 9999 ;
SpinSize = 10 ;
};
FixedText FT_DIST
{
Pos = MAP_APPFONT ( 12 , 98 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
Text [ en-US ] = "~Spacing" ;
};
MetricField ED_DIST
{
HelpID = "svx:MetricField:RID_SVXPAGE_HEADER:ED_DIST";
Disable = TRUE ;
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 96 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
Last = 9999 ;
SpinSize = 10 ;
};
CheckBox CB_DYNSPACING
{
HelpID = "svx:CheckBox:RID_SVXPAGE_HEADER:CB_DYNSPACING";
Pos = MAP_APPFONT ( 12 , 112 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Hide = TRUE;
Text [ en-US ] = "Use d~ynamic spacing" ;
};
FixedText FT_HEIGHT
{
Pos = MAP_APPFONT ( 12 , 114 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
Text [ en-US ] = "~Height" ;
};
MetricField ED_HEIGHT
{
HelpID = "svx:MetricField:RID_SVXPAGE_HEADER:ED_HEIGHT";
Disable = TRUE ;
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 112 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 10 ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
First = 50 ;
Last = 9999 ;
SpinSize = 10 ;
};
CheckBox CB_HEIGHT_DYN
{
HelpID = "svx:CheckBox:RID_SVXPAGE_HEADER:CB_HEIGHT_DYN";
Pos = MAP_APPFONT ( 12 , 128 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "~AutoFit height" ;
};
FixedLine FL_FRAME
{
Pos = MAP_APPFONT ( 6 , 3 ) ;
Size = MAP_APPFONT ( 164 , 8 ) ;
Text [ en-US ] = "Header" ;
};
Window WN_BSP
{
Pos = MAP_APPFONT ( 176 , 6 ) ;
Size = MAP_APPFONT ( 75 , 46 ) ;
};
PushButton BTN_EXTRAS
{
HelpID = "svx:PushButton:RID_SVXPAGE_HEADER:BTN_EXTRAS";
Pos = MAP_APPFONT ( 12 , 146 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text [ en-US ] = "~More..." ;
};
};
// RID_SVXPAGE_FOOTER ----------------------------------------------------
TabPage RID_SVXPAGE_FOOTER
{
HelpId = HID_FORMAT_FOOTER ;
Hide = TRUE ;
Text [ en-US ] = "Footer" ;
Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ;
CheckBox CB_TURNON
{
HelpID = "svx:CheckBox:RID_SVXPAGE_FOOTER:CB_TURNON";
Pos = MAP_APPFONT ( 12 , 14 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "~Footer on" ;
};
CheckBox CB_SHARED
{
HelpID = "svx:CheckBox:RID_SVXPAGE_FOOTER:CB_SHARED";
Pos = MAP_APPFONT ( 12 , 30 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "Same ~content left/right" ;
};
CheckBox CB_SHARED_FIRST
{
HelpID = "svx:CheckBox:RID_SVXPAGE_FOOTER:CB_SHARED_FIRST";
Pos = MAP_APPFONT ( 12 , 46 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "Same content on first page" ;
};
FixedText FT_LMARGIN
{
Pos = MAP_APPFONT ( 12 , 64 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
Left = TRUE ;
_TEXT_FT_LMARGIN
};
MetricField ED_LMARGIN
{
HelpID = "svx:MetricField:RID_SVXPAGE_FOOTER:ED_LMARGIN";
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 62 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 0 ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
Last = 9999 ;
SpinSize = 10 ;
};
FixedText FT_RMARGIN
{
Pos = MAP_APPFONT ( 12 , 80 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
_TEXT_FT_RMARGIN
Left = TRUE ;
};
MetricField ED_RMARGIN
{
HelpID = "svx:MetricField:RID_SVXPAGE_FOOTER:ED_RMARGIN";
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 78 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 0 ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
Last = 9999 ;
SpinSize = 10 ;
};
FixedText FT_DIST
{
Pos = MAP_APPFONT ( 12 , 98 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
Text [ en-US ] = "~Spacing" ;
};
MetricField ED_DIST
{
HelpID = "svx:MetricField:RID_SVXPAGE_FOOTER:ED_DIST";
Disable = TRUE ;
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 96 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
Last = 9999 ;
SpinSize = 10 ;
};
CheckBox CB_DYNSPACING
{
HelpID = "svx:CheckBox:RID_SVXPAGE_FOOTER:CB_DYNSPACING";
Pos = MAP_APPFONT ( 12 , 112 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Hide = TRUE;
Text [ en-US ] = "Use d~ynamic spacing" ;
};
FixedText FT_HEIGHT
{
Pos = MAP_APPFONT ( 12 , 114 ) ;
Size = MAP_APPFONT ( 102 , 8 ) ;
Disable = TRUE ;
Text [ en-US ] = "~Height" ;
};
MetricField ED_HEIGHT
{
HelpID = "svx:MetricField:RID_SVXPAGE_FOOTER:ED_HEIGHT";
Disable = TRUE ;
Border = TRUE ;
Pos = MAP_APPFONT ( 124 , 112 ) ;
Size = MAP_APPFONT ( 40 , 12 ) ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 10 ;
Maximum = 9999 ;
DecimalDigits = 2 ;
Unit = FUNIT_CM ;
First = 50 ;
Last = 9999 ;
SpinSize = 10 ;
};
CheckBox CB_HEIGHT_DYN
{
HelpID = "svx:CheckBox:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN";
Pos = MAP_APPFONT ( 12 , 128 ) ;
Size = MAP_APPFONT ( 152 , 10 ) ;
Text [ en-US ] = "~AutoFit height" ;
};
FixedLine FL_FRAME
{
Pos = MAP_APPFONT ( 6 , 3 ) ;
Size = MAP_APPFONT ( 164 , 8 ) ;
Text [ en-US ] = "Footer" ;
};
Window WN_BSP
{
Pos = MAP_APPFONT ( 176 , 6 ) ;
Size = MAP_APPFONT ( 75 , 46 ) ;
};
PushButton BTN_EXTRAS
{
HelpID = "svx:PushButton:RID_SVXPAGE_FOOTER:BTN_EXTRAS";
Pos = MAP_APPFONT ( 12 , 146 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text [ en-US ] = "~More..." ;
};
};
QueryBox RID_SVXQBX_DELETE_HEADFOOT
{
Buttons = WB_YES_NO ;
DefButton = WB_DEF_NO ;
Message [ en-US ] = "Removing headers or footers deletes the contents.\nDo you want to delete this text?" ;
};
// ********************************************************************** EOF

View File

@@ -0,0 +1,477 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<!-- interface-requires LibreOffice 1.0 -->
<object class="GtkGrid" id="HFFormatPage">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">start</property>
<property name="valign">start</property>
<property name="border_width">6</property>
<property name="row_spacing">6</property>
<property name="column_spacing">12</property>
<child>
<object class="GtkFrame" id="frame1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<property name="label_xalign">0</property>
<property name="shadow_type">none</property>
<child>
<object class="GtkAlignment" id="alignment2">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<property name="top_padding">6</property>
<property name="left_padding">12</property>
<child>
<object class="GtkBox" id="box1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">start</property>
<property name="valign">start</property>
<property name="orientation">vertical</property>
<property name="spacing">6</property>
<child>
<object class="GtkCheckButton" id="checkHeaderOn">
<property name="label" translatable="yes">Hea_der on</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkFrame" id="frameHdrOn">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label_xalign">0</property>
<property name="label_yalign">0</property>
<property name="shadow_type">none</property>
<child>
<object class="GtkAlignment" id="alignment4">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">start</property>
<property name="valign">start</property>
<property name="left_padding">12</property>
<child>
<object class="GtkGrid" id="grid5">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">start</property>
<property name="valign">start</property>
<property name="row_spacing">6</property>
<property name="column_spacing">12</property>
<child>
<object class="GtkCheckButton" id="checkSameLR">
<property name="label" translatable="yes">Same _content left/right</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">0</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkCheckButton" id="checkSameFP">
<property name="label" translatable="yes">Same content on first page</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">1</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelLeftMarg">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">_Left margin:</property>
<property name="use_underline">True</property>
<property name="mnemonic_widget">spinMargLeft:0.00cm</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">2</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkSpinButton" id="spinMargLeft:0.00cm">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="invisible_char">•</property>
<property name="invisible_char_set">True</property>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">2</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelRightMarg">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">R_ight margin:</property>
<property name="use_underline">True</property>
<property name="mnemonic_widget">spinMargRight:0.00cm</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">3</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkSpinButton" id="spinMargRight:0.00cm">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="invisible_char">•</property>
<property name="invisible_char_set">True</property>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">3</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelSpacing">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">_Spacing:</property>
<property name="use_underline">True</property>
<property name="mnemonic_widget">spinSpacing:0.00cm</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">4</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkSpinButton" id="spinSpacing:0.00cm">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="invisible_char">•</property>
<property name="invisible_char_set">True</property>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">4</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkCheckButton" id="checkDynSpacing">
<property name="label" translatable="yes">Use d_ynamic spacing</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">5</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelHeight">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">_Height:</property>
<property name="use_underline">True</property>
<property name="mnemonic_widget">spinHeight:0.00cm</property>
<property name="ellipsize">end</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">6</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkSpinButton" id="spinHeight:0.00cm">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="invisible_char">•</property>
<property name="invisible_char_set">True</property>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">6</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkCheckButton" id="checkAutofit">
<property name="label" translatable="yes">_AutoFit height</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">7</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkButton" id="buttonMore">
<property name="label" translatable="yes">More...</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">8</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<placeholder/>
</child>
<child>
<placeholder/>
</child>
<child>
<placeholder/>
</child>
<child>
<placeholder/>
</child>
<child>
<placeholder/>
</child>
</object>
</child>
</object>
</child>
<child type="label_item">
<placeholder/>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</object>
</child>
<child type="label">
<object class="GtkLabel" id="labelHeaderFooterFormat">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">Header</property>
<attributes>
<attribute name="weight" value="bold"/>
</attributes>
</object>
</child>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">0</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkGrid" id="grid1">
<property name="can_focus">False</property>
<child>
<object class="GtkLabel" id="labelFooterOn">
<property name="can_focus">False</property>
<property name="label" translatable="yes">Footer on</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">0</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelFooter">
<property name="can_focus">False</property>
<property name="label" translatable="yes">Footer</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">1</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelHeaderOn">
<property name="can_focus">False</property>
<property name="label" translatable="yes">Header on</property>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">0</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="labelHeader">
<property name="can_focus">False</property>
<property name="label" translatable="yes">Header</property>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">1</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<placeholder/>
</child>
<child>
<object class="GtkLabel" id="labelMsg">
<property name="can_focus">False</property>
<property name="label" translatable="yes">Removing headers or footers deletes the contents.
Do you want to delete this text?</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">2</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">1</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkFrame" id="frame2">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label_xalign">0</property>
<property name="shadow_type">none</property>
<child>
<object class="GtkAlignment" id="alignment3">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="left_padding">6</property>
<child>
<object class="GtkBox" id="box2">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<property name="spacing">6</property>
<child>
<object class="svxlo-SvxPageWindow" id="drawingareaPageHF">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">center</property>
<property name="valign">center</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkButton" id="buttonEdit">
<property name="label">gtk-edit</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_underline">True</property>
<property name="use_stock">True</property>
<property name="xalign">0.51999998092651367</property>
<property name="always_show_image">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</object>
</child>
<child type="label_item">
<placeholder/>
</child>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">0</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<placeholder/>
</child>
</object>
<object class="GtkSizeGroup" id="sizegroup1">
<property name="ignore_hidden">True</property>
<widgets>
<widget name="spinMargLeft:0.00cm"/>
<widget name="frame2"/>
</widgets>
</object>
</interface>