2010-10-27 07:11:31 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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_PROPERTYNODE_HXX
|
|
|
|
#define INCLUDED_CONFIGMGR_SOURCE_PROPERTYNODE_HXX
|
2009-05-15 07:06:56 -05:00
|
|
|
|
|
|
|
#include "sal/config.h"
|
|
|
|
|
|
|
|
#include "com/sun/star/uno/Any.hxx"
|
2009-05-19 03:49:37 -05:00
|
|
|
#include "rtl/ref.hxx"
|
2009-05-15 07:06:56 -05:00
|
|
|
|
|
|
|
#include "node.hxx"
|
|
|
|
#include "type.hxx"
|
|
|
|
|
2009-05-20 10:20:08 -05:00
|
|
|
namespace rtl { class OUString; }
|
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
namespace configmgr {
|
|
|
|
|
2009-10-01 09:48:00 -05:00
|
|
|
class Components;
|
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
class PropertyNode: public Node {
|
|
|
|
public:
|
|
|
|
PropertyNode(
|
2009-11-11 06:51:17 -06:00
|
|
|
int layer, Type staticType, bool nillable,
|
2009-07-22 07:41:57 -05:00
|
|
|
com::sun::star::uno::Any const & value, bool extension);
|
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-11-11 06:51:17 -06:00
|
|
|
Type getStaticType() const;
|
2009-05-15 07:06:56 -05:00
|
|
|
|
|
|
|
bool isNillable() const;
|
|
|
|
|
2009-10-02 08:12:00 -05:00
|
|
|
com::sun::star::uno::Any getValue(Components & components);
|
2009-05-15 07:06:56 -05:00
|
|
|
|
2009-07-23 05:42:37 -05:00
|
|
|
void setValue(int layer, com::sun::star::uno::Any const & value);
|
2009-05-15 07:06:56 -05:00
|
|
|
|
2009-10-01 09:48:00 -05:00
|
|
|
void setExternal(int layer, rtl::OUString const & descriptor);
|
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
bool isExtension() const;
|
|
|
|
|
|
|
|
private:
|
2009-07-29 08:30:40 -05:00
|
|
|
PropertyNode(PropertyNode const & other);
|
|
|
|
|
2009-05-19 03:49:37 -05:00
|
|
|
virtual ~PropertyNode();
|
|
|
|
|
2009-09-04 04:24:45 -05:00
|
|
|
virtual Kind kind() const;
|
|
|
|
|
2009-11-11 06:51:17 -06:00
|
|
|
Type staticType_;
|
|
|
|
// as specified in the component-schema (TYPE_ANY, ...,
|
|
|
|
// TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL)
|
2009-05-15 07:06:56 -05:00
|
|
|
bool nillable_;
|
|
|
|
bool extension_;
|
2010-10-15 09:12:13 -05:00
|
|
|
rtl::OUString externalDescriptor_;
|
|
|
|
com::sun::star::uno::Any value_;
|
2009-05-15 07:06:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 07:11:31 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|