merge the formfield patch from ooo-build
[ooovba.git] / configmgr / source / inc / treeactions.hxx
blob7d60b785624af983cb88f29b316d35775370eacf
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: treeactions.hxx,v $
10 * $Revision: 1.18 $
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_TREEACTIONS_HXX_
32 #define _CONFIGMGR_TREEACTIONS_HXX_
34 #include "change.hxx"
36 #ifndef INCLUDED_VECTOR
37 #include <vector>
38 #define INCLUDED_VECTOR
39 #endif
41 //..........................................................................
42 namespace configmgr
44 //-----------------------------------------------------------------------------
46 //==========================================================================
47 //= OChangeActionCounter
48 //==========================================================================
49 /** collects meta data about a changes tree
51 struct OChangeActionCounter : public ChangeTreeAction
53 sal_Int32 nValues, nAdds, nRemoves;
55 OChangeActionCounter() :nValues(0), nAdds(0), nRemoves(0) {}
57 virtual void handle(ValueChange const& aValueNode);
58 virtual void handle(AddNode const& aAddNode);
59 virtual void handle(RemoveNode const& aRemoveNode);
60 virtual void handle(SubtreeChange const& aSubtree);
62 sal_Bool hasChanges() const {return nValues || nAdds || nRemoves;}
65 // ===================================================================
66 // = CollectNames
67 // ===================================================================
68 class CollectNames : public NodeAction
70 public:
71 std::vector<rtl::OUString> const& list() const { return aList; }
73 CollectNames() : aList() {}
75 void handle(ValueNode const& aValue) { add(aValue); }
76 void handle(ISubtree const& m_aSubtree) { add(m_aSubtree); }
78 void add(INode const& aNode)
80 aList.push_back(aNode.getName());
82 private:
83 std::vector<rtl::OUString> aList;
86 //..........................................................................
87 } // namespace configmgr
88 //..........................................................................
90 #endif // _CONFIGMGR_TREEACTIONS_HXX_