/* -*- 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 . */ #ifndef INCLUDED_VCL_INC_UNX_GTK_GTKINST_HXX #define INCLUDED_VCL_INC_UNX_GTK_GTKINST_HXX #include #include #include #include #include #include #include #include #include #include namespace vcl { namespace unx { class GtkPrintWrapper; } } class GenPspGraphics; class GtkYieldMutex : public SalYieldMutex { std::list aYieldStack; public: GtkYieldMutex() {} void ThreadsEnter(); void ThreadsLeave(); }; #if GTK_CHECK_VERSION(3,0,0) class GtkSalFrame; struct VclToGtkHelper { std::vector aInfoToFlavor; std::vector FormatsToGtk(const css::uno::Sequence &rFormats); void setSelectionData(const css::uno::Reference &rTrans, GtkSelectionData *selection_data, guint info); private: GtkTargetEntry makeGtkTargetEntry(const css::datatransfer::DataFlavor& rFlavor); }; class GtkTransferable : public cppu::WeakImplHelper { protected: std::map m_aMimeTypeToAtom; std::vector getTransferDataFlavorsAsVector(GdkAtom *targets, gint n_targets); public: virtual css::uno::Any SAL_CALL getTransferData(const css::datatransfer::DataFlavor& rFlavor) throw(css::datatransfer::UnsupportedFlavorException, css::io::IOException, css::uno::RuntimeException, std::exception) override = 0; virtual std::vector getTransferDataFlavorsAsVector() = 0; virtual css::uno::Sequence SAL_CALL getTransferDataFlavors() throw(css::uno::RuntimeException, std::exception) override; virtual sal_Bool SAL_CALL isDataFlavorSupported(const css::datatransfer::DataFlavor& rFlavor) throw(css::uno::RuntimeException, std::exception) override; }; class GtkDropTarget : public cppu::WeakComponentImplHelper { osl::Mutex m_aMutex; GtkSalFrame* m_pFrame; bool m_bActive; sal_Int8 m_nDefaultActions; std::list> m_aListeners; public: GtkDropTarget(); virtual ~GtkDropTarget(); // XInitialization virtual void SAL_CALL initialize(const css::uno::Sequence& rArgs) throw (css::uno::Exception, std::exception) override; void deinitialize(); // XDropTarget virtual void SAL_CALL addDropTargetListener(const css::uno::Reference&) throw (std::exception) override; virtual void SAL_CALL removeDropTargetListener(const css::uno::Reference&) throw (std::exception) override; virtual sal_Bool SAL_CALL isActive() throw(std::exception) override; virtual void SAL_CALL setActive(sal_Bool active) throw(std::exception) override; virtual sal_Int8 SAL_CALL getDefaultActions() throw(std::exception) override; virtual void SAL_CALL setDefaultActions(sal_Int8 actions) throw(std::exception) override; OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; sal_Bool SAL_CALL supportsService(OUString const & ServiceName) throw (css::uno::RuntimeException, std::exception) override; css::uno::Sequence SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) override; void fire_dragEnter(const css::datatransfer::dnd::DropTargetDragEnterEvent& dtdee); void fire_dragOver(const css::datatransfer::dnd::DropTargetDragEvent& dtde); void fire_drop(const css::datatransfer::dnd::DropTargetDropEvent& dtde); void fire_dragExit(const css::datatransfer::dnd::DropTargetEvent& dte); }; class GtkDragSource : public cppu::WeakComponentImplHelper { osl::Mutex m_aMutex; GtkSalFrame* m_pFrame; css::uno::Reference m_xListener; css::uno::Reference m_xTrans; VclToGtkHelper m_aConversionHelper; public: GtkDragSource() : WeakComponentImplHelper( m_aMutex ) {} virtual ~GtkDragSource(); // XDragSource virtual sal_Bool SAL_CALL isDragImageSupported() throw(std::exception) override; virtual sal_Int32 SAL_CALL getDefaultCursor(sal_Int8 dragAction) throw(std::exception) override; virtual void SAL_CALL startDrag( const css::datatransfer::dnd::DragGestureEvent& trigger, sal_Int8 sourceActions, sal_Int32 cursor, sal_Int32 image, const css::uno::Reference< css::datatransfer::XTransferable >& transferable, const css::uno::Reference< css::datatransfer::dnd::XDragSourceListener >& listener) throw(std::exception) override; // XInitialization virtual void SAL_CALL initialize(const css::uno::Sequence& rArguments) throw (css::uno::Exception, std::exception) override; void deinitialize(); OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; sal_Bool SAL_CALL supportsService(OUString const & ServiceName) throw (css::uno::RuntimeException, std::exception) override; css::uno::Sequence SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) override; void dragFailed(); void dragDelete(); void dragEnd(GdkDragContext* context); void dragDataGet(GtkSelectionData *data, guint info); }; #endif class GtkSalTimer; #if GTK_CHECK_VERSION(3,0,0) class GtkInstance : public SvpSalInstance #else class GtkInstance : public X11SalInstance #endif { #if GTK_CHECK_VERSION(3,0,0) typedef SvpSalInstance Superclass_t; #else typedef X11SalInstance Superclass_t; #endif public: GtkInstance( SalYieldMutex* pMutex ); virtual ~GtkInstance(); void EnsureInit(); virtual void AfterAppInit() override; virtual SalFrame* CreateFrame( SalFrame* pParent, SalFrameStyleFlags nStyle ) override; virtual SalFrame* CreateChildFrame( SystemParentData* pParent, SalFrameStyleFlags nStyle ) override; virtual SalObject* CreateObject( SalFrame* pParent, SystemWindowData* pWindowData, bool bShow = true ) override; virtual SalSystem* CreateSalSystem() override; virtual SalInfoPrinter* CreateInfoPrinter(SalPrinterQueueInfo* pPrinterQueueInfo, ImplJobSetup* pJobSetup) override; virtual SalPrinter* CreatePrinter( SalInfoPrinter* pInfoPrinter ) override; virtual SalMenu* CreateMenu( bool, Menu* ) override; virtual void DestroyMenu( SalMenu* pMenu ) override; virtual SalMenuItem* CreateMenuItem( const SalItemParams* ) override; virtual void DestroyMenuItem( SalMenuItem* pItem ) override; virtual SalTimer* CreateSalTimer() override; virtual void AddToRecentDocumentList(const OUString& rFileUrl, const OUString& rMimeType, const OUString& rDocumentService) override; virtual SalVirtualDevice* CreateVirtualDevice( SalGraphics*, long &nDX, long &nDY, DeviceFormat eFormat, const SystemGraphicsData* ) override; virtual SalBitmap* CreateSalBitmap() override; virtual SalYieldResult DoYield(bool bWait, bool bHandleAllCurrentEvents, sal_uLong nReleased) override; virtual bool AnyInput( VclInputFlags nType ) override; virtual GenPspGraphics *CreatePrintGraphics() override; virtual bool hasNativeFileSelection() const override { return true; } virtual css::uno::Reference< css::ui::dialogs::XFilePicker2 > createFilePicker( const css::uno::Reference< css::uno::XComponentContext >& ) override; virtual css::uno::Reference< css::ui::dialogs::XFolderPicker2 > createFolderPicker( const css::uno::Reference< css::uno::XComponentContext >& ) override; #if GTK_CHECK_VERSION(3,0,0) virtual css::uno::Reference< css::uno::XInterface > CreateClipboard( const css::uno::Sequence< css::uno::Any >& i_rArguments ) override; virtual css::uno::Reference< css::uno::XInterface > CreateDragSource() override; virtual css::uno::Reference< css::uno::XInterface > CreateDropTarget() override; #endif virtual const cairo_font_options_t* GetCairoFontOptions() override; void RemoveTimer (SalTimer *pTimer); std::shared_ptr getPrintWrapper() const; private: std::vector m_aTimers; bool IsTimerExpired(); bool bNeedsInit; mutable std::shared_ptr m_xPrintWrapper; }; #endif // INCLUDED_VCL_INC_UNX_GTK_GTKINST_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */