1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
4 * This file is part of the LibreOffice project.
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0. If a copy of the MPL was not distributed with this
8 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 * This file incorporates work covered by the following license notice:
12 * Licensed to the Apache Software Foundation (ASF) under one or more
13 * contributor license agreements. See the NOTICE file distributed
14 * with this work for additional information regarding copyright
15 * ownership. The ASF licenses this file to you under the Apache
16 * License, Version 2.0 (the "License"); you may not use this file
17 * except in compliance with the License. You may obtain a copy of
18 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #ifndef INCLUDED_SVX_SOURCE_INC_FORMCONTROLFACTORY_HXX
22 #define INCLUDED_SVX_SOURCE_INC_FORMCONTROLFACTORY_HXX
24 #include "fmdocumentclassification.hxx"
26 #include <com/sun/star/beans/XPropertySet.hpp>
27 #include <com/sun/star/util/XNumberFormats.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/uno/XComponentContext.hpp>
30 #include <com/sun/star/container/XNameAccess.hpp>
35 namespace tools
{ class Rectangle
; }
37 namespace comphelper
{
38 class ComponentContext
;
45 struct FormControlFactory_Data
;
47 class FormControlFactory
50 FormControlFactory( const css::uno::Reference
<css::uno::XComponentContext
>& _rContext
);
52 ~FormControlFactory();
54 /** initializes the given control model which is to be newly inserted into a document
57 the type of the document which the control is to be inserted into
58 @param _rxControlModel
59 the control model to be inserted
60 @param _rControlBoundRect
61 the bound rect of the control, if applicable
63 the class ID of the control
65 sal_Int16
initializeControlModel(
66 const DocumentType _eDocType
,
67 const css::uno::Reference
< css::beans::XPropertySet
>& _rxControlModel
,
68 const tools::Rectangle
& _rControlBoundRect
71 sal_Int16
initializeControlModel( const DocumentType _eDocType
, const SdrUnoObj
& _rObject
);
72 void initializeControlModel( const DocumentType _eDocType
, const css::uno::Reference
< css::beans::XPropertySet
>& _rxControlModel
);
74 void initializeTextFieldLineEnds(
75 const css::uno::Reference
< css::beans::XPropertySet
>& _rxModel
78 static void initializeFieldDependentProperties(
79 const css::uno::Reference
< css::beans::XPropertySet
>& _rxDatabaseField
,
80 const css::uno::Reference
< css::beans::XPropertySet
>& _rxControlModel
,
81 const css::uno::Reference
< css::util::XNumberFormats
>& _rxNumberFormats
84 static OUString
getDefaultName(
85 const sal_Int16 nClassId
,
86 const css::uno::Reference
< css::lang::XServiceInfo
>& _rxObject
89 static OUString
getDefaultUniqueName_ByComponentType(
90 const css::uno::Reference
< css::container::XNameAccess
>& _rxContainer
,
91 const css::uno::Reference
< css::beans::XPropertySet
>& _rxObject
94 static OUString
getUniqueName(
95 const css::uno::Reference
< css::container::XNameAccess
>& _rxContainer
,
96 const OUString
& _rBaseName
100 ::std::unique_ptr
< FormControlFactory_Data
> m_pData
;
107 #endif // INCLUDED_SVX_SOURCE_INC_FORMCONTROLFACTORY_HXX
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */