LibreOffice Module vcl (master) 1
unowrap.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23#error "don't use this in new code"
24#endif
25
26#include <config_options.h>
27#include <com/sun/star/uno/Reference.h>
28#include <vcl/dllapi.h>
29#include <vcl/vclptr.hxx>
30
31namespace vcl { class Window; }
32class Menu;
33class OutputDevice;
34class PopupMenu;
35namespace com::sun::star::awt {
36 class XGraphics;
37 class XPopupMenu;
38 class XToolkit;
39 class XWindow;
40 class XVclWindowPeer;
41}
43 class XAccessible;
44}
45
47{
48public:
49 virtual void Destroy() = 0;
50
51 // Toolkit
52 virtual css::uno::Reference< css::awt::XToolkit > GetVCLToolkit() = 0;
53
54 // Graphics
55 virtual css::uno::Reference< css::awt::XGraphics > CreateGraphics( OutputDevice* pOutDev ) = 0;
56 virtual void ReleaseAllGraphics( OutputDevice* pOutDev ) = 0;
57
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;
62
63 // PopupMenu
64 virtual css::uno::Reference<css::awt::XPopupMenu> CreateMenuInterface( PopupMenu* pPopupMenu ) = 0;
65
66 virtual void WindowDestroyed( vcl::Window* pWindow ) = 0;
67
68 // Accessibility
69 virtual css::uno::Reference< css::accessibility::XAccessible >
70 CreateAccessible( Menu* pMenu, bool bIsMenuBar ) = 0;
71
81 static UnoWrapperBase* GetUnoWrapper( bool bCreateIfNotExists = true );
82
87 static void SetUnoWrapper( UnoWrapperBase* pWrapper );
88
89protected:
91};
92
93/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: menu.hxx:116
Some things multiple-inherit from VclAbstractDialog and OutputDevice, so we need to use virtual inher...
Definition: outdev.hxx:170
virtual void ReleaseAllGraphics(OutputDevice *pOutDev)=0
virtual css::uno::Reference< css::awt::XVclWindowPeer > GetWindowInterface(vcl::Window *pWindow)=0
virtual css::uno::Reference< css::awt::XPopupMenu > CreateMenuInterface(PopupMenu *pPopupMenu)=0
virtual void SetWindowInterface(vcl::Window *pWindow, const css::uno::Reference< css::awt::XVclWindowPeer > &xIFace)=0
virtual void WindowDestroyed(vcl::Window *pWindow)=0
virtual void Destroy()=0
virtual css::uno::Reference< css::accessibility::XAccessible > CreateAccessible(Menu *pMenu, bool bIsMenuBar)=0
virtual VclPtr< vcl::Window > GetWindow(const css::uno::Reference< css::awt::XWindow > &rxWindow)=0
virtual css::uno::Reference< css::awt::XToolkit > GetVCLToolkit()=0
virtual css::uno::Reference< css::awt::XGraphics > CreateGraphics(OutputDevice *pOutDev)=0
#define VCL_DLLPUBLIC
Definition: dllapi.h:29