Update git submodules
[LibreOffice.git] / include / vcl / toolkit / unowrap.hxx
blob9d12319192291c82e1652f2d6d6a557238bc9352
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #pragma once
22 #if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23 #error "don't use this in new code"
24 #endif
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; }
32 class Menu;
33 class OutputDevice;
34 class PopupMenu;
35 namespace com::sun::star::awt {
36 class XGraphics;
37 class XPopupMenu;
38 class XToolkit;
39 class XWindow;
40 class XVclWindowPeer;
42 namespace com::sun::star::accessibility {
43 class XAccessible;
46 class VCL_DLLPUBLIC UnoWrapperBase
48 public:
49 virtual void Destroy() = 0;
51 // Toolkit
52 virtual css::uno::Reference< css::awt::XToolkit > GetVCLToolkit() = 0;
54 // Graphics
55 virtual css::uno::Reference< css::awt::XGraphics > CreateGraphics( OutputDevice* pOutDev ) = 0;
56 virtual void ReleaseAllGraphics( OutputDevice* pOutDev ) = 0;
58 // Window
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;
63 // PopupMenu
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 );
85 protected:
86 ~UnoWrapperBase() {}
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */