LCOV - code coverage report
Current view: top level - libreoffice/forms/source/richtext - richtextvclcontrol.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 108 0.0 %
Date: 2012-12-27 Functions: 0 27 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             : #include "richtextvclcontrol.hxx"
      21             : #include "richtextimplcontrol.hxx"
      22             : #include <svl/itempool.hxx>
      23             : #include <svl/itemset.hxx>
      24             : #include <svl/languageoptions.hxx>
      25             : #if OSL_DEBUG_LEVEL > 0
      26             :     #include <unotools/ucbstreamhelper.hxx>
      27             :     #include <vcl/msgbox.hxx>
      28             :     #include <sfx2/filedlghelper.hxx>
      29             :     #include <tools/urlobj.hxx>
      30             :     #include "com/sun/star/ui/dialogs/TemplateDescription.hpp"
      31             : #endif
      32             : #include <editeng/scripttypeitem.hxx>
      33             : #include <editeng/editeng.hxx>
      34             : #include <editeng/editview.hxx>
      35             : #include <editeng/eeitem.hxx>
      36             : #include <editeng/fontitem.hxx>
      37             : #include <editeng/fhgtitem.hxx>
      38             : #include <editeng/editids.hrc>
      39             : #include <svx/svxids.hrc>
      40             : #include <memory>
      41             : 
      42             : //........................................................................
      43             : namespace frm
      44             : {
      45             : //........................................................................
      46             : 
      47             :     using namespace ::com::sun::star::awt;
      48             : 
      49             :     //====================================================================
      50             :     //= RichTextControl
      51             :     //====================================================================
      52             :     //--------------------------------------------------------------------
      53           0 :     RichTextControl::RichTextControl( RichTextEngine* _pEngine, Window* _pParent, WinBits _nStyle,
      54             :         ITextAttributeListener* _pTextAttribListener, ITextSelectionListener* _pSelectionListener )
      55             :         :Control( _pParent, implInitStyle( _nStyle ) )
      56           0 :         ,m_pImpl( NULL )
      57             :     {
      58           0 :         implInit( _pEngine, _pTextAttribListener, _pSelectionListener );
      59           0 :     }
      60             : 
      61             :     //--------------------------------------------------------------------
      62           0 :     void RichTextControl::implInit( RichTextEngine* _pEngine, ITextAttributeListener* _pTextAttribListener, ITextSelectionListener* _pSelectionListener )
      63             :     {
      64           0 :         m_pImpl = new RichTextControlImpl( this, _pEngine, _pTextAttribListener, _pSelectionListener );
      65           0 :         SetCompoundControl( sal_True );
      66           0 :     }
      67             : 
      68             :     //--------------------------------------------------------------------
      69           0 :     RichTextControl::~RichTextControl( )
      70             :     {
      71           0 :         delete m_pImpl;
      72           0 :     }
      73             : 
      74             :     //--------------------------------------------------------------------
      75           0 :     AttributeState RichTextControl::getState( AttributeId _nAttributeId ) const
      76             :     {
      77           0 :         return m_pImpl->getAttributeState( _nAttributeId );
      78             :     }
      79             : 
      80             :     //--------------------------------------------------------------------
      81           0 :     void RichTextControl::executeAttribute( AttributeId _nAttributeId, const SfxPoolItem* _pArgument )
      82             :     {
      83           0 :         SfxItemSet aToApplyAttributes( getView().GetEmptyItemSet() );
      84           0 :         if ( !m_pImpl->executeAttribute( getView().GetAttribs(), aToApplyAttributes, _nAttributeId, _pArgument, m_pImpl->getSelectedScriptType() ) )
      85             :         {
      86             :             OSL_FAIL( "RichTextControl::executeAttribute: cannot handle the given attribute!" );
      87           0 :             return;
      88             :         }
      89             : 
      90           0 :         applyAttributes( aToApplyAttributes );
      91             :     }
      92             : 
      93             :     //--------------------------------------------------------------------
      94           0 :     void RichTextControl::applyAttributes( const SfxItemSet& _rAttributesToApply )
      95             :     {
      96             :         // apply
      97           0 :         if ( HasChildPathFocus() )
      98           0 :             getView().HideCursor();
      99             : 
     100           0 :         sal_Bool bOldUpdateMode = getEngine().GetUpdateMode();   // TODO: guard?
     101           0 :         getEngine().SetUpdateMode( sal_False );
     102             : 
     103           0 :         getView().SetAttribs( _rAttributesToApply );
     104             : 
     105           0 :         getEngine().SetUpdateMode( bOldUpdateMode );
     106           0 :         getView().Invalidate();
     107             : 
     108           0 :         if ( HasChildPathFocus() )
     109           0 :             getView().ShowCursor();
     110             : 
     111           0 :         m_pImpl->updateAllAttributes();
     112             :             // TODO: maybe we should have a list of attributes which need to be updated
     113             :             // (the handler for the just executed attribute should know)
     114           0 :     }
     115             : 
     116             :     //--------------------------------------------------------------------
     117           0 :     void RichTextControl::enableAttributeNotification( AttributeId _nAttributeId, ITextAttributeListener* _pListener )
     118             :     {
     119           0 :         m_pImpl->enableAttributeNotification( _nAttributeId, _pListener );
     120           0 :     }
     121             : 
     122             :     //--------------------------------------------------------------------
     123           0 :     void RichTextControl::disableAttributeNotification( AttributeId _nAttributeId )
     124             :     {
     125           0 :         m_pImpl->disableAttributeNotification( _nAttributeId );
     126           0 :     }
     127             : 
     128             :     //--------------------------------------------------------------------
     129           0 :     bool RichTextControl::isMappableSlot( SfxSlotId _nSlotId )
     130             :     {
     131           0 :         switch ( _nSlotId )
     132             :         {
     133             :             case SID_ATTR_PARA_ADJUST_LEFT:
     134             :             case SID_ATTR_PARA_ADJUST_CENTER:
     135             :             case SID_ATTR_PARA_ADJUST_RIGHT:
     136             :             case SID_ATTR_PARA_ADJUST_BLOCK:
     137             :             case SID_SET_SUPER_SCRIPT:
     138             :             case SID_SET_SUB_SCRIPT:
     139             :             case SID_ATTR_PARA_LINESPACE_10:
     140             :             case SID_ATTR_PARA_LINESPACE_15:
     141             :             case SID_ATTR_PARA_LINESPACE_20:
     142             :             case SID_ATTR_PARA_LEFT_TO_RIGHT:
     143             :             case SID_ATTR_PARA_RIGHT_TO_LEFT:
     144             :             case SID_TEXTDIRECTION_TOP_TO_BOTTOM:
     145             :             case SID_TEXTDIRECTION_LEFT_TO_RIGHT:
     146             :             case SID_ATTR_CHAR_LATIN_FONT:
     147             :             case SID_ATTR_CHAR_LATIN_FONTHEIGHT:
     148             :             case SID_ATTR_CHAR_LATIN_LANGUAGE:
     149             :             case SID_ATTR_CHAR_LATIN_POSTURE:
     150             :             case SID_ATTR_CHAR_LATIN_WEIGHT:
     151           0 :                 return true;
     152             :         }
     153           0 :         return false;
     154             :     }
     155             : 
     156             :     //--------------------------------------------------------------------
     157           0 :     void RichTextControl::Resize()
     158             :     {
     159           0 :         m_pImpl->layoutWindow();
     160           0 :         Invalidate();
     161           0 :     }
     162             : 
     163             :     //--------------------------------------------------------------------
     164           0 :     void RichTextControl::GetFocus()
     165             :     {
     166           0 :         getViewport().GrabFocus();
     167           0 :     }
     168             : 
     169             :     //--------------------------------------------------------------------
     170           0 :     WinBits RichTextControl::implInitStyle( WinBits nStyle )
     171             :     {
     172           0 :         if ( !( nStyle & WB_NOTABSTOP ) )
     173           0 :             nStyle |= WB_TABSTOP;
     174           0 :         return nStyle;
     175             :     }
     176             : 
     177             :     //--------------------------------------------------------------------
     178           0 :     void RichTextControl::StateChanged( StateChangedType _nStateChange )
     179             :     {
     180           0 :         if ( _nStateChange == STATE_CHANGE_STYLE )
     181             :         {
     182           0 :             SetStyle( implInitStyle( GetStyle() ) );
     183           0 :             m_pImpl->notifyStyleChanged();
     184             :         }
     185           0 :         else if ( _nStateChange == STATE_CHANGE_ZOOM )
     186             :         {
     187           0 :             m_pImpl->notifyZoomChanged();
     188             :         }
     189           0 :         else if ( _nStateChange == STATE_CHANGE_INITSHOW )
     190             :         {
     191           0 :             m_pImpl->notifyInitShow();
     192             :         }
     193           0 :         Control::StateChanged( _nStateChange );
     194           0 :     }
     195             : 
     196             :     //--------------------------------------------------------------------
     197           0 :     long RichTextControl::PreNotify( NotifyEvent& _rNEvt )
     198             :     {
     199           0 :         if ( IsWindowOrChild( _rNEvt.GetWindow() ) )
     200             :         {
     201           0 :             if ( EVENT_KEYINPUT == _rNEvt.GetType() )
     202             :             {
     203           0 :                 const ::KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent();
     204             : 
     205           0 :                 sal_uInt16 nCode = pKeyEvent->GetKeyCode().GetCode();
     206           0 :                 sal_Bool   bShift = pKeyEvent->GetKeyCode().IsShift();
     207           0 :                 sal_Bool   bCtrl = pKeyEvent->GetKeyCode().IsMod1();
     208           0 :                 sal_Bool   bAlt = pKeyEvent->GetKeyCode().IsMod2();
     209           0 :                 if ( ( KEY_TAB == nCode ) && bCtrl && !bAlt )
     210             :                 {
     211             :                     // Ctrl-Tab is used to step out of the control
     212             :                     // -> build a new key event without the Ctrl-key, and let the very base class handle it
     213           0 :                     KeyCode aNewCode( KEY_TAB, bShift, sal_False, sal_False, sal_False );
     214           0 :                     ::KeyEvent aNewEvent( pKeyEvent->GetCharCode(), aNewCode );
     215           0 :                     Control::KeyInput( aNewEvent );
     216           0 :                     return 1;   // handled
     217             :                 }
     218             : 
     219             : #if OSL_DEBUG_LEVEL > 0
     220             :                 if  (   (   ( KEY_F12 == nCode )
     221             :                         ||  ( KEY_F11 == nCode )
     222             :                         )
     223             :                     &&  bCtrl
     224             :                     &&  bAlt
     225             :                     )
     226             :                 {
     227             :                     bool bLoad = KEY_F11 == nCode;
     228             :                     struct
     229             :                     {
     230             :                         const sal_Char* pDescription;
     231             :                         const sal_Char* pExtension;
     232             :                         EETextFormat    eFormat;
     233             :                     } aExportFormats[] =
     234             :                     {
     235             :                         { "OASIS OpenDocument (*.xml)", "*.xml", EE_FORMAT_XML },
     236             :                         { "HyperText Markup Language (*.html)", "*.html", EE_FORMAT_HTML },
     237             :                         { "Rich Text format (*.rtf)", "*.rtf", EE_FORMAT_RTF },
     238             :                         { "Text (*.txt)", "*.txt", EE_FORMAT_TEXT }
     239             :                     };
     240             : 
     241             :                     ::sfx2::FileDialogHelper aFP( bLoad ? com::sun::star::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE : com::sun::star::ui::dialogs::TemplateDescription::FILESAVE_AUTOEXTENSION, 0, this );
     242             : 
     243             :                     for ( size_t i = 0; i < SAL_N_ELEMENTS( aExportFormats ); ++i )
     244             :                     {
     245             :                         aFP.AddFilter(
     246             :                             rtl::OUString::createFromAscii( aExportFormats[i].pDescription ),
     247             :                             rtl::OUString::createFromAscii( aExportFormats[i].pExtension ) );
     248             :                     }
     249             :                     ErrCode nResult = aFP.Execute();
     250             :                     if ( nResult == 0 )
     251             :                     {
     252             :                         String sFileName = aFP.GetPath();
     253             :                         SvStream* pStream = ::utl::UcbStreamHelper::CreateStream(
     254             :                             sFileName, ( bLoad ? STREAM_READ : STREAM_WRITE | STREAM_TRUNC ) | STREAM_SHARE_DENYALL
     255             :                         );
     256             :                         if ( pStream )
     257             :                         {
     258             :                             EETextFormat eFormat = EE_FORMAT_XML;
     259             :                             String sFilter = aFP.GetCurrentFilter();
     260             :                             for ( size_t i = 0; i < SAL_N_ELEMENTS( aExportFormats ); ++i )
     261             :                             {
     262             :                                 if ( sFilter.EqualsAscii( aExportFormats[i].pDescription ) )
     263             :                                 {
     264             :                                     eFormat = aExportFormats[i].eFormat;
     265             :                                     break;
     266             :                                 }
     267             :                             }
     268             :                             if ( bLoad )
     269             :                             {
     270             :                                 INetURLObject aURL( sFileName );
     271             :                                 aURL.removeSegment();
     272             :                                 getEngine().Read( *pStream, aURL.GetMainURL( INetURLObject::NO_DECODE ), eFormat );
     273             :                             }
     274             :                             else
     275             :                             {
     276             :                                 getEngine().Write( *pStream, eFormat );
     277             :                             }
     278             :                         }
     279             :                         DELETEZ( pStream );
     280             :                     }
     281             :                     return 1;   // handled
     282             :                 }
     283             : #endif
     284             :             }
     285             :         }
     286           0 :         return Control::PreNotify( _rNEvt );
     287             :     }
     288             : 
     289             :     //--------------------------------------------------------------------
     290           0 :     long RichTextControl::Notify( NotifyEvent& _rNEvt )
     291             :     {
     292           0 :         long nDone = 0;
     293           0 :         if ( _rNEvt.GetType() == EVENT_COMMAND )
     294             :         {
     295           0 :             const CommandEvent& rEvent = *_rNEvt.GetCommandEvent();
     296           0 :             nDone = m_pImpl->HandleCommand( rEvent );
     297             :         }
     298           0 :         return nDone ? nDone : Control::Notify( _rNEvt );
     299             :     }
     300             : 
     301             :     //--------------------------------------------------------------------
     302           0 :     void RichTextControl::Draw( OutputDevice* _pDev, const Point& _rPos, const Size& _rSize, sal_uLong _nFlags )
     303             :     {
     304           0 :         m_pImpl->Draw( _pDev, _rPos, _rSize, _nFlags );
     305           0 :     }
     306             : 
     307             :     //--------------------------------------------------------------------
     308           0 :     EditView& RichTextControl::getView()
     309             :     {
     310           0 :         return *m_pImpl->getView( RichTextControlImpl::GrantAccess() );
     311             :     }
     312             : 
     313             :     //--------------------------------------------------------------------
     314           0 :     const EditView& RichTextControl::getView() const
     315             :     {
     316           0 :         return *m_pImpl->getView( RichTextControlImpl::GrantAccess() );
     317             :     }
     318             : 
     319             :     //--------------------------------------------------------------------
     320           0 :     EditEngine& RichTextControl::getEngine() const
     321             :     {
     322           0 :         return *m_pImpl->getEngine( RichTextControlImpl::GrantAccess() );
     323             :     }
     324             : 
     325             :     //--------------------------------------------------------------------
     326           0 :     Window& RichTextControl::getViewport() const
     327             :     {
     328           0 :         return *m_pImpl->getViewport( RichTextControlImpl::GrantAccess() );
     329             :     }
     330             : 
     331             :     //--------------------------------------------------------------------
     332           0 :     void RichTextControl::SetReadOnly( bool _bReadOnly )
     333             :     {
     334           0 :         m_pImpl->SetReadOnly( _bReadOnly );
     335           0 :     }
     336             : 
     337             :     //--------------------------------------------------------------------
     338           0 :     bool RichTextControl::IsReadOnly() const
     339             :     {
     340           0 :         return m_pImpl->IsReadOnly();
     341             :     }
     342             : 
     343             :     //--------------------------------------------------------------------
     344           0 :     void RichTextControl::SetBackgroundColor( )
     345             :     {
     346           0 :         m_pImpl->SetBackgroundColor( );
     347           0 :     }
     348             : 
     349             :     //--------------------------------------------------------------------
     350           0 :     void RichTextControl::SetBackgroundColor( const Color& _rColor )
     351             :     {
     352           0 :         m_pImpl->SetBackgroundColor( _rColor );
     353           0 :     }
     354             : 
     355             :     //--------------------------------------------------------------------
     356           0 :     void RichTextControl::SetHideInactiveSelection( bool _bHide )
     357             :     {
     358           0 :         m_pImpl->SetHideInactiveSelection( _bHide );
     359           0 :     }
     360             : 
     361             :     //--------------------------------------------------------------------
     362           0 :     bool RichTextControl::GetHideInactiveSelection() const
     363             :     {
     364           0 :         return m_pImpl->GetHideInactiveSelection( );
     365             :     }
     366             : 
     367             : //........................................................................
     368             : }   // namespace frm
     369             : //........................................................................
     370             : 
     371             : 
     372             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10