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

Generated by: LCOV version 1.10