summaryrefslogtreecommitdiff
path: root/svx/source/cui/optctl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/cui/optctl.cxx')
-rw-r--r--svx/source/cui/optctl.cxx182
1 files changed, 0 insertions, 182 deletions
diff --git a/svx/source/cui/optctl.cxx b/svx/source/cui/optctl.cxx
deleted file mode 100644
index 26d775cab7..0000000000
--- a/svx/source/cui/optctl.cxx
+++ /dev/null
@@ -1,182 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2008 by Sun Microsystems, Inc.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * $RCSfile: optctl.cxx,v $
- * $Revision: 1.11 $
- *
- * 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_svx.hxx"
-
-#ifdef SVX_DLLIMPLEMENTATION
-#undef SVX_DLLIMPLEMENTATION
-#endif
-#include "optctl.hxx"
-#include <svx/dialmgr.hxx>
-
-#ifndef _SVX_OPTCTL_HRC
-#include "optctl.hrc"
-#endif
-#ifndef _SVX_DIALOGS_HRC
-#include <svx/dialogs.hrc>
-#endif
-#include <svtools/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, SVX_RES( RID_SVXPAGE_OPTIONS_CTL ), rSet ),
-
- m_aSequenceCheckingFL ( this, SVX_RES( FL_SEQUENCECHECKING ) ),
- m_aSequenceCheckingCB ( this, SVX_RES( CB_SEQUENCECHECKING ) ),
- m_aRestrictedCB ( this, SVX_RES( CB_RESTRICTED ) ),
- m_aTypeReplaceCB ( this, SVX_RES( CB_TYPE_REPLACE ) ),
- m_aCursorControlFL ( this, SVX_RES( FL_CURSORCONTROL ) ),
- m_aMovementFT ( this, SVX_RES( FT_MOVEMENT ) ),
- m_aMovementLogicalRB ( this, SVX_RES( RB_MOVEMENT_LOGICAL ) ),
- m_aMovementVisualRB ( this, SVX_RES( RB_MOVEMENT_VISUAL ) ),
- m_aGeneralFL ( this, SVX_RES( FL_GENERAL ) ),
- m_aNumeralsFT ( this, SVX_RES( FT_NUMERALS ) ),
- m_aNumeralsLB ( this, SVX_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 );
-}
-