/* -*- 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_SVX_GALCTRL_HXX #define INCLUDED_SVX_GALCTRL_HXX #include #include #include #include #include class GalleryDragDrop; class GalleryTheme; class GalleryBrowser2; class INetURLObject; class GalleryPreview final : public weld::CustomWidgetController { private: std::unique_ptr mxDragDropTargetHelper; std::unique_ptr mxScrolledWindow; GraphicObject aGraphicObj; tools::Rectangle aPreviewRect; GalleryBrowser2* mpParent; GalleryTheme* mpTheme; bool ImplGetGraphicCenterRect( const Graphic& rGraphic, tools::Rectangle& rResultRect ) const; // Window virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override; virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override; virtual bool MouseButtonDown(const MouseEvent& rMEvt) override; virtual bool Command(const CommandEvent& rCEvt) override; virtual bool KeyInput( const KeyEvent& rKEvt ) override; public: GalleryPreview(GalleryBrowser2* pParent, std::unique_ptr xScrolledWindow); void SetTheme(GalleryTheme* pTheme) { mpTheme = pTheme; } virtual ~GalleryPreview() override; virtual bool StartDrag() override; virtual void Show() override; virtual void Hide() override; void SetGraphic( const Graphic& rGraphic ) { aGraphicObj.SetGraphic( rGraphic ); } static void PreviewMedia( const INetURLObject& rURL ); }; class SVXCORE_DLLPUBLIC DialogGalleryPreview final : public weld::CustomWidgetController { private: GraphicObject aGraphicObj; tools::Rectangle aPreviewRect; SVX_DLLPRIVATE bool ImplGetGraphicCenterRect( const Graphic& rGraphic, tools::Rectangle& rResultRect ) const; SVX_DLLPRIVATE virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override; public: DialogGalleryPreview(); virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override; void SetGraphic( const Graphic& rGraphic ) { aGraphicObj.SetGraphic( rGraphic ); } bool SetGraphic( const INetURLObject& ); }; class GalleryIconView final : public ValueSet { private: std::unique_ptr mxDragDropTargetHelper; GalleryBrowser2* mpParent; GalleryTheme* mpTheme; // ValueSet virtual void UserDraw( const UserDrawEvent& rUDEvt ) override; // Window virtual bool MouseButtonDown( const MouseEvent& rMEvt ) override; virtual bool Command( const CommandEvent& rCEvt ) override; virtual bool KeyInput( const KeyEvent& rKEvt ) override; virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override; public: GalleryIconView(GalleryBrowser2* pParent, std::unique_ptr xScrolledWindow); void SetTheme(GalleryTheme* pTheme) { mpTheme = pTheme; } virtual ~GalleryIconView() override; virtual bool StartDrag() override; static void drawTransparenceBackground(vcl::RenderContext& rOut, const Point& rPos, const Size& rSize); }; #endif // INCLUDED_SVX_GALCTRL_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ on> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-09-06clang-tidy performance-unnecessary-value-paramNoel Grandin
2018-08-02tdf#116350 Import preset text geometry (text effects)Szymon Kłos
2018-07-30Add missing sal/log.hxx headersGabor Kelemen
2017-10-23loplugin:includeform: ooxStephan Bergmann
2017-07-31loplugin:constparams in ooxNoel Grandin
2016-08-19Some clang-tidy misc-move-constructor-initStephan Bergmann
2016-04-25tdf#42949: clean up includes in include/oox/core using iwyuJorenz Paragas
2016-01-21oox: import Math objects from PPTX filesMichael Stahl
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-08-04sal,rsc,oox: inline some use-once typedefsNoel Grandin
2015-02-17fix indentationMarkus Mohrhard
2014-11-01oox: introduce W_TOKEN() macroMiklos Vajna
2014-09-14Move oox/drawingml/*hxx internal headers to oox/inc.Matúš Kukan
2014-06-25remove whitespacesMarkus Mohrhard
2014-05-23DOCX import: recurse into w:ins in groupshape textMiklos Vajna
2014-05-23DOCX import: detect inline shape inside shape textMiklos Vajna
2014-05-23DOCX import: detect table in groupshapeMiklos Vajna
2014-02-23Remove unneccessary commentsAlexander Wilms
2014-02-05drawingML import: paragraph adjustment inside group shapeZolnai Tamás
2014-01-25drawingML import: parse shape text run inside w:sdt and s:sdtContentZolnai Tamás
2013-12-10n#828390: New line is dropped while importing text.Muthu Subramanian
2013-12-09drawingml import: read w:rPrMiklos Vajna
2013-12-09drawingml import: read w:sdtContentMiklos Vajna
2013-12-04DOCX import: parse drawingML group shapes in oox onlyMiklos Vajna
2013-10-29cppcheck: duplicate break or break which follows a returnJulien Nabet
2013-06-28Convert all ContextHandler-derived clases over to ContextHandler2Tor Lillqvist
2012-12-07::rtl:: prefixes removal in ooxJosé Guilherme Vanz