LCOV - code coverage report
Current view: top level - sd/source/ui/annotations - annotationwindow.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 7 0.0 %
Date: 2014-11-03 Functions: 0 7 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       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             : #ifndef INCLUDED_SD_SOURCE_UI_ANNOTATIONS_ANNOTATIONWINDOW_HXX
      21             : #define INCLUDED_SD_SOURCE_UI_ANNOTATIONS_ANNOTATIONWINDOW_HXX
      22             : 
      23             : #include <com/sun/star/office/XAnnotation.hpp>
      24             : 
      25             : #include <vcl/ctrl.hxx>
      26             : #include <vcl/lineinfo.hxx>
      27             : #include <vcl/floatwin.hxx>
      28             : 
      29             : #include <basegfx/polygon/b2dpolygon.hxx>
      30             : 
      31             : #include <svx/sdr/overlay/overlayobject.hxx>
      32             : #include <editeng/editstat.hxx>
      33             : 
      34             : class OutlinerView;
      35             : class Outliner;
      36             : class ScrollBar;
      37             : class MultiLineEdit;
      38             : class SvxLanguageItem;
      39             : class SdDrawDocument;
      40             : 
      41             : namespace sd {
      42             : 
      43             : class AnnotationManagerImpl;
      44             : class AnnotationWindow;
      45             : class DrawDocShell;
      46             : class TextApiObject;
      47             : class View;
      48             : 
      49             : class AnnotationTextWindow : public Control
      50             : {
      51             : private:
      52             :     OutlinerView*       mpOutlinerView;
      53             :     AnnotationWindow*   mpAnnotationWindow;
      54             : 
      55             : protected:
      56             :     virtual void    Paint( const Rectangle& rRect) SAL_OVERRIDE;
      57             :     virtual void    KeyInput( const KeyEvent& rKeyEvt ) SAL_OVERRIDE;
      58             :     virtual void    MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
      59             :     virtual void    MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
      60             :     virtual void    MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
      61             :     virtual void    Command( const CommandEvent& rCEvt ) SAL_OVERRIDE;
      62             :     virtual void    LoseFocus() SAL_OVERRIDE;
      63             : 
      64             : public:
      65             :     AnnotationTextWindow( AnnotationWindow* pParent, WinBits nBits );
      66             :     virtual ~AnnotationTextWindow();
      67             : 
      68           0 :     void SetOutlinerView( OutlinerView* pOutlinerView ) { mpOutlinerView = pOutlinerView; }
      69             : 
      70             :     virtual OUString GetSurroundingText() const SAL_OVERRIDE;
      71             :     virtual Selection GetSurroundingTextSelection() const SAL_OVERRIDE;
      72             : 
      73             :     virtual void    GetFocus() SAL_OVERRIDE;
      74             : };
      75             : 
      76             : class AnnotationWindow : public FloatingWindow
      77             : {
      78             :     private:
      79             :         AnnotationManagerImpl&  mrManager;
      80             :         DrawDocShell*           mpDocShell;
      81             :         View*                   mpView;
      82             :         SdDrawDocument*         mpDoc;
      83             : 
      84             :         OutlinerView*           mpOutlinerView;
      85             :         Outliner*               mpOutliner;
      86             :         ScrollBar*              mpVScrollbar;
      87             :         ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation > mxAnnotation;
      88             :         bool                    mbReadonly;
      89             :         bool                    mbProtected;
      90             :         bool                    mbMouseOverButton;
      91             :         AnnotationTextWindow*   mpTextWindow;
      92             :         MultiLineEdit*          mpMeta;
      93             :         Rectangle               maRectMetaButton;
      94             :         basegfx::B2DPolygon     maPopupTriangle;
      95             : 
      96             :     protected:
      97             :         void            SetSizePixel( const Size& rNewSize ) SAL_OVERRIDE;
      98             : 
      99             :         DECL_LINK(ModifyHdl, void*);
     100             :         DECL_LINK(ScrollHdl, ScrollBar*);
     101             : 
     102             :     public:
     103             :         AnnotationWindow( AnnotationManagerImpl& rManager, DrawDocShell* pDocShell, vcl::Window* pParent );
     104             :         virtual ~AnnotationWindow();
     105             : 
     106             :         void StartEdit();
     107             : 
     108             :         virtual SvxLanguageItem GetLanguage(void);
     109             : 
     110             :         void setAnnotation( const ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation >& xAnnotation, bool bGrabFocus = false );
     111             :         const ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation >& getAnnotation() const { return mxAnnotation; }
     112             : 
     113             :         void ExecuteSlot( sal_uInt16 nSID );
     114             : 
     115             :         ScrollBar*      Scrollbar()     { return mpVScrollbar;}
     116             : 
     117           0 :         DrawDocShell*           DocShell()      { return mpDocShell; }
     118           0 :         OutlinerView*           getView()       { return mpOutlinerView; }
     119           0 :         sd::View*               DocView()       { return mpView; }
     120           0 :         Outliner*               Engine()        { return mpOutliner; }
     121           0 :         SdDrawDocument*         Doc()           { return mpDoc; }
     122             : 
     123             :         long            GetPostItTextHeight();
     124             : 
     125             :         void            InitControls();
     126             :         void            HidePostIt();
     127             :         void            DoResize();
     128             :         void            ResizeIfNecessary(long aOldHeight, long aNewHeight);
     129             :         void            SetScrollbar();
     130             : 
     131             :         void            Rescale();
     132             : 
     133             :         bool            IsReadOnly() { return mbReadonly;}
     134             : 
     135           0 :         bool            IsProtected() { return mbProtected; }
     136             : 
     137             :         void            SetLanguage(const SvxLanguageItem &aNewItem);
     138             : 
     139             :         sal_Int32       GetScrollbarWidth();
     140             : 
     141             :         void            ToggleInsMode();
     142             : 
     143             :         DECL_LINK( OnlineSpellCallback, SpellCallbackInfo*);
     144             : 
     145             :         virtual void    Deactivate() SAL_OVERRIDE;
     146             :         virtual void    Paint( const Rectangle& rRect) SAL_OVERRIDE;
     147             :         virtual void    MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
     148             :         virtual void    MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
     149             :         virtual void    Command( const CommandEvent& rCEvt ) SAL_OVERRIDE;
     150             :         virtual void    GetFocus() SAL_OVERRIDE;
     151             : 
     152             :         void            SetColor();
     153             : 
     154             :         Color           maColor;
     155             :         Color           maColorDark;
     156             :         Color           maColorLight;
     157             : };
     158             : 
     159             : TextApiObject* getTextApiObject( const css::uno::Reference< css::office::XAnnotation >& xAnnotation );
     160             : 
     161             : 
     162             : } // namespace sd
     163             : 
     164             : #endif
     165             : 
     166             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10