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

Generated by: LCOV version 1.10