1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SD_SOURCE_UI_INC_FRAMEWORK_RESOURCEID_HXX
#define INCLUDED_SD_SOURCE_UI_INC_FRAMEWORK_RESOURCEID_HXX
#include <com/sun/star/drawing/framework/XResourceId.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/util/XURLTransformer.hpp>
#include <cppuhelper/compbase2.hxx>
#include <boost/scoped_ptr.hpp>
namespace {
typedef ::cppu::WeakImplHelper2 <
css::drawing::framework::XResourceId,
css::lang::XInitialization
> ResourceIdInterfaceBase;
} // end of anonymous namespace.
namespace sd { namespace framework {
/** Implementation of the css::drawing::framework::ResourceId
service and the css::drawing::framework::XResourceId
interface.
*/
class ResourceId
: public ResourceIdInterfaceBase
{
public:
/** Create a new, empty resource id.
*/
ResourceId (void);
/** Create a new resource id that is described by the given URLs.
@param rsResourceURLs
The first URL specifies the type of resource. The other URLs
describe its anchor.
The set of URLs may be empty. The result is then the same as
returned by ResourceId() default constructor.
*/
ResourceId (const ::std::vector<OUString>& rsResourceURLs);
/** Create a new resource id that has an empty anchor.
@param rsResourceURL
When this resource URL is empty then the resulting ResourceId
object is identical to when the ResourceId() default constructor
had been called.
*/
ResourceId (
const OUString& rsResourceURL);
/** Create a new resource id for the given resource type and an anchor
that is specified by a single URL. This constructor can be used for
example for views that are bound to panes.
@param rsResourceURL
The URL of the actual resource.
@param rsAnchorURL
The single URL of the anchor.
*/
ResourceId (
const OUString& rsResourceURL,
const OUString& rsAnchorURL);
/** Create a new resource id with an anchor that consists of a sequence
of URLs that is extended by a further URL.
@param rsResourceURL
The URL of the actual resource.
@param rsFirstAnchorURL
This URL extends the anchor given by rAnchorURLs.
@param rAnchorURLs
An anchor as it is returned by XResourceId::getAnchorURLs().
*/
ResourceId (
const OUString& rsResourceURL,
const OUString& rsFirstAnchorURL,
const css::uno::Sequence<OUString>& rAnchorURLs);
virtual ~ResourceId (void);
/** Return the list of URLs of both the resource URL and the anchor
URLs.
*/
const ::std::vector<OUString>& GetResourceURLs (void) const;
//===== XResourceId =======================================================
virtual OUString SAL_CALL
getResourceURL (void)
throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::util::URL SAL_CALL
getFullResourceURL (void)
throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
hasAnchor (void)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Reference<
css::drawing::framework::XResourceId> SAL_CALL
getAnchor (void)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Sequence<OUString> SAL_CALL
getAnchorURLs (void)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL
getResourceTypePrefix (void)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Int16 SAL_CALL
compareTo (const css::uno::Reference<
css::drawing::framework::XResourceId>& rxResourceId)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
isBoundTo (
const css::uno::Reference<
css::drawing::framework::XResourceId>& rxResourceId,
css::drawing::framework::AnchorBindingMode eMode)
throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
isBoundToURL (
const OUString& rsAnchorURL,
css::drawing::framework::AnchorBindingMode eMode)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Reference<
css::drawing::framework::XResourceId> SAL_CALL
clone (void)
throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
//===== XInitialization ===================================================
void SAL_CALL initialize (
const css::uno::Sequence<css::uno::Any>& aArguments)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
/** The set of URLs that consist of the resource URL at index 0 and the
anchor URLs and indices 1 and above.
*/
::std::vector<OUString> maResourceURLs;
::boost::scoped_ptr<css::util::URL> mpURL;
static css::uno::WeakReference<css::util::XURLTransformer> mxURLTransformerWeak;
/** Compare the called ResourceId object to the given ResourceId object.
This uses the implementation of both objects to speed up the
comparison.
*/
sal_Int16 CompareToLocalImplementation (const ResourceId& rId) const;
/** Compare the called ResourceId object to the given XResourceId object
reference. The comparison is done via the UNO interface. Namely,
it uses the getResourceURL() and the getAnchorURLs() methods to get
access to the URLs of the given objec.
*/
sal_Int16 CompareToExternalImplementation (const css::uno::Reference<
css::drawing::framework::XResourceId>& rxId) const;
/** Return whether the called ResourceId object is bound to the anchor
consisting of the URLs given by psFirstAnchorURL and paAnchorURLs.
@param psFirstAnchorURL
Optional first URL of the anchor. This can be missing or present
independently of paAnchorURLs.
@param paAnchorURLs
Optional set of additional anchor URLs. This can be missing or
present independently of psFirstAnchorURL.
@param eMode
This specifies whether the called resource has to be directly
bound to the given anchor in order to return <TRUE/> or whether
it can be bound indirectly, too.
*/
bool IsBoundToAnchor (
const OUString* psFirstAnchorURL,
const css::uno::Sequence<OUString>* paAnchorURLs,
css::drawing::framework::AnchorBindingMode eMode) const;
/** Return whether the called ResourceId object is bound to the anchor
consisting of the URLs in rResourceURLs.
@param rResourceURLs
A possibly empty list of anchor URLs.
@param eMode
This specifies whether the called resource has to be directly
bound to the given anchor in order to return <TRUE/> or whether
it can be bound indirectly, too.
*/
bool IsBoundToAnchor (
const ::std::vector<OUString>& rResourceURLs,
css::drawing::framework::AnchorBindingMode eMode) const;
void ParseResourceURL (void);
};
} } // end of namespace sd::framework
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|