/* -*- 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 .
*/
namespace com::sun::star::beans { struct PropertyValue; } namespace com::sun::star::geometry { class XMapping2D; } namespace com::sun::star::rendering { class XBitmap; } namespace com::sun::star::rendering { class XCachedPrimitive; } namespace com::sun::star::rendering { class XCanvasFont; } namespace com::sun::star::rendering { class XGraphicDevice; } namespace com::sun::star::rendering { class XPolyPolygon2D; } namespace com::sun::star::rendering { class XTextLayout; } namespace com::sun::star::rendering { struct FontInfo; } namespace com::sun::star::rendering { struct StringContext; }
namespace canvas
{ /** Helper template to handle XCanvas method forwarding to CanvasHelper
Use this helper to handle the XCanvas part of your implementation. In theory, we could have provided CanvasHelper and CanvasBase as a single template, but that would duplicate a lot of code now residing in CanvasHelper only.
This template basically interposes itself between the full interface you implement (i.e. not restricted to XCanvas. The problem with UNO partial interface implementation actually is, that you cannot do it the plain way, since deriving from a common base subclass always introduces the whole set of pure virtuals, that your baseclass helper just overridden) and your implementation class. You then only have to implement the functionality <em>besides</em> XCanvas.
class ExampleCanvas : public ExampleCanvas_Base, public SpriteSurface, public RepaintTarget { }; </pre>
@tpl Base Base class to use, most probably the WeakComponentImplHelper template with the appropriate interfaces. At least XCanvas should be among them (why else would you use this template, then?). Base class must have an Base( const Mutex& ) constructor (like the WeakComponentImplHelper template has). As the very least, the base class must be derived from uno::XInterface, as some error reporting mechanisms rely on that.
@tpl CanvasHelper Canvas helper implementation for the backend in question. This object will be held as a member of this template class, and basically gets forwarded all XCanvas API calls. Furthermore, every time the canvas API semantically changes the content of the canvas, CanvasHelper::modifying() will get called (<em>before</em> the actual modification takes place).
@tpl Mutex Lock strategy to use. Defaults to using the BaseMutex-provided lock. Every time one of the methods is entered, an object of type Mutex is created with m_aMutex as the sole parameter, and destroyed again when the method scope is left.
@tpl UnambiguousBase Optional unambiguous base class for XInterface of Base. It's sometimes necessary to specify this parameter, e.g. if Base derives from multiple UNO interface (were each provides its own version of XInterface, making the conversion ambiguous)
*/ template< class Base, class CanvasHelper, class Mutex=::osl::MutexGuard, class UnambiguousBase=css::uno::XInterface > class CanvasBase : public Base
{ public: typedef Base BaseType; typedef Mutex MutexType; typedef UnambiguousBase UnambiguousBaseType;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.