/* -*- 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_SD_SOURCE_UI_ANNOTATIONS_ANNOTATIONTAG_HXX #define INCLUDED_SD_SOURCE_UI_ANNOTATIONS_ANNOTATIONTAG_HXX #include #include #include #include "smarttag.hxx" namespace sd { class View; class AnnotationManagerImpl; class AnnotationWindow; class AnnotationTag : public SmartTag { public: AnnotationTag( AnnotationManagerImpl& rManager, ::sd::View& rView, const css::uno::Reference< css::office::XAnnotation >& xAnnotation, Color& rColor, int nIndex, const vcl::Font& rFont ); virtual ~AnnotationTag(); /// @return true if the SmartTag handled the event. virtual bool MouseButtonDown( const MouseEvent&, SmartHdl& ) SAL_OVERRIDE; /// @return true if the SmartTag consumes this event. virtual bool KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; /// @return true if the SmartTag consumes this event. virtual bool RequestHelp( const HelpEvent& rHEvt ) SAL_OVERRIDE; /// @return true if the SmartTag consumes this event. virtual bool Command( const CommandEvent& rCEvt ) SAL_OVERRIDE; // callbacks from sdr view virtual sal_uLong GetMarkablePointCount() const SAL_OVERRIDE; virtual sal_uLong GetMarkedPointCount() const SAL_OVERRIDE; virtual bool MarkPoint(SdrHdl& rHdl, bool bUnmark=false) SAL_OVERRIDE; virtual void CheckPossibilities() SAL_OVERRIDE; virtual bool MarkPoints(const Rectangle* pRect, bool bUnmark) SAL_OVERRIDE; void Move( int nDX, int nDY ); bool OnMove( const KeyEvent& rKEvt ); BitmapEx CreateAnnotationBitmap(bool); css::uno::Reference< css::office::XAnnotation > GetAnnotation() const { return mxAnnotation; } void OpenPopup( bool bEdit ); void ClosePopup(); protected: virtual void addCustomHandles( SdrHdlList& rHandlerList ) SAL_OVERRIDE; virtual bool getContext( SdrViewContext& rContext ) SAL_OVERRIDE; virtual void disposing() SAL_OVERRIDE; virtual void select() SAL_OVERRIDE; virtual void deselect() SAL_OVERRIDE; DECL_LINK( WindowEventHandler, VclWindowEvent* ); DECL_LINK( ClosePopupHdl, void* ); private: AnnotationManagerImpl& mrManager; css::uno::Reference< css::office::XAnnotation > mxAnnotation; VclPtr mpAnnotationWindow; Color maColor; int mnIndex; const ::vcl::Font& mrFont; Size maSize; ImplSVEvent * mnClosePopupEvent; VclPtr mpListenWindow; Point maMouseDownPos; }; } // end of namespace sd #endif // INCLUDED_SD_SOURCE_UI_ANNOTATIONS_ANNOTATIONTAG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */