2009-05-15 07:06:56 -05:00
|
|
|
/*************************************************************************
|
2010-02-25 08:59:15 -06:00
|
|
|
*
|
2009-05-15 07:06:56 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-25 08:59:15 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-05-15 07:06:56 -05:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2010-02-25 08:59:15 -06:00
|
|
|
*
|
2009-05-15 07:06:56 -05:00
|
|
|
************************************************************************/
|
|
|
|
|
2009-09-08 07:59:07 -05:00
|
|
|
#ifndef INCLUDED_CONFIGMGR_SOURCE_SETNODE_HXX
|
|
|
|
#define INCLUDED_CONFIGMGR_SOURCE_SETNODE_HXX
|
2009-05-15 07:06:56 -05:00
|
|
|
|
|
|
|
#include "sal/config.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2009-05-19 03:49:37 -05:00
|
|
|
#include "rtl/ref.hxx"
|
2009-05-15 07:06:56 -05:00
|
|
|
#include "rtl/ustring.hxx"
|
|
|
|
|
|
|
|
#include "node.hxx"
|
|
|
|
#include "nodemap.hxx"
|
|
|
|
|
|
|
|
namespace configmgr {
|
|
|
|
|
|
|
|
class SetNode: public Node {
|
|
|
|
public:
|
|
|
|
SetNode(
|
2009-07-22 07:41:57 -05:00
|
|
|
int layer, rtl::OUString const & defaultTemplateName,
|
2009-05-19 10:32:24 -05:00
|
|
|
rtl::OUString const & templateName);
|
2009-05-15 07:06:56 -05:00
|
|
|
|
2010-05-11 02:29:37 -05:00
|
|
|
virtual rtl::Reference< Node > clone(bool keepTemplateName) const;
|
2009-05-15 07:06:56 -05:00
|
|
|
|
2009-09-04 04:24:45 -05:00
|
|
|
virtual NodeMap & getMembers();
|
|
|
|
|
2009-07-13 10:15:58 -05:00
|
|
|
virtual rtl::OUString getTemplateName() const;
|
|
|
|
|
2009-07-28 08:30:19 -05:00
|
|
|
virtual void setMandatory(int layer);
|
2009-07-27 07:34:10 -05:00
|
|
|
|
2009-07-28 08:30:19 -05:00
|
|
|
virtual int getMandatory() const;
|
2009-07-27 07:34:10 -05:00
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
rtl::OUString const & getDefaultTemplateName() const;
|
|
|
|
|
2009-08-18 03:00:07 -05:00
|
|
|
std::vector< rtl::OUString > & getAdditionalTemplateNames();
|
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
bool isValidTemplate(rtl::OUString const & templateName) const;
|
|
|
|
|
|
|
|
private:
|
2010-05-11 02:29:37 -05:00
|
|
|
SetNode(SetNode const & other, bool keepTemplateName);
|
2009-07-29 08:30:40 -05:00
|
|
|
|
2009-05-19 03:49:37 -05:00
|
|
|
virtual ~SetNode();
|
|
|
|
|
2009-09-04 04:24:45 -05:00
|
|
|
virtual Kind kind() const;
|
|
|
|
|
2009-07-23 05:42:37 -05:00
|
|
|
virtual void clear();
|
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
rtl::OUString defaultTemplateName_;
|
|
|
|
std::vector< rtl::OUString > additionalTemplateNames_;
|
|
|
|
NodeMap members_;
|
2009-05-19 10:32:24 -05:00
|
|
|
rtl::OUString templateName_;
|
|
|
|
// non-empty iff this node is a template, free node, or set member
|
2009-07-28 08:30:19 -05:00
|
|
|
int mandatory_;
|
2009-05-15 07:06:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|