LCOV - code coverage report
Current view: top level - sc/source/ui/inc - inputwin.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 8 10 80.0 %
Date: 2014-11-03 Functions: 9 12 75.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_SC_SOURCE_UI_INC_INPUTWIN_HXX
      21             : #define INCLUDED_SC_SOURCE_UI_INC_INPUTWIN_HXX
      22             : 
      23             : #include <vector>
      24             : #include <vcl/toolbox.hxx>
      25             : #include <sfx2/childwin.hxx>
      26             : #include <svl/lstner.hxx>
      27             : #include <vcl/button.hxx>
      28             : #include <vcl/combobox.hxx>
      29             : #include <vcl/scrbar.hxx>
      30             : #include <vcl/window.hxx>
      31             : #include <svtools/transfer.hxx>
      32             : 
      33             : class ScEditEngineDefaulter;
      34             : class EditView;
      35             : struct ESelection;
      36             : class ScInputHandler;
      37             : class ScAccessibleEditLineTextData;
      38             : struct EENotify;
      39             : class ScRangeList;
      40             : class ScTabViewShell;
      41             : class Accelerator;
      42             : 
      43        1084 : class ScTextWndBase : public vcl::Window
      44             : {
      45             : public:
      46             :     ScTextWndBase( vcl::Window* pParent,  WinBits nStyle );
      47             :     virtual void            InsertAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) = 0;
      48             :     virtual void            RemoveAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) = 0;
      49             :     virtual void            SetTextString( const OUString& rString ) = 0;
      50             :     virtual const OUString& GetTextString() const = 0;
      51             :     virtual void            StartEditEngine() = 0;
      52             :     virtual void            StopEditEngine( bool bAll ) = 0;
      53             :     virtual EditView*       GetEditView() = 0;
      54             :     virtual void            MakeDialogEditView() = 0;
      55             :     virtual void            SetFormulaMode( bool bSet ) = 0;
      56             :     virtual bool            IsInputActive() = 0;
      57             :     virtual void            TextGrabFocus() = 0;
      58             : };
      59             : 
      60             : class ScTextWnd : public ScTextWndBase, public DragSourceHelper     // edit window
      61             : {
      62             : public:
      63             :                     ScTextWnd( vcl::Window* pParent, ScTabViewShell* pViewSh );
      64             :     virtual         ~ScTextWnd();
      65             : 
      66             :     virtual void            SetTextString( const OUString& rString ) SAL_OVERRIDE;
      67             :     virtual const OUString& GetTextString() const SAL_OVERRIDE;
      68             : 
      69             :     bool            IsInputActive() SAL_OVERRIDE;
      70             :     virtual EditView*       GetEditView() SAL_OVERRIDE;
      71             : 
      72             :                         // for function autopilots
      73             :     virtual void            MakeDialogEditView() SAL_OVERRIDE;
      74             : 
      75             :     virtual void            StartEditEngine() SAL_OVERRIDE;
      76             :     virtual void            StopEditEngine( bool bAll ) SAL_OVERRIDE;
      77             : 
      78             :     virtual void            TextGrabFocus() SAL_OVERRIDE;
      79             : 
      80             :     virtual void    DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
      81             : 
      82             :     virtual void            SetFormulaMode( bool bSet ) SAL_OVERRIDE;
      83             : 
      84             :     virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE;
      85             : 
      86             :     virtual void            InsertAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
      87             :     virtual void            RemoveAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
      88             : 
      89             :     DECL_LINK( NotifyHdl, void* );
      90             : 
      91             : protected:
      92             :     virtual void    Paint( const Rectangle& rRect ) SAL_OVERRIDE;
      93             :     virtual void    Resize() SAL_OVERRIDE;
      94             : 
      95             :     virtual void    MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
      96             :     virtual void    MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
      97             :     virtual void    MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
      98             :     virtual void    Command( const CommandEvent& rCEvt ) SAL_OVERRIDE;
      99             :     virtual void    KeyInput(const KeyEvent& rKEvt) SAL_OVERRIDE;
     100             :     virtual void    GetFocus() SAL_OVERRIDE;
     101             :     virtual void    LoseFocus() SAL_OVERRIDE;
     102             : 
     103             :     virtual void    StartDrag( sal_Int8 nAction, const Point& rPosPixel ) SAL_OVERRIDE;
     104             : 
     105             :     virtual OUString  GetText() const SAL_OVERRIDE;
     106             : 
     107             :     void            ImplInitSettings();
     108             :     void            UpdateAutoCorrFlag();
     109             : 
     110         334 :     ScTabViewShell* GetViewShell() { return mpViewShell;}
     111             : 
     112             :     typedef ::std::vector< ScAccessibleEditLineTextData* > AccTextDataVector;
     113             : 
     114             :     OUString    aString;
     115             :     vcl::Font   aTextFont;
     116             :     ScEditEngineDefaulter*  pEditEngine;            // only created when needed
     117             :     EditView*   pEditView;
     118             :     AccTextDataVector maAccTextDatas;   // #i105267# text datas may be cloned, remember all copies
     119             :     bool        bIsRTL;
     120             :     bool        bIsInsertMode;
     121             :     bool        bFormulaMode;
     122             : 
     123             :     // #102710#; this flag should be true if a key input or a command is handled
     124             :     // it prevents the call of InputChanged in the ModifyHandler of the EditEngine
     125             :     bool        bInputMode;
     126             : 
     127             : private:
     128             :     ScTabViewShell* mpViewShell;
     129             : };
     130             : 
     131             : class ScPosWnd : public ComboBox, public SfxListener        // Display position
     132             : {
     133             : private:
     134             :     OUString        aPosStr;
     135             :     Accelerator*    pAccel;
     136             :     sal_uLong       nTipVisible;
     137             :     bool            bFormulaMode;
     138             : 
     139             : public:
     140             :                     ScPosWnd( vcl::Window* pParent );
     141             :     virtual         ~ScPosWnd();
     142             : 
     143             :     void            SetPos( const OUString& rPosStr );        // Displayed Text
     144             :     void            SetFormulaMode( bool bSet );
     145             : 
     146             : protected:
     147             :     virtual void    Select() SAL_OVERRIDE;
     148             :     virtual void    Modify() SAL_OVERRIDE;
     149             : 
     150             :     virtual bool    Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
     151             : 
     152             :     virtual void    Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SAL_OVERRIDE;
     153             : 
     154             : private:
     155             :     void            FillRangeNames();
     156             :     void            FillFunctions();
     157             :     void            DoEnter();
     158             :     void            HideTip();
     159             : 
     160             :     void            ReleaseFocus_Impl();
     161             : };
     162             : 
     163             : class ScInputBarGroup;
     164             : 
     165             : class ScMultiTextWnd : public ScTextWnd
     166             : {
     167             : public:
     168             :     ScMultiTextWnd( ScInputBarGroup* pParent, ScTabViewShell* pViewSh );
     169             :     virtual ~ScMultiTextWnd();
     170             :     virtual void StartEditEngine() SAL_OVERRIDE;
     171             :     virtual void StopEditEngine( bool bAll ) SAL_OVERRIDE;
     172             :     virtual void Resize() SAL_OVERRIDE;
     173             :     virtual EditView*  GetEditView() SAL_OVERRIDE;
     174             :     long GetPixelHeightForLines( long nLines );
     175             :     long GetEditEngTxtHeight();
     176             : 
     177             :     void DoScroll();
     178             :     virtual void SetTextString( const OUString& rString ) SAL_OVERRIDE;
     179             :     void SetNumLines( long nLines );
     180        8870 :     long GetNumLines() { return mnLines; }
     181           0 :     long GetLastNumExpandedLines() { return mnLastExpandedLines; }
     182             : protected:
     183             :     void SetScrollBarRange();
     184             :     void InitEditEngine();
     185             : 
     186             :     virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
     187             :     DECL_LINK( NotifyHdl, EENotify* );
     188             :     DECL_LINK( ModifyHdl, EENotify* );
     189             : private:
     190             :     long GetPixelTextHeight();
     191             :     ScInputBarGroup& mrGroupBar;
     192             :     long mnLines;
     193             :     long mnLastExpandedLines;
     194             :     long mnBorderHeight;
     195             :     bool mbInvalidate;
     196             : };
     197             : 
     198             : class ScInputBarGroup : public ScTextWndBase
     199             : {
     200             : 
     201             : public:
     202             :                     ScInputBarGroup( vcl::Window* Parent, ScTabViewShell* pViewSh );
     203             :     virtual         ~ScInputBarGroup();
     204             :     virtual void            InsertAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
     205             :     virtual void            RemoveAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
     206             : //    virtual void    Paint(const Rectangle& rRect );
     207             :     void            SetTextString( const OUString& rString ) SAL_OVERRIDE;
     208             :     void            StartEditEngine() SAL_OVERRIDE;
     209             :     EditView*       GetEditView() SAL_OVERRIDE;
     210             :     void            SetSize(Size aSize);
     211             :     virtual void    Resize() SAL_OVERRIDE;
     212             :     virtual const OUString&   GetTextString() const SAL_OVERRIDE;
     213             :     virtual void            StopEditEngine( bool bAll ) SAL_OVERRIDE;
     214             :     virtual void            TextGrabFocus() SAL_OVERRIDE;
     215             :     void            InitEditEngine(SfxObjectShell* pObjSh);
     216             :     void            SetFormulaMode( bool bSet ) SAL_OVERRIDE;
     217             :     bool            IsFocus();
     218             :     void            MakeDialogEditView() SAL_OVERRIDE;
     219             :     bool            IsInputActive() SAL_OVERRIDE;
     220         847 :     ScrollBar&      GetScrollBar() { return aScrollBar; }
     221             :     void            IncrementVerticalSize();
     222             :     void            DecrementVerticalSize();
     223        3256 :     long            GetNumLines() { return aMultiTextWnd.GetNumLines(); }
     224           0 :     long            GetVertOffset() { return  nVertOffset; }
     225             : private:
     226             :     void            TriggerToolboxLayout();
     227             :     ScMultiTextWnd  aMultiTextWnd;
     228             :     ImageButton     aButton;
     229             :     ScrollBar       aScrollBar;
     230             :     long            nVertOffset;
     231             :     DECL_LINK( ClickHdl, void* );
     232             :     DECL_LINK( Impl_ScrollHdl, void* );
     233             : 
     234             : };
     235             : 
     236             : class ScInputWindow : public ToolBox                        // Parent toolbox
     237             : {
     238             : public:
     239             :                     ScInputWindow( vcl::Window* pParent, SfxBindings* pBind );
     240             :     virtual         ~ScInputWindow();
     241             : 
     242             :     virtual void    Paint( const Rectangle& rRect ) SAL_OVERRIDE;
     243             :     virtual void    Resize() SAL_OVERRIDE;
     244             :     virtual void    Select() SAL_OVERRIDE;
     245             : 
     246             :     void            SetFuncString( const OUString& rString, bool bDoEdit = true );
     247             :     void            SetPosString( const OUString& rStr );
     248             :     void            SetTextString( const OUString& rString );
     249             : 
     250             :     void            SetOkCancelMode();
     251             :     void            SetSumAssignMode();
     252             :     void            EnableButtons( bool bEnable = true );
     253             : 
     254             :     void            SetFormulaMode( bool bSet );
     255             : 
     256             :     virtual bool            IsInputActive();
     257             :     EditView*       GetEditView();
     258             : 
     259             :     void            TextGrabFocus();
     260             :     void            TextInvalidate();
     261             :     void            SwitchToTextWin();
     262             : 
     263             :     void            PosGrabFocus();
     264             : 
     265             :     // For function autopilots
     266             :     void            MakeDialogEditView();
     267             : 
     268             :     void            StopEditEngine( bool bAll );
     269             : 
     270             :     void            SetInputHandler( ScInputHandler* pNew );
     271             : 
     272         176 :     ScInputHandler* GetInputHandler(){ return pInputHdl;}
     273             : 
     274             :     void            StateChanged( StateChangedType nType ) SAL_OVERRIDE;
     275             :     virtual void    DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
     276             :     virtual void    MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
     277             :     virtual void    MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
     278             :     virtual void    MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
     279           2 :     bool            IsMultiLineInput() { return mbIsMultiLine; }
     280             : protected:
     281             :     virtual void    SetText( const OUString& rString ) SAL_OVERRIDE;
     282             :     virtual OUString  GetText() const SAL_OVERRIDE;
     283             : 
     284             :     bool UseSubTotal( ScRangeList* pRangeList ) const;
     285             :     bool IsPointerAtResizePos();
     286             : private:
     287             :     ScPosWnd        aWndPos;
     288             :     std::unique_ptr<ScTextWndBase> pRuntimeWindow;
     289             :     ScTextWndBase&  aTextWindow;
     290             :     ScInputHandler* pInputHdl;
     291             :     OUString        aTextOk;
     292             :     OUString        aTextCancel;
     293             :     OUString        aTextSum;
     294             :     OUString        aTextEqual;
     295             :     long            mnMaxY;
     296             :     bool            bIsOkCancelMode;
     297             :     bool            bInResize;
     298             :     bool            mbIsMultiLine;
     299             : };
     300             : 
     301        1084 : class ScInputWindowWrapper : public SfxChildWindow
     302             : {
     303             : public:
     304             :             ScInputWindowWrapper( vcl::Window*           pParent,
     305             :                                   sal_uInt16            nId,
     306             :                                   SfxBindings*      pBindings,
     307             :                                   SfxChildWinInfo*  pInfo );
     308             : 
     309             :     SFX_DECL_CHILDWINDOW_WITHID(ScInputWindowWrapper);
     310             : };
     311             : 
     312             : #endif
     313             : 
     314             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10