LCOV - code coverage report
Current view: top level - sc/source/ui/inc - inputhdl.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 14 25 56.0 %
Date: 2014-11-03 Functions: 13 24 54.2 %
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_INPUTHDL_HXX
      21             : #define INCLUDED_SC_SOURCE_UI_INC_INPUTHDL_HXX
      22             : 
      23             : #include "global.hxx"
      24             : #include "address.hxx"
      25             : #include "typedstrdata.hxx"
      26             : 
      27             : #include <tools/fract.hxx>
      28             : #include <tools/gen.hxx>
      29             : #include <tools/link.hxx>
      30             : #include <vcl/vclevent.hxx>
      31             : #include <editeng/svxenum.hxx>
      32             : 
      33             : #include <set>
      34             : 
      35             : #include <boost/noncopyable.hpp>
      36             : 
      37             : class ScDocument;
      38             : class ScTabViewShell;
      39             : class ScInputWindow;
      40             : class ScPatternAttr;
      41             : class ScEditEngineDefaulter;
      42             : class EditView;
      43             : class EditTextObject;
      44             : class ScInputHdlState;
      45             : class ScRangeFindList;
      46             : class Timer;
      47             : class KeyEvent;
      48             : class CommandEvent;
      49             : 
      50             : struct ESelection;
      51             : 
      52             : //  ScInputHandler
      53             : 
      54             : class ScInputHandler : boost::noncopyable
      55             : {
      56             : private:
      57             :     ScInputWindow*          pInputWin;
      58             : 
      59             :     ScEditEngineDefaulter*  pEngine;                // edited data in the sheet
      60             :     EditView*               pTableView;                 // associated active EditView
      61             :     EditView*               pTopView;                   // EditView in dthe input row
      62             : 
      63             :     ScTypedCaseStrSet* pColumnData;
      64             :     ScTypedCaseStrSet* pFormulaData;
      65             :     ScTypedCaseStrSet* pFormulaDataPara;
      66             :     ScTypedCaseStrSet::const_iterator miAutoPosColumn;
      67             :     ScTypedCaseStrSet::const_iterator miAutoPosFormula;
      68             : 
      69             :     vcl::Window*                 pTipVisibleParent;
      70             :     sal_uLong               nTipVisible;
      71             :     vcl::Window*                 pTipVisibleSecParent;
      72             :     sal_uLong               nTipVisibleSec;
      73             :     OUString                aManualTip;
      74             :     OUString                aAutoSearch;
      75             : 
      76             :     OUString                aCurrentText;
      77             : 
      78             :     OUString                aFormText;                  // for autopilot function
      79             :     sal_Int32               nFormSelStart;              // Selection for autopilot function
      80             :     sal_Int32               nFormSelEnd;
      81             : 
      82             :     sal_uInt16              nAutoPar;                   // autom.parentheses than can be overwritten
      83             : 
      84             :     ScAddress               aCursorPos;
      85             :     ScInputMode             eMode;
      86             :     bool                    bUseTab:1;                    // Scrolling possible
      87             :     bool                    bTextValid:1;                 // Text is not in edit engine
      88             :     bool                    bModified:1;
      89             :     bool                    bSelIsRef:1;
      90             :     bool                    bFormulaMode:1;
      91             :     bool                    bInRangeUpdate:1;
      92             :     bool                    bParenthesisShown:1;
      93             :     bool                    bCreatingFuncView:1;
      94             :     bool                    bInEnterHandler:1;
      95             :     bool                    bCommandErrorShown:1;
      96             :     bool                    bInOwnChange:1;
      97             : 
      98             :     bool                    bProtected:1;
      99             :     bool                    bCellHasPercentFormat:1;
     100             :     bool                    bLastIsSymbol:1;
     101             :     bool                    mbDocumentDisposing:1;
     102             :     sal_uLong                   nValidation;
     103             :     SvxCellHorJustify       eAttrAdjust;
     104             : 
     105             :     Fraction                aScaleX;                    // for ref MapMode
     106             :     Fraction                aScaleY;
     107             : 
     108             :     ScTabViewShell*         pRefViewSh;
     109             :     ScTabViewShell*         pActiveViewSh;
     110             : 
     111             :     const ScPatternAttr*    pLastPattern;
     112             :     SfxItemSet*             pEditDefaults;
     113             : 
     114             :     ScInputHdlState*        pLastState;
     115             :     Timer*                  pDelayTimer;
     116             : 
     117             :     ScRangeFindList*        pRangeFindList;
     118             : 
     119             :     static bool             bAutoComplete;              // from app options
     120             :     static bool             bOptLoaded;
     121             :     ::std::set< sal_Unicode >    maFormulaChar;  //fdo 75264
     122             : 
     123             : private:
     124             :     void            UpdateActiveView();
     125             :     void            SyncViews( EditView* pSourceView = NULL );
     126             :     /**
     127             :      * @param cTyped typed character. If 0, look at existing document content
     128             :      *               for text or number.
     129             :      * @param bInputActivated true if the cell input mode is activated (via
     130             :      *                        F2), false otherwise.
     131             :      * @return true if the new edit mode has been started.
     132             :      */
     133             :     bool            StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated );
     134             :     void            RemoveSelection();
     135             :     void            UpdateFormulaMode();
     136             :     void            InvalidateAttribs();
     137             :     void            ImplCreateEditEngine();
     138             :     DECL_LINK(      DelayTimer, Timer* );
     139             :     void            GetColData();
     140             :     void            UseColData();
     141             :     void            NextAutoEntry( bool bBack );
     142             :     void            UpdateAdjust( sal_Unicode cTyped );
     143             :     void            GetFormulaData();
     144             :     void            UseFormulaData();
     145             :     void            NextFormulaEntry( bool bBack );
     146             :     void            PasteFunctionData();
     147             :     void            PasteManualTip();
     148             :     EditView*       GetFuncEditView();
     149             :     void            RemoveAdjust();
     150             :     void            RemoveRangeFinder();
     151             :     void            DeleteRangeFinder();
     152             :     void            UpdateParenthesis();
     153             :     void            UpdateAutoCorrFlag();
     154             :     void            ResetAutoPar();
     155             :     void            AutoParAdded();
     156             :     bool            CursorAtClosingPar();
     157             :     void            SkipClosingPar();
     158             :     bool            GetFuncName( OUString& aStart, OUString& aResult );  // fdo75264
     159             :     void            ShowArgumentsTip( const OUString& rParagraph, OUString& rSelText, const ESelection& rSel,
     160             :                                       bool bTryFirstSel );
     161             :     DECL_LINK( ModifyHdl, void* );
     162             :     DECL_LINK( ShowHideTipVisibleParentListener, VclWindowEvent* );
     163             :     DECL_LINK( ShowHideTipVisibleSecParentListener, VclWindowEvent* );
     164             : 
     165             : public:
     166             :                     ScInputHandler();
     167             :     virtual         ~ScInputHandler();
     168             : 
     169             :     void SetMode( ScInputMode eNewMode, const OUString* pInitText = NULL );
     170        1576 :     bool            IsInputMode() const { return (eMode != SC_INPUT_NONE); }
     171         206 :     bool            IsEditMode() const  { return (eMode != SC_INPUT_NONE &&
     172         206 :                                                   eMode != SC_INPUT_TYPE); }
     173           0 :     bool            IsTopMode() const   { return (eMode == SC_INPUT_TOP);  }
     174             : 
     175             :     const OUString& GetEditString();
     176         542 :     const OUString& GetFormString() const { return aFormText; }
     177             : 
     178       12348 :     const ScAddress& GetCursorPos() const   { return aCursorPos; }
     179             : 
     180             :     bool            GetTextAndFields( ScEditEngineDefaulter& rDestEngine );
     181             : 
     182             :     bool            KeyInput( const KeyEvent& rKEvt, bool bStartEdit = false );
     183             :     void            EnterHandler( sal_uInt8 nBlockMode = 0 );
     184             :     void            CancelHandler();
     185             :     void            SetReference( const ScRange& rRef, ScDocument* pDoc );
     186             :     void            AddRefEntry();
     187             : 
     188             :     bool            InputCommand( const CommandEvent& rCEvt, bool bForce );
     189             : 
     190             :     void            InsertFunction( const OUString& rFuncName, bool bAddPar = true );
     191             :     void            ClearText();
     192             : 
     193             :     void            InputSelection( EditView* pView );
     194             :     void            InputChanged( EditView* pView, bool bFromNotify = false );
     195             : 
     196             :     void            ViewShellGone(ScTabViewShell* pViewSh);
     197           0 :     void            SetRefViewShell(ScTabViewShell* pRefVsh) {pRefViewSh=pRefVsh;}
     198             : 
     199             :     void            NotifyChange( const ScInputHdlState* pState, bool bForce = false,
     200             :                                   ScTabViewShell* pSourceSh = NULL,
     201             :                                   bool bStopEditing = true);
     202             :     void            UpdateCellAdjust( SvxCellHorJustify eJust );
     203             : 
     204             :     void            ResetDelayTimer(); //BugId 54702
     205             : 
     206             :     void            HideTip();
     207             :     void            HideTipBelow();
     208             :     void            ShowTipCursor();
     209             :     void            ShowTip( const OUString& rText );     // at Cursor
     210             :     void            ShowTipBelow( const OUString& rText );
     211             : 
     212             :     void            SetRefScale( const Fraction& rX, const Fraction& rY );
     213             :     void            UpdateRefDevice();
     214             : 
     215             :     EditView*       GetActiveView();
     216           0 :     EditView*       GetTableView()      { return pTableView; }
     217           0 :     EditView*       GetTopView()        { return pTopView; }
     218             : 
     219             :     bool            DataChanging( sal_Unicode cTyped = 0, bool bFromCommand = false );
     220             :     void            DataChanged( bool bFromTopNotify = false, bool bSetModified = true );
     221             : 
     222           0 :     bool            TakesReturn() const     { return ( nTipVisible != 0 ); }
     223             : 
     224           0 :     void            SetModified()       { bModified = true; }
     225             : 
     226           0 :     bool            GetSelIsRef() const     { return bSelIsRef; }
     227           0 :     void            SetSelIsRef(bool bSet)  { bSelIsRef = bSet; }
     228             : 
     229             :     void            ShowRefFrame();
     230             : 
     231        1474 :     ScRangeFindList* GetRangeFindList()     { return pRangeFindList; }
     232             : 
     233             :     void            UpdateRange( sal_uInt16 nIndex, const ScRange& rNew );
     234             : 
     235             :     // Communication with the autopilot function
     236             :     void            InputGetSelection       ( sal_Int32& rStart, sal_Int32& rEnd );
     237             :     void            InputSetSelection       ( sal_Int32 nStart, sal_Int32 nEnd );
     238             :     void            InputReplaceSelection   ( const OUString& rStr );
     239             :     void            InputTurnOffWinEngine();
     240             : 
     241        6286 :     bool            IsFormulaMode() const                   { return bFormulaMode; }
     242        3394 :     ScInputWindow*  GetInputWindow()                        { return pInputWin; }
     243        1084 :     void            SetInputWindow( ScInputWindow* pNew )   { pInputWin = pNew; }
     244             :     void            StopInputWinEngine( bool bAll );
     245             : 
     246           0 :     bool            IsInEnterHandler() const                { return bInEnterHandler; }
     247           0 :     bool            IsInOwnChange() const                   { return bInOwnChange; }
     248             : 
     249             :     bool            IsModalMode( SfxObjectShell* pDocSh );
     250             : 
     251             :     void            ForgetLastPattern();
     252             : 
     253             :     void            UpdateSpellSettings( bool bFromStartTab = false );
     254             : 
     255             :     void            FormulaPreview();
     256             : 
     257             :     Size            GetTextSize();      // in 1/100mm
     258             : 
     259             :                     // actually private, public for SID_INPUT_SUM
     260             :     void            InitRangeFinder(const OUString& rFormula);
     261             : 
     262             :     void SetDocumentDisposing( bool b );
     263             : 
     264           0 :     static void     SetAutoComplete(bool bSet)  { bAutoComplete = bSet; }
     265             : };
     266             : 
     267             : //  ScInputHdlState
     268             : 
     269             : class ScInputHdlState
     270             : {
     271             :     friend class ScInputHandler;
     272             : 
     273             : public:
     274             :         ScInputHdlState( const ScAddress& rCurPos,
     275             :                          const ScAddress& rStartPos,
     276             :                          const ScAddress& rEndPos,
     277             :                          const OUString& rString,
     278             :                          const EditTextObject* pData );
     279             :         ScInputHdlState( const ScInputHdlState& rCpy );
     280             :         ~ScInputHdlState();
     281             : 
     282             :     ScInputHdlState&    operator= ( const ScInputHdlState& r );
     283             :     bool                operator==( const ScInputHdlState& r ) const;
     284             :     bool                operator!=( const ScInputHdlState& r ) const
     285             :                             { return !operator==( r ); }
     286             : 
     287        1700 :     const ScAddress&        GetPos() const          { return aCursorPos; }
     288        1700 :     const ScAddress&        GetStartPos() const     { return aStartPos; }
     289        1700 :     const ScAddress&        GetEndPos() const       { return aEndPos; }
     290        1700 :     const OUString&         GetString() const       { return aString; }
     291        3390 :     const EditTextObject*   GetEditData() const     { return pEditData; }
     292             : 
     293             : private:
     294             :     ScAddress       aCursorPos;
     295             :     ScAddress       aStartPos;
     296             :     ScAddress       aEndPos;
     297             :     OUString        aString;
     298             :     EditTextObject* pEditData;
     299             : };
     300             : 
     301             : #endif
     302             : 
     303             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10