1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: layerupdatebuilder.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef CONFIGMGR_BACKEND_LAYERUPDATEBUILDER_HXX
32 #define CONFIGMGR_BACKEND_LAYERUPDATEBUILDER_HXX
34 #include "layerupdate.hxx"
35 #include <com/sun/star/uno/Any.hxx>
36 #include <com/sun/star/uno/Type.hxx>
37 #include <rtl/ustring.hxx>
39 namespace com
{ namespace sun
{ namespace star
{ namespace configuration
{ namespace backend
{
40 struct TemplateIdentifier
;
45 // -----------------------------------------------------------------------------
48 // -----------------------------------------------------------------------------
49 namespace uno
= ::com::sun::star::uno
;
50 namespace backenduno
= ::com::sun::star::configuration::backend
;
51 // -----------------------------------------------------------------------------
55 class LayerUpdateBuilder
57 LayerUpdate m_aUpdate
;
58 NodeUpdate
* m_pCurrentNode
;
59 PropertyUpdate
* m_pCurrentProp
;
64 /// initialize the update
67 bool modifyNode(rtl::OUString
const & _aName
, sal_Int16 _nFlags
, sal_Int16 _nFlagsMask
, sal_Bool _bReset
);
68 bool replaceNode(rtl::OUString
const & _aName
, sal_Int16 _nFlags
, backenduno::TemplateIdentifier
const * _pTemplate
= NULL
);
71 bool removeNode(rtl::OUString
const & _aName
);
73 bool modifyProperty(rtl::OUString
const & _aName
, sal_Int16 _nFlags
, sal_Int16 _nFlagsMask
, uno::Type
const & _aType
);
74 bool setPropertyValue(uno::Any
const & _aValue
);
75 bool setPropertyValueForLocale(uno::Any
const & _aValue
, rtl::OUString
const & _aLocale
);
76 bool resetPropertyValue();
77 bool resetPropertyValueForLocale(rtl::OUString
const & _aLocale
);
78 bool finishProperty();
80 bool addNullProperty(rtl::OUString
const & _aName
, sal_Int16 _nFlags
, uno::Type
const & _aType
);
81 bool addProperty(rtl::OUString
const & _aName
, sal_Int16 _nFlags
, uno::Any
const & _aValue
);
82 bool resetProperty(rtl::OUString
const & _aName
);
88 bool isActive() const;
89 #if OSL_DEBUG_LEVEL > 0
90 bool isComplete() const;
92 bool isPropertyActive() const;
94 LayerUpdate
const & result() const;
98 // -----------------------------------------------------------------------------
100 } // namespace backend
101 // -----------------------------------------------------------------------------
103 } // namespace configmgr