Files
libreoffice/forms/source/richtext/richtextmodel.hxx

187 lines
8.0 KiB
C++
Raw Normal View History

2010-10-27 12:45:03 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 INCLUDED_FORMS_SOURCE_RICHTEXT_RICHTEXTMODEL_HXX
#define INCLUDED_FORMS_SOURCE_RICHTEXT_RICHTEXTMODEL_HXX
#include "FormComponent.hxx"
#include "formcontrolfont.hxx"
#include "richtextunowrapper.hxx"
#include <comphelper/propertycontainerhelper.hxx>
#include <comphelper/listenernotification.hxx>
#include <com/sun/star/awt/XDevice.hpp>
#include <com/sun/star/util/XModifyBroadcaster.hpp>
#include <cppuhelper/implbase3.hxx>
#include <tools/link.hxx>
#include <memory>
class EditEngine;
namespace frm
{
class RichTextEngine;
//= ORichTextModel
typedef ::cppu::ImplHelper3 < ::com::sun::star::awt::XControlModel
, ::com::sun::star::lang::XUnoTunnel
, ::com::sun::star::util::XModifyBroadcaster
> ORichTextModel_BASE;
class ORichTextModel
:public OControlModel
,public FontControlModel
,public IEngineTextChangeListener
,public ::comphelper::OPropertyContainerHelper
,public ORichTextModel_BASE
{
public:
DECLARE_DEFAULT_LEAF_XTOR( ORichTextModel );
private:
// <properties>
::com::sun::star::uno::Reference< ::com::sun::star::awt::XDevice >
m_xReferenceDevice;
::com::sun::star::uno::Any m_aTabStop;
::com::sun::star::uno::Any m_aBackgroundColor;
::com::sun::star::uno::Any m_aBorderColor;
::com::sun::star::uno::Any m_aVerticalAlignment;
OUString m_sDefaultControl;
OUString m_sHelpText;
OUString m_sHelpURL;
OUString m_sLastKnownEngineText;
sal_Int16 m_nLineEndFormat;
CWS-TOOLING: integrate CWS rtlcontrols 2008-12-11 21:08:49 +0100 fs r265367 : CONTEXT_WRITING_MODE is transient 2008-12-11 21:08:00 +0100 fs r265365 : REGISTER_PROP_3 2008-12-11 20:53:44 +0100 fs r265362 : ContextWritingMode is not MAYBEVOID 2008-12-11 15:29:08 +0100 fs r265315 : prevent a deadlock during complex.dbaccess.DatabaseDocument test 2008-12-11 15:01:13 +0100 fs r265304 : manual RESYNC to m37 2008-12-10 20:04:38 +0100 pl r265230 : #i30631# fix a snafu in mirroring 2008-12-10 19:14:45 +0100 pl r265229 : #i30631# rework PaintToDevice for RTL controls 2008-12-05 10:19:13 +0100 fs r264893 : #i10000# ImplInitSettings => ImplInitWindow (ImplInitSettings clashed with base classes ImplInitSettings on unxsols4) 2008-12-03 12:55:24 +0100 fs r264768 : #i100000# 2008-12-03 07:11:48 +0100 fs r264741 : #i10000# 2008-12-02 10:37:51 +0100 fs r264670 : CWS-TOOLING: rebase CWS rtlcontrols to trunk@264325 (milestone: DEV300:m36) 2008-12-02 09:27:50 +0100 fs r264660 : merge from trunk 2008-11-25 10:28:36 +0100 ama r264277 : Fix #i94572# 2008-11-24 11:46:48 +0100 fs r264218 : #i30631# proper context writing mode 2008-11-24 09:38:04 +0100 fs r264204 : #i30631# (approved by PL) 2008-11-24 09:35:47 +0100 fs r264203 : #i30631# Context/WritingMode 2008-11-24 09:33:36 +0100 fs r264202 : #i30631# Context/WritingMode 2008-11-24 09:31:53 +0100 fs r264200 : #i30631# RTL 2008-11-19 08:51:48 +0100 fs r263963 : #i10000# 2008-11-18 20:58:11 +0100 fs r263878 : #i10000# 2008-11-18 15:30:44 +0100 fs r263778 : migrate the CWS from CVS to SVN the CVS changes contained in this change set are the ones between the following two CVS tags: CWS_DEV300_RTLCONTROLS_ANCHOR CWS_DEV300_RTLCONTROLS_PRE_MIGRATION 2008-11-18 12:29:04 +0100 ama r263762 : Fix #i94572#: Context direction for drawing objects 2008-11-18 12:25:50 +0100 ama r263761 : Fix #i94572#: Context direction for drawing objects 2008-11-18 12:02:30 +0100 ama r263759 : Fix #i94572#: Context direction for drawing objects
2008-12-16 13:30:53 +00:00
sal_Int16 m_nTextWritingMode;
sal_Int16 m_nContextWritingMode;
sal_Int16 m_nBorder;
bool m_bEnabled;
bool m_bEnableVisible;
bool m_bHardLineBreaks;
bool m_bHScroll;
bool m_bVScroll;
bool m_bReadonly;
bool m_bPrintable;
bool m_bReallyActAsRichText; // despite the class name, the RichTextControl later on
// will create "ordinary" text peers depending on this property
bool m_bHideInactiveSelection;
// </properties>
// <properties_for_awt_edit_compatibility>
::com::sun::star::uno::Any m_aAlign;
sal_Int16 m_nEchoChar;
sal_Int16 m_nMaxTextLength;
bool m_bMultiLine;
// </properties_for_awt_edit_compatibility>
::std::unique_ptr<RichTextEngine>
m_pEngine;
bool m_bSettingEngineText;
::cppu::OInterfaceContainerHelper
m_aModifyListeners;
public:
static RichTextEngine* getEditEngine( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel >& _rxModel );
private:
// UNO
DECLARE_UNO3_AGG_DEFAULTS( ORichTextModel, OControlModel )
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type& _rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XPersistObject
DECLARE_XPERSISTOBJECT()
// XTypeProvider
DECLARE_XTYPEPROVIDER()
// XCloneable
virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XModifyBroadcaster
virtual void SAL_CALL addModifyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifyListener >& aListener ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL removeModifyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifyListener >& aListener ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XPropertySet and friends
virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE;
virtual sal_Bool SAL_CALL convertFastPropertyValue(::com::sun::star::uno::Any& rConvertedValue, ::com::sun::star::uno::Any& rOldValue,
sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
throw(::com::sun::star::lang::IllegalArgumentException) SAL_OVERRIDE;
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue) throw ( ::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any getPropertyDefaultByHandle( sal_Int32 nHandle ) const SAL_OVERRIDE;
// OControlModel's property handling
virtual void describeFixedProperties(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps
) const SAL_OVERRIDE;
virtual void describeAggregateProperties(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rAggregateProps
) const SAL_OVERRIDE;
// prevent method hiding
using OControlModel::disposing;
using OControlModel::getFastPropertyValue;
// OComponentHelper
virtual void SAL_CALL disposing() SAL_OVERRIDE;
// IEngineTextChangeListener
virtual void potentialTextChange( ) SAL_OVERRIDE;
private:
void implInit();
void implDoAggregation();
void implRegisterProperties();
/** propagates a new text to the EditEngine
This method needs to lock the global solar mutex, so our own mutex must not
be locked when calling.
@precond
our mutex is not locked
*/
void impl_smlock_setEngineText( const OUString& _rText );
DECL_LINK( OnEngineContentModified, void* );
static ::com::sun::star::uno::Sequence< sal_Int8 > getEditEngineTunnelId();
private:
ORichTextModel( const ORichTextModel& ) SAL_DELETED_FUNCTION;
ORichTextModel& operator=( const ORichTextModel& ) SAL_DELETED_FUNCTION;
};
} // namespace frm
#endif // INCLUDED_FORMS_SOURCE_RICHTEXT_RICHTEXTMODEL_HXX
2010-10-27 12:45:03 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */