merge the formfield patch from ooo-build
[ooovba.git] / configmgr / source / api2 / treeiterators.cxx
blobbb26557b41dc59f16a02425137fb930b471dc9ad
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: treeiterators.cxx,v $
10 * $Revision: 1.5 $
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 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_configmgr.hxx"
33 #include <stdio.h>
35 #include "treeiterators.hxx"
37 #include "apitypes.hxx"
38 #include "configpath.hxx"
39 #include "attributes.hxx"
40 #include "valueref.hxx"
41 #include "propertyinfohelper.hxx"
43 // .......................................................................
44 namespace configmgr
46 // .......................................................................
47 namespace configapi
49 // ===================================================================
50 // = CollectNodeNames
51 // ===================================================================
52 // -------------------------------------------------------------------
53 CollectPropertyInfo::Result CollectNodeNames::handle(rtl::Reference< configuration::Tree > const& aTree, configuration::NodeRef const& aNode)
55 m_aList.push_back(aTree->getSimpleNodeName(aNode.getOffset()));
56 return CONTINUE;
59 // -------------------------------------------------------------------
60 CollectPropertyInfo::Result CollectNodeNames::handle(rtl::Reference< configuration::Tree > const&, configuration::ValueRef const& aNode)
62 m_aList.push_back(aNode.m_sNodeName);
63 return CONTINUE;
66 // ===================================================================
67 // = CollectPropertyInfo
68 // ===================================================================
69 // -------------------------------------------------------------------
70 CollectNodeNames::Result CollectPropertyInfo::handle(rtl::Reference< configuration::Tree > const& aTree, configuration::NodeRef const& aNode)
72 rtl::OUString aName = aTree->getSimpleNodeName(aNode.getOffset());
73 node::Attributes aAttributes = aTree->getAttributes(aNode);
74 uno::Type aApiType = getUnoInterfaceType();
76 m_aList.push_back( helperMakeProperty(aName,aAttributes,aApiType,aTree->hasNodeDefault(aNode)) );
77 return CONTINUE;
80 // -------------------------------------------------------------------
81 CollectNodeNames::Result CollectPropertyInfo::handle(rtl::Reference< configuration::Tree > const& aTree, configuration::ValueRef const& aNode)
83 rtl::OUString aName = aNode.m_sNodeName;
84 node::Attributes aAttributes = aTree->getAttributes(aNode);
85 uno::Type aApiType = aTree->getUnoType(aNode);
87 m_aList.push_back( helperMakeProperty(aName,aAttributes,aApiType,aTree->hasNodeDefault(aNode)) );
88 return CONTINUE;
90 // .......................................................................
91 } // namespace configapi
93 // .......................................................................
94 } // namespace configmgr
95 // .......................................................................