bump product version to 4.1.6.2
[LibreOffice.git] / svx / source / inc / fmcontrollayout.hxx
blob6cc152254c139b46aae0512b7d4b959da3afb117
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 SVX_SOURCE_INC_FMCONTROLLAYOUT_HXX
21 #define SVX_SOURCE_INC_FMCONTROLLAYOUT_HXX
23 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include "fmdocumentclassification.hxx"
26 #include <unotools/confignode.hxx>
28 //........................................................................
29 namespace svxform
31 //........................................................................
33 //====================================================================
34 //= ControlLayouter
35 //====================================================================
36 class ControlLayouter
38 public:
39 /** initializes the layout of a newly created form control (model)
41 static void initializeControlLayout(
42 const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxControlModel,
43 DocumentType _eDocType
46 /** determines whether for the given document type, dynamic control border coloring is enabled
48 static bool useDynamicBorderColor( DocumentType _eDocType );
50 /** determines whether for the given document type, form controls should use the document's reference device
51 for text rendering
53 static bool useDocumentReferenceDevice( DocumentType _eDocType );
55 /** gets the "default" style in a document which can be used if some default text format is needed
57 It depends on the type document type which concrete kind of style is returned, but it is expected to support
58 the css.style.CharacterProperties service.
60 @param _rxModel
61 a form component.
63 static ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
64 getDefaultDocumentTextStyle( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxModel );
66 private:
67 ControlLayouter(); // never implemented
69 private:
70 static ::utl::OConfigurationNode
71 getLayoutSettings(
72 DocumentType _eDocType
76 //........................................................................
77 } // namespace svxform
78 //........................................................................
80 #endif // SVX_SOURCE_INC_FMCONTROLLAYOUT_HXX
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */