LCOV - code coverage report
Current view: top level - vcl/source/edit - textdat2.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 55 79 69.6 %
Date: 2014-11-03 Functions: 38 52 73.1 %
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_VCL_SOURCE_EDIT_TEXTDAT2_HXX
      21             : #define INCLUDED_VCL_SOURCE_EDIT_TEXTDAT2_HXX
      22             : 
      23             : #include <vcl/seleng.hxx>
      24             : #include <vcl/virdev.hxx>
      25             : #include <vcl/cursor.hxx>
      26             : 
      27             : #include <vector>
      28             : 
      29             : class TextNode;
      30             : class TextView;
      31             : 
      32             : #define PORTIONKIND_TEXT        0
      33             : #define PORTIONKIND_TAB         1
      34             : 
      35             : #define DELMODE_SIMPLE          0
      36             : #define DELMODE_RESTOFWORD      1
      37             : #define DELMODE_RESTOFCONTENT   2
      38             : 
      39             : #define DEL_LEFT    1
      40             : #define DEL_RIGHT   2
      41             : #define TRAVEL_X_DONTKNOW   0xFFFF
      42             : #define MAXCHARSINPARA      0x3FFF-CHARPOSGROW
      43             : 
      44             : #define LINE_SEP    0x0A
      45             : 
      46             : class TETextPortion
      47             : {
      48             : private:
      49             :     sal_uInt16      nLen;
      50             :     long        nWidth;
      51             :     sal_uInt8       nKind;
      52             :     sal_uInt8        nRightToLeft;
      53             : 
      54             :                 TETextPortion()             { nLen = 0; nKind = PORTIONKIND_TEXT; nWidth = -1; nRightToLeft = 0;}
      55             : 
      56             : public:
      57         614 :                 TETextPortion( sal_uInt16 nL )  {
      58         614 :                                                 nLen = nL;
      59         614 :                                                 nKind = PORTIONKIND_TEXT;
      60         614 :                                                 nWidth= -1;
      61         614 :                                                 nRightToLeft = 0;
      62         614 :                                             }
      63             : 
      64             :     sal_uInt16      GetLen() const              { return nLen; }
      65        1301 :     sal_uInt16&     GetLen()                    { return nLen; }
      66             : 
      67             :     long        GetWidth()const             { return nWidth; }
      68        1569 :     long&       GetWidth()                  { return nWidth; }
      69             : 
      70             :     sal_uInt8       GetKind() const             { return nKind; }
      71         971 :     sal_uInt8&      GetKind()                   { return nKind; }
      72             : 
      73             :     sal_uInt8       GetRightToLeft() const      { return nRightToLeft; }
      74         531 :     sal_uInt8&      GetRightToLeft()            { return nRightToLeft; }
      75         370 :     bool        IsRightToLeft() const       { return (nRightToLeft&1); }
      76             : 
      77           0 :     bool        HasValidSize() const        { return nWidth != (-1); }
      78             : };
      79             : 
      80             : typedef std::vector<TETextPortion*> TextPortionArray;
      81             : 
      82             : class TETextPortionList : public TextPortionArray
      83             : {
      84             : public:
      85             :     TETextPortionList();
      86             :     ~TETextPortionList();
      87             : 
      88             :     void    Reset();
      89             :     sal_uInt16  FindPortion( sal_uInt16 nCharPos, sal_uInt16& rPortionStart, bool bPreferStartingPortion = false );
      90             :     sal_uInt16  GetPortionStartIndex( sal_uInt16 nPortion );
      91             :     void    DeleteFromPortion( sal_uInt16 nDelFrom );
      92             : };
      93             : 
      94             : struct TEWritingDirectionInfo
      95             : {
      96             :     sal_uInt8    nType;
      97             :     sal_uInt16  nStartPos;
      98             :     sal_uInt16  nEndPos;
      99          90 :     TEWritingDirectionInfo( sal_uInt8 _Type, sal_uInt16 _Start, sal_uInt16 _End )
     100             :     {
     101          90 :         nType = _Type;
     102          90 :         nStartPos = _Start;
     103          90 :         nEndPos = _End;
     104          90 :     }
     105             : };
     106             : 
     107             : class TextLine
     108             : {
     109             : private:
     110             :     sal_uInt16          mnStart;
     111             :     sal_uInt16          mnEnd;
     112             :     sal_uInt16          mnStartPortion;
     113             :     sal_uInt16          mnEndPortion;
     114             : 
     115             :     short           mnStartX;
     116             : 
     117             :     bool            mbInvalid;  // fuer geschickte Formatierung/Ausgabe
     118             : 
     119             : public:
     120         576 :                     TextLine()  {
     121         576 :                                     mnStart = mnEnd = 0;
     122         576 :                                     mnStartPortion = mnEndPortion = 0;
     123         576 :                                     mnStartX = 0;
     124         576 :                                     mbInvalid = true;
     125         576 :                                 }
     126             : 
     127             :     bool            IsIn( sal_uInt16 nIndex ) const
     128             :                         { return ( (nIndex >= mnStart ) && ( nIndex < mnEnd ) ); }
     129             : 
     130           0 :     bool            IsIn( sal_uInt16 nIndex, bool bInclEnd ) const
     131           0 :                         { return ( ( nIndex >= mnStart ) && ( bInclEnd ? ( nIndex <= mnEnd ) : ( nIndex < mnEnd ) ) ); }
     132             : 
     133         524 :     void            SetStart( sal_uInt16 n )            { mnStart = n; }
     134           0 :     sal_uInt16          GetStart() const                { return mnStart; }
     135        1355 :     sal_uInt16&         GetStart()                      { return mnStart; }
     136             : 
     137         614 :     void            SetEnd( sal_uInt16 n )              { mnEnd = n; }
     138           0 :     sal_uInt16          GetEnd() const                  { return mnEnd; }
     139         203 :     sal_uInt16&         GetEnd()                        { return mnEnd; }
     140             : 
     141           0 :     void            SetStartPortion( sal_uInt16 n )     { mnStartPortion = n; }
     142           0 :     sal_uInt16          GetStartPortion() const         { return mnStartPortion; }
     143        1026 :     sal_uInt16&         GetStartPortion()               { return mnStartPortion; }
     144             : 
     145          90 :     void            SetEndPortion( sal_uInt16 n )       { mnEndPortion = n; }
     146           0 :     sal_uInt16          GetEndPortion() const           { return mnEndPortion; }
     147        1080 :     sal_uInt16&         GetEndPortion()                 { return mnEndPortion; }
     148             : 
     149           0 :     sal_uInt16          GetLen() const                  { return mnEnd - mnStart; }
     150             : 
     151         614 :     bool            IsInvalid() const               { return mbInvalid; }
     152         614 :     bool            IsValid() const                 { return !mbInvalid; }
     153          90 :     void            SetInvalid()                    { mbInvalid = true; }
     154          52 :     void            SetValid()                      { mbInvalid = false; }
     155             : 
     156             :     bool            IsEmpty() const                 { return (mnEnd > mnStart) ? false : true; }
     157             : 
     158         488 :     short           GetStartX() const               { return mnStartX; }
     159         588 :     void            SetStartX( short n )            { mnStartX = n; }
     160             : 
     161             :     inline bool operator == ( const TextLine& rLine ) const;
     162             :     inline bool operator != ( const TextLine& rLine ) const;
     163             : };
     164             : 
     165         210 : class TextLines : public std::vector<TextLine*> {
     166             : public:
     167         206 :     ~TextLines()
     168         206 :     {
     169         412 :         for( iterator it = begin(); it != end(); ++it )
     170         206 :             delete *it;
     171         206 :     }
     172             : };
     173             : 
     174           0 : inline bool TextLine::operator == ( const TextLine& rLine ) const
     175             : {
     176           0 :     return (    ( mnStart == rLine.mnStart ) &&
     177           0 :                 ( mnEnd == rLine.mnEnd ) &&
     178           0 :                 ( mnStartPortion == rLine.mnStartPortion ) &&
     179           0 :                 ( mnEndPortion == rLine.mnEndPortion ) );
     180             : }
     181             : 
     182             : inline bool TextLine::operator != ( const TextLine& rLine ) const
     183             : {
     184             :     return !( *this == rLine );
     185             : }
     186             : 
     187             : class TEParaPortion
     188             : {
     189             : private:
     190             :     TextNode*               mpNode;
     191             : 
     192             :     TextLines               maLines;
     193             :     TETextPortionList       maTextPortions;
     194             :     std::vector<TEWritingDirectionInfo> maWritingDirectionInfos;
     195             : 
     196             :     sal_uInt16              mnInvalidPosStart;
     197             :     short               mnInvalidDiff;
     198             : 
     199             :     bool                mbInvalid;
     200             :     bool                mbSimple;   // nur lineares Tippen
     201             : 
     202             :                         TEParaPortion( const TEParaPortion& ) {;}
     203             : 
     204             : public:
     205             :                         TEParaPortion( TextNode* pNode );
     206             :                         ~TEParaPortion();
     207             : 
     208         661 :     bool                IsInvalid() const           { return mbInvalid; }
     209         270 :     bool                IsSimpleInvalid() const     { return mbSimple; }
     210           0 :     void                SetNotSimpleInvalid()       { mbSimple = false; }
     211         614 :     void                SetValid()                  { mbInvalid = false; mbSimple = true;}
     212             : 
     213             :     void                MarkInvalid( sal_uInt16 nStart, short nDiff);
     214             :     void                MarkSelectionInvalid( sal_uInt16 nStart, sal_uInt16 nEnd );
     215             : 
     216          90 :     sal_uInt16              GetInvalidPosStart() const  { return mnInvalidPosStart; }
     217          90 :     short               GetInvalidDiff() const      { return mnInvalidDiff; }
     218             : 
     219        1449 :     TextNode*           GetNode() const             { return mpNode; }
     220        8899 :     TextLines&          GetLines()                  { return maLines; }
     221        3946 :     TETextPortionList&  GetTextPortions()           { return maTextPortions; }
     222         540 :     std::vector<TEWritingDirectionInfo>& GetWritingDirectionInfos() { return maWritingDirectionInfos; }
     223             : 
     224             :     sal_uInt16              GetLineNumber( sal_uInt16 nIndex, bool bInclEnd );
     225             :     void                CorrectValuesBehindLastFormattedLine( sal_uInt16 nLastFormattedLine );
     226             : };
     227             : 
     228             : class TEParaPortions
     229             : {
     230             : private:
     231             :     std::vector<TEParaPortion*> mvData;
     232             : 
     233             : public:
     234         210 :                     TEParaPortions() : mvData() {}
     235             :                     ~TEParaPortions();
     236             : 
     237        2994 :     size_t          Count() const { return mvData.size(); }
     238        6255 :     TEParaPortion*  GetObject( size_t nIndex ) { return mvData[nIndex]; }
     239         210 :     void            Insert( TEParaPortion* pObject, size_t nPos ) { mvData.insert( mvData.begin()+nPos, pObject ); }
     240           0 :     void            Remove( size_t nPos ) { mvData.erase( mvData.begin()+nPos ); }
     241             : };
     242             : 
     243         220 : class TextSelFunctionSet: public FunctionSet
     244             : {
     245             : private:
     246             :     TextView*       mpView;
     247             : 
     248             : public:
     249             :                     TextSelFunctionSet( TextView* pView );
     250             : 
     251             :     virtual void    BeginDrag() SAL_OVERRIDE;
     252             : 
     253             :     virtual void    CreateAnchor() SAL_OVERRIDE;
     254             : 
     255             :     virtual bool    SetCursorAtPoint( const Point& rPointPixel, bool bDontSelectAtCursor = false ) SAL_OVERRIDE;
     256             : 
     257             :     virtual bool    IsSelectionAtPoint( const Point& rPointPixel ) SAL_OVERRIDE;
     258             :     virtual void    DeselectAll() SAL_OVERRIDE;
     259             : 
     260             :     virtual void    DeselectAtPoint( const Point& ) SAL_OVERRIDE;
     261             :     virtual void    DestroyAnchor() SAL_OVERRIDE;
     262             : };
     263             : 
     264             : class IdleFormatter : public Timer
     265             : {
     266             : private:
     267             :     TextView*   mpView;
     268             :     sal_uInt16      mnRestarts;
     269             : 
     270             : public:
     271             :                 IdleFormatter();
     272             :                 virtual ~IdleFormatter();
     273             : 
     274             :     void        DoIdleFormat( TextView* pV, sal_uInt16 nMaxRestarts );
     275             :     void        ForceTimeout();
     276           0 :     TextView*   GetView()       { return mpView; }
     277             : };
     278             : 
     279           0 : struct TextDDInfo
     280             : {
     281             :     vcl::Cursor     maCursor;
     282             :     TextPaM         maDropPos;
     283             : 
     284             :     bool            mbStarterOfDD;
     285             :     bool            mbVisCursor;
     286             : 
     287           0 :     TextDDInfo()
     288           0 :     {
     289           0 :         maCursor.SetStyle( CURSOR_SHADOW );
     290           0 :         mbStarterOfDD = false;
     291           0 :         mbVisCursor = false;
     292           0 :     }
     293             : };
     294             : 
     295             : #endif // INCLUDED_VCL_SOURCE_EDIT_TEXTDAT2_HXX
     296             : 
     297             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10