LCOV - code coverage report
Current view: top level - sc/source/ui/pagedlg - tphfedit.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 209 0.5 %
Date: 2014-11-03 Functions: 2 34 5.9 %
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 "scitems.hxx"
      21             : #include <editeng/eeitem.hxx>
      22             : 
      23             : #include <editeng/editobj.hxx>
      24             : #include <editeng/editstat.hxx>
      25             : #include <editeng/editview.hxx>
      26             : #include <editeng/flditem.hxx>
      27             : #include <editeng/adjustitem.hxx>
      28             : #include <sfx2/basedlgs.hxx>
      29             : #include <sfx2/objsh.hxx>
      30             : #include <vcl/msgbox.hxx>
      31             : #include <vcl/svapp.hxx>
      32             : #include <vcl/settings.hxx>
      33             : 
      34             : #include "tphfedit.hxx"
      35             : #include "editutil.hxx"
      36             : #include "global.hxx"
      37             : #include "attrib.hxx"
      38             : #include "patattr.hxx"
      39             : #include "scresid.hxx"
      40             : #include "sc.hrc"
      41             : #include "globstr.hrc"
      42             : #include "tabvwsh.hxx"
      43             : #include "prevwsh.hxx"
      44             : #include "AccessibleEditObject.hxx"
      45             : 
      46             : #include "scabstdlg.hxx"
      47             : #include <boost/scoped_ptr.hpp>
      48             : 
      49             : // STATIC DATA -----------------------------------------------------------
      50             : static ScEditWindow* pActiveEdWnd = NULL;
      51             : 
      52           0 : ScEditWindow* GetScEditWindow ()
      53             : {
      54           0 :     return pActiveEdWnd;
      55             : }
      56             : 
      57           0 : static void lcl_GetFieldData( ScHeaderFieldData& rData )
      58             : {
      59           0 :     SfxViewShell* pShell = SfxViewShell::Current();
      60           0 :     if (pShell)
      61             :     {
      62           0 :         if (pShell->ISA(ScTabViewShell))
      63           0 :             static_cast<ScTabViewShell*>(pShell)->FillFieldData(rData);
      64           0 :         else if (pShell->ISA(ScPreviewShell))
      65           0 :             static_cast<ScPreviewShell*>(pShell)->FillFieldData(rData);
      66             :     }
      67           0 : }
      68             : 
      69             : // class ScEditWindow
      70             : 
      71           0 : ScEditWindow::ScEditWindow( vcl::Window* pParent, WinBits nBits, ScEditWindowLocation eLoc )
      72             :     :   Control( pParent, nBits ),
      73             :     eLocation(eLoc),
      74           0 :     pAcc(NULL)
      75             : {
      76           0 :     EnableRTL(false);
      77             : 
      78           0 :     const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
      79           0 :     Color aBgColor = rStyleSettings.GetWindowColor();
      80             : 
      81           0 :     SetMapMode( MAP_TWIP );
      82           0 :     SetPointer( POINTER_TEXT );
      83           0 :     SetBackground( aBgColor );
      84             : 
      85           0 :     Size aSize( GetOutputSize() );
      86           0 :     aSize.Height() *= 4;
      87             : 
      88           0 :     pEdEngine = new ScHeaderEditEngine( EditEngine::CreatePool(), true );
      89           0 :     pEdEngine->SetPaperSize( aSize );
      90           0 :     pEdEngine->SetRefDevice( this );
      91             : 
      92           0 :     ScHeaderFieldData aData;
      93           0 :     lcl_GetFieldData( aData );
      94             : 
      95             :         //  Feldbefehle:
      96           0 :     pEdEngine->SetData( aData );
      97           0 :     pEdEngine->SetControlWord( pEdEngine->GetControlWord() | EE_CNTRL_MARKFIELDS );
      98           0 :     mbRTL = ScGlobal::IsSystemRTL();
      99           0 :     if (mbRTL)
     100           0 :         pEdEngine->SetDefaultHorizontalTextDirection(EE_HTEXTDIR_R2L);
     101             : 
     102           0 :     pEdView = new EditView( pEdEngine, this );
     103           0 :     pEdView->SetOutputArea( Rectangle( Point(0,0), GetOutputSize() ) );
     104             : 
     105           0 :     pEdView->SetBackgroundColor( aBgColor );
     106           0 :     pEdEngine->InsertView( pEdView );
     107           0 : }
     108             : 
     109           0 : void ScEditWindow::Resize()
     110             : {
     111           0 :     Size aOutputSize(GetOutputSize());
     112           0 :     Size aSize(aOutputSize);
     113           0 :     aSize.Height() *= 4;
     114           0 :     pEdEngine->SetPaperSize(aSize);
     115           0 :     pEdView->SetOutputArea(Rectangle(Point(0,0), aOutputSize));
     116           0 :     Control::Resize();
     117           0 : }
     118             : 
     119           0 : ScEditWindow::~ScEditWindow()
     120             : {
     121             :     // delete Accessible object before deleting EditEngine and EditView
     122           0 :     if (pAcc)
     123             :     {
     124           0 :         ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
     125           0 :         if (xTemp.is())
     126           0 :             pAcc->dispose();
     127             :     }
     128           0 :     delete pEdEngine;
     129           0 :     delete pEdView;
     130           0 : }
     131             : 
     132           0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeScEditWindow(vcl::Window *pParent, VclBuilder::stringmap &)
     133             : {
     134           0 :     return new ScEditWindow (pParent, WB_BORDER|WB_TABSTOP, Left);
     135             : }
     136             : 
     137           0 : void ScEditWindow::SetNumType(SvxNumType eNumType)
     138             : {
     139           0 :     pEdEngine->SetNumType(eNumType);
     140           0 :     pEdEngine->UpdateFields();
     141           0 : }
     142             : 
     143           0 : EditTextObject* ScEditWindow::CreateTextObject()
     144             : {
     145             :     //  Absatzattribute zuruecksetzen
     146             :     //  (GetAttribs beim Format-Dialog-Aufruf gibt immer gesetzte Items zurueck)
     147             : 
     148           0 :     const SfxItemSet& rEmpty = pEdEngine->GetEmptyItemSet();
     149           0 :     sal_Int32 nParCnt = pEdEngine->GetParagraphCount();
     150           0 :     for (sal_Int32 i=0; i<nParCnt; i++)
     151           0 :         pEdEngine->SetParaAttribs( i, rEmpty );
     152             : 
     153           0 :     return pEdEngine->CreateTextObject();
     154             : }
     155             : 
     156           0 : void ScEditWindow::SetFont( const ScPatternAttr& rPattern )
     157             : {
     158           0 :     SfxItemSet* pSet = new SfxItemSet( pEdEngine->GetEmptyItemSet() );
     159           0 :     rPattern.FillEditItemSet( pSet );
     160             :     //  FillEditItemSet adjusts font height to 1/100th mm,
     161             :     //  but for header/footer twips is needed, as in the PatternAttr:
     162           0 :     pSet->Put( rPattern.GetItem(ATTR_FONT_HEIGHT), EE_CHAR_FONTHEIGHT );
     163           0 :     pSet->Put( rPattern.GetItem(ATTR_CJK_FONT_HEIGHT), EE_CHAR_FONTHEIGHT_CJK );
     164           0 :     pSet->Put( rPattern.GetItem(ATTR_CTL_FONT_HEIGHT), EE_CHAR_FONTHEIGHT_CTL );
     165           0 :     if (mbRTL)
     166           0 :         pSet->Put( SvxAdjustItem( SVX_ADJUST_RIGHT, EE_PARA_JUST ) );
     167           0 :     pEdEngine->SetDefaults( pSet );
     168           0 : }
     169             : 
     170           0 : void ScEditWindow::SetText( const EditTextObject& rTextObject )
     171             : {
     172           0 :     pEdEngine->SetText( rTextObject );
     173           0 : }
     174             : 
     175           0 : void ScEditWindow::InsertField( const SvxFieldItem& rFld )
     176             : {
     177           0 :     pEdView->InsertField( rFld );
     178           0 : }
     179             : 
     180           0 : void ScEditWindow::SetCharAttriutes()
     181             : {
     182           0 :     SfxObjectShell* pDocSh  = SfxObjectShell::Current();
     183             : 
     184           0 :     SfxViewShell*       pViewSh = SfxViewShell::Current();
     185             : 
     186           0 :     ScTabViewShell* pTabViewSh = PTR_CAST(ScTabViewShell, SfxViewShell::Current());
     187             : 
     188             :     OSL_ENSURE( pDocSh,  "Current DocShell not found" );
     189             :     OSL_ENSURE( pViewSh, "Current ViewShell not found" );
     190             : 
     191           0 :     if ( pDocSh && pViewSh )
     192             :     {
     193           0 :         if(pTabViewSh!=NULL) pTabViewSh->SetInFormatDialog(true);
     194             : 
     195           0 :         SfxItemSet aSet( pEdView->GetAttribs() );
     196             : 
     197           0 :         ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
     198             :         OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
     199             : 
     200             :         boost::scoped_ptr<SfxAbstractTabDialog> pDlg(pFact->CreateScCharDlg(
     201           0 :             GetParent(),  &aSet, pDocSh));
     202             :         OSL_ENSURE(pDlg, "Dialog create fail!");
     203           0 :         pDlg->SetText( ScGlobal::GetRscString( STR_TEXTATTRS ) );
     204           0 :         if ( pDlg->Execute() == RET_OK )
     205             :         {
     206           0 :             aSet.ClearItem();
     207           0 :             aSet.Put( *pDlg->GetOutputItemSet() );
     208           0 :             pEdView->SetAttribs( aSet );
     209             :         }
     210             : 
     211           0 :         if(pTabViewSh!=NULL) pTabViewSh->SetInFormatDialog(false);
     212             :     }
     213           0 : }
     214             : 
     215           0 : void ScEditWindow::Paint( const Rectangle& rRect )
     216             : {
     217           0 :     const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
     218           0 :     Color aBgColor = rStyleSettings.GetWindowColor();
     219             : 
     220           0 :     pEdView->SetBackgroundColor( aBgColor );
     221             : 
     222           0 :     SetBackground( aBgColor );
     223             : 
     224           0 :     Control::Paint( rRect );
     225             : 
     226           0 :     pEdView->Paint( rRect );
     227             : 
     228           0 :     if( HasFocus() )
     229           0 :         pEdView->ShowCursor(true,true);
     230           0 : }
     231             : 
     232           0 : void ScEditWindow::MouseMove( const MouseEvent& rMEvt )
     233             : {
     234           0 :     pEdView->MouseMove( rMEvt );
     235           0 : }
     236             : 
     237           0 : void ScEditWindow::MouseButtonDown( const MouseEvent& rMEvt )
     238             : {
     239           0 :     if ( !HasFocus() )
     240           0 :         GrabFocus();
     241             : 
     242           0 :     pEdView->MouseButtonDown( rMEvt );
     243           0 : }
     244             : 
     245           0 : void ScEditWindow::MouseButtonUp( const MouseEvent& rMEvt )
     246             : {
     247           0 :     pEdView->MouseButtonUp( rMEvt );
     248           0 : }
     249             : 
     250           0 : void ScEditWindow::KeyInput( const KeyEvent& rKEvt )
     251             : {
     252           0 :     sal_uInt16 nKey =  rKEvt.GetKeyCode().GetModifier()
     253           0 :                  + rKEvt.GetKeyCode().GetCode();
     254             : 
     255           0 :     if ( nKey == KEY_TAB || nKey == KEY_TAB + KEY_SHIFT )
     256             :     {
     257           0 :         Control::KeyInput( rKEvt );
     258             :     }
     259           0 :     else if ( !pEdView->PostKeyEvent( rKEvt ) )
     260             :     {
     261           0 :         Control::KeyInput( rKEvt );
     262             :     }
     263           0 :     else if ( !rKEvt.GetKeyCode().IsMod1() && !rKEvt.GetKeyCode().IsShift() &&
     264           0 :                 rKEvt.GetKeyCode().IsMod2() && rKEvt.GetKeyCode().GetCode() == KEY_DOWN )
     265             :     {
     266           0 :         if (aObjectSelectLink.IsSet() )
     267           0 :             aObjectSelectLink.Call(this);
     268             :     }
     269           0 : }
     270             : 
     271           0 : void ScEditWindow::Command( const CommandEvent& rCEvt )
     272             : {
     273           0 :     pEdView->Command( rCEvt );
     274           0 : }
     275             : 
     276           0 : void ScEditWindow::GetFocus()
     277             : {
     278           0 :     pEdView->ShowCursor(true,true);
     279           0 :     pActiveEdWnd = this;
     280             : 
     281           0 :     ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
     282           0 :     if (xTemp.is() && pAcc)
     283             :     {
     284           0 :         pAcc->GotFocus();
     285             :     }
     286             :     else
     287           0 :         pAcc = NULL;
     288           0 : }
     289             : 
     290           0 : void ScEditWindow::LoseFocus()
     291             : {
     292           0 :     ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
     293           0 :     if (xTemp.is() && pAcc)
     294             :     {
     295           0 :         pAcc->LostFocus();
     296             :     }
     297             :     else
     298           0 :         pAcc = NULL;
     299           0 : }
     300             : 
     301           0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > ScEditWindow::CreateAccessible()
     302             : {
     303           0 :     OUString sName;
     304           0 :     OUString sDescription(GetHelpText());
     305           0 :     switch (eLocation)
     306             :     {
     307             :     case Left:
     308             :         {
     309           0 :             sName = OUString(ScResId(STR_ACC_LEFTAREA_NAME));
     310             :         }
     311           0 :         break;
     312             :     case Center:
     313             :         {
     314           0 :             sName = OUString(ScResId(STR_ACC_CENTERAREA_NAME));
     315             :         }
     316           0 :         break;
     317             :     case Right:
     318             :         {
     319           0 :             sName = OUString(ScResId(STR_ACC_RIGHTAREA_NAME));
     320             :         }
     321           0 :         break;
     322             :     }
     323             :     pAcc = new ScAccessibleEditObject(GetAccessibleParentWindow()->GetAccessible(), pEdView, this,
     324           0 :         OUString(sName), OUString(sDescription), ScAccessibleEditObject::EditControl);
     325           0 :     ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xAccessible = pAcc;
     326           0 :     xAcc = xAccessible;
     327           0 :     return pAcc;
     328             : }
     329             : 
     330           0 : ScExtIButton::ScExtIButton(vcl::Window* pParent, WinBits nBits )
     331           0 :     : ImageButton(pParent,nBits), pPopupMenu(NULL)
     332             : {
     333           0 :     nSelected=0;
     334           0 :     aTimer.SetTimeout(600);
     335           0 :     SetDropDown(PUSHBUTTON_DROPDOWN_TOOLBOX);
     336           0 : }
     337             : 
     338           0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeScExtIButton(vcl::Window *pParent, VclBuilder::stringmap &)
     339             : {
     340           0 :     return new ScExtIButton (pParent, 0);// WB_BORDER|WB_TABSTOP);
     341             : }
     342             : 
     343           0 : void ScExtIButton::SetPopupMenu(PopupMenu* pPopUp)
     344             : {
     345           0 :     pPopupMenu=pPopUp;
     346           0 : }
     347             : 
     348           0 : void ScExtIButton::MouseButtonDown( const MouseEvent& rMEvt )
     349             : {
     350           0 :     if(!aTimer.IsActive())
     351             :     {
     352           0 :         aTimer.Start();
     353           0 :         aTimer.SetTimeoutHdl(LINK( this, ScExtIButton, TimerHdl));
     354             :     }
     355             : 
     356           0 :     ImageButton::MouseButtonDown(rMEvt );
     357           0 : }
     358             : 
     359           0 : void ScExtIButton::MouseButtonUp( const MouseEvent& rMEvt)
     360             : {
     361           0 :     aTimer.Stop();
     362           0 :     aTimer.SetTimeoutHdl(Link());
     363           0 :     ImageButton::MouseButtonUp(rMEvt );
     364           0 : }
     365             : 
     366           0 : void ScExtIButton::Click()
     367             : {
     368           0 :     aTimer.Stop();
     369           0 :     aTimer.SetTimeoutHdl(Link());
     370           0 :     ImageButton::Click();
     371           0 : }
     372             : 
     373           0 : void ScExtIButton::StartPopup()
     374             : {
     375           0 :     nSelected=0;
     376           0 :     aSelectedIdent = OString();
     377             : 
     378           0 :     if(pPopupMenu!=NULL)
     379             :     {
     380           0 :         SetPressed( true );
     381           0 :         EndSelection();
     382           0 :         Point aPoint(0,0);
     383           0 :         aPoint.Y()=GetOutputSizePixel().Height();
     384             : 
     385           0 :         nSelected = pPopupMenu->Execute( this, aPoint );
     386             : 
     387           0 :         if(nSelected)
     388             :         {
     389           0 :             aSelectedIdent = pPopupMenu->GetItemIdent(nSelected);
     390           0 :             aMLink.Call(this);
     391             :         }
     392             : 
     393           0 :         SetPressed( false);
     394             :     }
     395           0 : }
     396             : 
     397           0 : bool ScExtIButton::PreNotify( NotifyEvent& rNEvt )
     398             : {
     399           0 :     sal_uInt16 nSwitch=rNEvt.GetType();
     400           0 :     if(nSwitch==EVENT_MOUSEBUTTONUP)
     401             :     {
     402           0 :         MouseButtonUp(*rNEvt.GetMouseEvent());
     403             :     }
     404             : 
     405           0 :     return ImageButton::PreNotify(rNEvt );
     406             : }
     407             : 
     408           0 : IMPL_LINK_NOARG(ScExtIButton, TimerHdl)
     409             : {
     410           0 :     StartPopup();
     411           0 :     return 0;
     412         228 : }
     413             : 
     414             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10