170 lines
6.2 KiB
C++
170 lines
6.2 KiB
C++
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_cui.hxx"
|
|
#include "optctl.hxx"
|
|
#include <dialmgr.hxx>
|
|
#include "optctl.hrc"
|
|
#include <cuires.hrc>
|
|
#include <svl/ctloptions.hxx>
|
|
|
|
// class SvxCTLOptionsPage -----------------------------------------------------
|
|
|
|
IMPL_LINK( SvxCTLOptionsPage, SequenceCheckingCB_Hdl, void*, EMPTYARG )
|
|
{
|
|
sal_Bool bIsSequenceChecking = m_aSequenceCheckingCB.IsChecked();
|
|
m_aRestrictedCB.Enable( bIsSequenceChecking );
|
|
m_aTypeReplaceCB.Enable( bIsSequenceChecking );
|
|
// #i48117#: by default restricted and type&replace have to be switched on
|
|
if(bIsSequenceChecking)
|
|
{
|
|
m_aTypeReplaceCB.Check( sal_True );
|
|
m_aRestrictedCB.Check( sal_True );
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
SvxCTLOptionsPage::SvxCTLOptionsPage( Window* pParent, const SfxItemSet& rSet ) :
|
|
|
|
SfxTabPage( pParent, CUI_RES( RID_SVXPAGE_OPTIONS_CTL ), rSet ),
|
|
|
|
m_aSequenceCheckingFL ( this, CUI_RES( FL_SEQUENCECHECKING ) ),
|
|
m_aSequenceCheckingCB ( this, CUI_RES( CB_SEQUENCECHECKING ) ),
|
|
m_aRestrictedCB ( this, CUI_RES( CB_RESTRICTED ) ),
|
|
m_aTypeReplaceCB ( this, CUI_RES( CB_TYPE_REPLACE ) ),
|
|
m_aCursorControlFL ( this, CUI_RES( FL_CURSORCONTROL ) ),
|
|
m_aMovementFT ( this, CUI_RES( FT_MOVEMENT ) ),
|
|
m_aMovementLogicalRB ( this, CUI_RES( RB_MOVEMENT_LOGICAL ) ),
|
|
m_aMovementVisualRB ( this, CUI_RES( RB_MOVEMENT_VISUAL ) ),
|
|
m_aGeneralFL ( this, CUI_RES( FL_GENERAL ) ),
|
|
m_aNumeralsFT ( this, CUI_RES( FT_NUMERALS ) ),
|
|
m_aNumeralsLB ( this, CUI_RES( LB_NUMERALS ) )
|
|
|
|
{
|
|
FreeResource();
|
|
|
|
m_aSequenceCheckingCB.SetClickHdl( LINK( this, SvxCTLOptionsPage, SequenceCheckingCB_Hdl ) );
|
|
|
|
m_aNumeralsLB.SetDropDownLineCount( m_aNumeralsLB.GetEntryCount() );
|
|
}
|
|
// -----------------------------------------------------------------------------
|
|
SvxCTLOptionsPage::~SvxCTLOptionsPage()
|
|
{
|
|
}
|
|
// -----------------------------------------------------------------------------
|
|
SfxTabPage* SvxCTLOptionsPage::Create( Window* pParent, const SfxItemSet& rAttrSet )
|
|
{
|
|
return new SvxCTLOptionsPage( pParent, rAttrSet );
|
|
}
|
|
// -----------------------------------------------------------------------------
|
|
BOOL SvxCTLOptionsPage::FillItemSet( SfxItemSet& )
|
|
{
|
|
BOOL bModified = FALSE;
|
|
SvtCTLOptions aCTLOptions;
|
|
|
|
// Sequence checking
|
|
BOOL bChecked = m_aSequenceCheckingCB.IsChecked();
|
|
if ( bChecked != m_aSequenceCheckingCB.GetSavedValue() )
|
|
{
|
|
aCTLOptions.SetCTLSequenceChecking( bChecked );
|
|
bModified = TRUE;
|
|
}
|
|
|
|
bChecked = m_aRestrictedCB.IsChecked();
|
|
if( bChecked != m_aRestrictedCB.GetSavedValue() )
|
|
{
|
|
aCTLOptions.SetCTLSequenceCheckingRestricted( bChecked );
|
|
bModified = TRUE;
|
|
}
|
|
bChecked = m_aTypeReplaceCB.IsChecked();
|
|
if( bChecked != m_aTypeReplaceCB.GetSavedValue())
|
|
{
|
|
aCTLOptions.SetCTLSequenceCheckingTypeAndReplace(bChecked);
|
|
bModified = TRUE;
|
|
}
|
|
|
|
BOOL bLogicalChecked = m_aMovementLogicalRB.IsChecked();
|
|
BOOL bVisualChecked = m_aMovementVisualRB.IsChecked();
|
|
if ( bLogicalChecked != m_aMovementLogicalRB.GetSavedValue() ||
|
|
bVisualChecked != m_aMovementVisualRB.GetSavedValue() )
|
|
{
|
|
SvtCTLOptions::CursorMovement eMovement =
|
|
bLogicalChecked ? SvtCTLOptions::MOVEMENT_LOGICAL : SvtCTLOptions::MOVEMENT_VISUAL;
|
|
aCTLOptions.SetCTLCursorMovement( eMovement );
|
|
bModified = TRUE;
|
|
}
|
|
|
|
USHORT nPos = m_aNumeralsLB.GetSelectEntryPos();
|
|
if ( nPos != m_aNumeralsLB.GetSavedValue() )
|
|
{
|
|
aCTLOptions.SetCTLTextNumerals( (SvtCTLOptions::TextNumerals)nPos );
|
|
bModified = TRUE;
|
|
}
|
|
|
|
return bModified;
|
|
}
|
|
// -----------------------------------------------------------------------------
|
|
void SvxCTLOptionsPage::Reset( const SfxItemSet& )
|
|
{
|
|
SvtCTLOptions aCTLOptions;
|
|
|
|
m_aSequenceCheckingCB.Check( aCTLOptions.IsCTLSequenceChecking() );
|
|
m_aRestrictedCB.Check( aCTLOptions.IsCTLSequenceCheckingRestricted() );
|
|
m_aTypeReplaceCB.Check( aCTLOptions.IsCTLSequenceCheckingTypeAndReplace() );
|
|
|
|
SvtCTLOptions::CursorMovement eMovement = aCTLOptions.GetCTLCursorMovement();
|
|
switch ( eMovement )
|
|
{
|
|
case SvtCTLOptions::MOVEMENT_LOGICAL :
|
|
m_aMovementLogicalRB.Check();
|
|
break;
|
|
|
|
case SvtCTLOptions::MOVEMENT_VISUAL :
|
|
m_aMovementVisualRB.Check();
|
|
break;
|
|
|
|
default:
|
|
DBG_ERRORFILE( "SvxCTLOptionsPage::Reset(): invalid movement enum" );
|
|
}
|
|
|
|
USHORT nPos = (USHORT)aCTLOptions.GetCTLTextNumerals();
|
|
DBG_ASSERT( nPos < m_aNumeralsLB.GetEntryCount(), "SvxCTLOptionsPage::Reset(): invalid numerals enum" );
|
|
m_aNumeralsLB.SelectEntryPos( nPos );
|
|
|
|
m_aSequenceCheckingCB.SaveValue();
|
|
m_aRestrictedCB.SaveValue();
|
|
m_aTypeReplaceCB.SaveValue();
|
|
m_aMovementLogicalRB.SaveValue();
|
|
m_aMovementVisualRB.SaveValue();
|
|
m_aNumeralsLB.SaveValue();
|
|
|
|
sal_Bool bIsSequenceChecking = m_aSequenceCheckingCB.IsChecked();
|
|
m_aRestrictedCB.Enable( bIsSequenceChecking );
|
|
m_aTypeReplaceCB.Enable( bIsSequenceChecking );
|
|
}
|
|
|