remove assert looking for new compatibilityMode DOCX
[LibreOffice.git] / vcl / unx / generic / dtrans / X11_clipboard.hxx
blob4fd492154c746961e5add8ad92aa83fd0e2ddebe
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 #include "X11_selection.hxx"
24 #include <com/sun/star/datatransfer/clipboard/XSystemClipboard.hpp>
25 #include <cppuhelper/compbase.hxx>
27 inline constexpr OUString X11_CLIPBOARD_IMPLEMENTATION_NAME = u"com.sun.star.datatransfer.X11ClipboardSupport"_ustr;
29 namespace x11 {
31 class X11Clipboard :
32 public ::cppu::WeakComponentImplHelper <
33 css::datatransfer::clipboard::XSystemClipboard,
34 css::lang::XServiceInfo
36 public SelectionAdaptor
38 css::uno::Reference< css::datatransfer::XTransferable > m_aContents;
39 css::uno::Reference< css::datatransfer::clipboard::XClipboardOwner > m_aOwner;
41 rtl::Reference<SelectionManager> m_xSelectionManager;
42 ::std::vector< css::uno::Reference< css::datatransfer::clipboard::XClipboardListener > > m_aListeners;
43 Atom m_aSelection;
45 X11Clipboard( SelectionManager& rManager, Atom aSelection );
47 friend class SelectionManager;
49 void fireChangedContentsEvent();
50 void clearContents();
52 public:
54 static css::uno::Reference<css::datatransfer::clipboard::XClipboard>
55 create( SelectionManager& rManager, Atom aSelection );
57 virtual ~X11Clipboard() override;
60 * XServiceInfo
63 virtual OUString SAL_CALL getImplementationName( ) override;
65 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
67 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
70 * XClipboard
73 virtual css::uno::Reference< css::datatransfer::XTransferable > SAL_CALL getContents() override;
75 virtual void SAL_CALL setContents(
76 const css::uno::Reference< css::datatransfer::XTransferable >& xTrans,
77 const css::uno::Reference< css::datatransfer::clipboard::XClipboardOwner >& xClipboardOwner ) override;
79 virtual OUString SAL_CALL getName() override;
82 * XClipboardEx
85 virtual sal_Int8 SAL_CALL getRenderingCapabilities() override;
88 * XClipboardNotifier
90 virtual void SAL_CALL addClipboardListener(
91 const css::uno::Reference< css::datatransfer::clipboard::XClipboardListener >& listener ) override;
93 virtual void SAL_CALL removeClipboardListener(
94 const css::uno::Reference< css::datatransfer::clipboard::XClipboardListener >& listener ) override;
97 * SelectionAdaptor
99 virtual css::uno::Reference< css::datatransfer::XTransferable > getTransferable() override;
100 virtual void clearTransferable() override;
101 virtual void fireContentsChanged() override;
102 virtual css::uno::Reference< css::uno::XInterface > getReference() noexcept override;
105 css::uno::Sequence< OUString > X11Clipboard_getSupportedServiceNames();
106 css::uno::Reference< css::uno::XInterface > SAL_CALL X11Clipboard_createInstance(
107 const css::uno::Reference< css::lang::XMultiServiceFactory > & xMultiServiceFactory);
109 } // namespace
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */