2007-04-11 18:15:17 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* $RCSfile: ctloptions.hxx,v $
|
2009-01-05 15:33:41 +00:00
|
|
|
* $Revision: 1.3.164.1 $
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* 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.
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* 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).
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
2008-04-10 18:02:24 +00:00
|
|
|
* 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.
|
2007-04-11 18:15:17 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _SVTOOLS_CTLOPTIONS_HXX
|
|
|
|
#define _SVTOOLS_CTLOPTIONS_HXX
|
|
|
|
|
|
|
|
#include "svtools/svtdllapi.h"
|
|
|
|
#include <sal/types.h>
|
|
|
|
#include <svtools/brdcst.hxx>
|
|
|
|
#include <svtools/lstner.hxx>
|
|
|
|
#include <svtools/options.hxx>
|
|
|
|
|
|
|
|
class SvtCTLOptions_Impl;
|
|
|
|
|
|
|
|
// class SvtCTLOptions --------------------------------------------------------
|
|
|
|
|
|
|
|
class SVT_DLLPUBLIC SvtCTLOptions:
|
|
|
|
public svt::detail::Options, public SfxBroadcaster, public SfxListener
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
SvtCTLOptions_Impl* m_pImp;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// bDontLoad is for referencing purposes only
|
|
|
|
SvtCTLOptions( sal_Bool bDontLoad = sal_False );
|
|
|
|
virtual ~SvtCTLOptions();
|
|
|
|
|
|
|
|
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
|
|
|
|
|
|
|
|
void SetCTLFontEnabled( sal_Bool _bEnabled );
|
|
|
|
sal_Bool IsCTLFontEnabled() const;
|
|
|
|
|
|
|
|
void SetCTLSequenceChecking( sal_Bool _bEnabled );
|
|
|
|
sal_Bool IsCTLSequenceChecking() const;
|
|
|
|
|
|
|
|
void SetCTLSequenceCheckingRestricted( sal_Bool _bEnable );
|
|
|
|
sal_Bool IsCTLSequenceCheckingRestricted( void ) const;
|
|
|
|
|
|
|
|
void SetCTLSequenceCheckingTypeAndReplace( sal_Bool _bEnable );
|
|
|
|
sal_Bool IsCTLSequenceCheckingTypeAndReplace() const;
|
|
|
|
|
|
|
|
enum CursorMovement
|
|
|
|
{
|
|
|
|
MOVEMENT_LOGICAL = 0,
|
|
|
|
MOVEMENT_VISUAL
|
|
|
|
};
|
|
|
|
void SetCTLCursorMovement( CursorMovement _eMovement );
|
|
|
|
CursorMovement GetCTLCursorMovement() const;
|
|
|
|
|
|
|
|
enum TextNumerals
|
|
|
|
{
|
|
|
|
NUMERALS_ARABIC = 0,
|
|
|
|
NUMERALS_HINDI,
|
2009-01-05 15:33:41 +00:00
|
|
|
NUMERALS_SYSTEM,
|
|
|
|
NUMERALS_CONTEXT
|
2007-04-11 18:15:17 +00:00
|
|
|
};
|
|
|
|
void SetCTLTextNumerals( TextNumerals _eNumerals );
|
|
|
|
TextNumerals GetCTLTextNumerals() const;
|
|
|
|
|
|
|
|
enum EOption
|
|
|
|
{
|
|
|
|
E_CTLFONT,
|
|
|
|
E_CTLSEQUENCECHECKING,
|
|
|
|
E_CTLCURSORMOVEMENT,
|
|
|
|
E_CTLTEXTNUMERALS,
|
|
|
|
E_CTLSEQUENCECHECKINGRESTRICTED,
|
|
|
|
E_CTLSEQUENCECHECKINGTYPEANDREPLACE
|
|
|
|
};
|
|
|
|
sal_Bool IsReadOnly(EOption eOption) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _SVTOOLS_CTLOPTIONS_HXX
|
|
|
|
|