1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23 #error "don't use this in new code"
26 #include <config_options.h>
27 #include <com/sun/star/uno/Reference.h>
28 #include <vcl/dllapi.h>
29 #include <vcl/vclptr.hxx>
31 namespace vcl
{ class Window
; }
35 namespace com::sun::star::awt
{
42 namespace com::sun::star::accessibility
{
46 class VCL_DLLPUBLIC UnoWrapperBase
49 virtual void Destroy() = 0;
52 virtual css::uno::Reference
< css::awt::XToolkit
> GetVCLToolkit() = 0;
55 virtual css::uno::Reference
< css::awt::XGraphics
> CreateGraphics( OutputDevice
* pOutDev
) = 0;
56 virtual void ReleaseAllGraphics( OutputDevice
* pOutDev
) = 0;
59 virtual css::uno::Reference
<css::awt::XVclWindowPeer
> GetWindowInterface( vcl::Window
* pWindow
) = 0;
60 virtual void SetWindowInterface( vcl::Window
* pWindow
, const css::uno::Reference
< css::awt::XVclWindowPeer
> & xIFace
) = 0;
61 virtual VclPtr
<vcl::Window
> GetWindow(const css::uno::Reference
<css::awt::XWindow
>& rxWindow
) = 0;
64 virtual css::uno::Reference
<css::awt::XPopupMenu
> CreateMenuInterface( PopupMenu
* pPopupMenu
) = 0;
66 virtual void WindowDestroyed( vcl::Window
* pWindow
) = 0;
68 /** Get the application's UNO wrapper object.
70 Note that this static function will only ever try to create UNO wrapper object once, and
71 if it fails then it will not ever try again, even if the function is called multiple times.
73 @param bCreateIfNotExists Create the UNO wrapper object if it doesn't exist when true.
75 @return UNO wrapper object.
77 static UnoWrapperBase
* GetUnoWrapper( bool bCreateIfNotExists
= true );
79 /** Sets the application's UNO Wrapper object.
81 @param pWrapper Pointer to UNO wrapper object.
83 static void SetUnoWrapper( UnoWrapperBase
* pWrapper
);
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */