Bump version to 6.4-15
[LibreOffice.git] / svx / source / inc / fmcontrollayout.hxx
blob90027568066aafc7395af939ecffbba737374ebb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SVX_SOURCE_INC_FMCONTROLLAYOUT_HXX
21 #define INCLUDED_SVX_SOURCE_INC_FMCONTROLLAYOUT_HXX
23 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include "fmdocumentclassification.hxx"
26 #include <unotools/confignode.hxx>
29 namespace svxform
32 namespace ControlLayouter
34 /** initializes the layout of a newly created form control (model)
36 void initializeControlLayout(
37 const css::uno::Reference< css::beans::XPropertySet >& _rxControlModel,
38 DocumentType _eDocType
41 /** determines whether for the given document type, dynamic control border coloring is enabled
43 bool useDynamicBorderColor( DocumentType _eDocType );
45 /** determines whether for the given document type, form controls should use the document's reference device
46 for text rendering
48 bool useDocumentReferenceDevice( DocumentType _eDocType );
50 /** gets the "default" style in a document which can be used if some default text format is needed
52 It depends on the type document type which concrete kind of style is returned, but it is expected to support
53 the css.style.CharacterProperties service.
55 @param _rxModel
56 a form component.
58 css::uno::Reference< css::beans::XPropertySet >
59 getDefaultDocumentTextStyle( const css::uno::Reference< css::beans::XPropertySet >& _rxModel );
66 #endif // INCLUDED_SVX_SOURCE_INC_FMCONTROLLAYOUT_HXX
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */