LCOV - code coverage report
Current view: top level - sc/source/ui/miscdlgs - scuiautofmt.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 206 0.0 %
Date: 2014-04-14 Functions: 0 20 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             : 
      21             : #undef SC_DLLIMPLEMENTATION
      22             : 
      23             : 
      24             : 
      25             : #include "scitems.hxx"
      26             : #include <svx/algitem.hxx>
      27             : #include <editeng/boxitem.hxx>
      28             : #include <editeng/brushitem.hxx>
      29             : #include <editeng/contouritem.hxx>
      30             : #include <editeng/colritem.hxx>
      31             : #include <editeng/crossedoutitem.hxx>
      32             : #include <editeng/fontitem.hxx>
      33             : #include <editeng/postitem.hxx>
      34             : #include <editeng/shdditem.hxx>
      35             : #include <editeng/udlnitem.hxx>
      36             : #include <editeng/wghtitem.hxx>
      37             : #include <svl/zforlist.hxx>
      38             : #include <vcl/msgbox.hxx>
      39             : #include <comphelper/processfactory.hxx>
      40             : #include <sfx2/sfxresid.hxx>
      41             : #include "sc.hrc"
      42             : #include "scmod.hxx"
      43             : #include "attrib.hxx"
      44             : #include "zforauto.hxx"
      45             : #include "global.hxx"
      46             : #include "globstr.hrc"
      47             : #include "autoform.hxx"
      48             : #include "strindlg.hxx"
      49             : #include "miscdlgs.hrc"
      50             : #include "scuiautofmt.hxx"
      51             : #include "scresid.hxx"
      52             : #include "document.hxx"
      53             : 
      54             : 
      55             : // AutoFormat-Dialog:
      56             : 
      57           0 : ScAutoFormatDlg::ScAutoFormatDlg(Window* pParent,
      58             :     ScAutoFormat* pAutoFormat,
      59             :     const ScAutoFormatData* pSelFormatData,
      60             :     ScViewData *pViewData)
      61             :     : ModalDialog(pParent, "AutoFormatTableDialog",
      62             :         "modules/scalc/ui/autoformattable.ui")
      63             :     , aStrTitle(ScResId(STR_ADD_AUTOFORMAT_TITLE))
      64             :     , aStrLabel(ScResId(STR_ADD_AUTOFORMAT_LABEL))
      65             :     , aStrClose(ScResId(STR_BTN_AUTOFORMAT_CLOSE))
      66             :     , aStrDelTitle(ScResId(STR_DEL_AUTOFORMAT_TITLE))
      67             :     , aStrDelMsg(ScResId(STR_DEL_AUTOFORMAT_MSG))
      68             :     , aStrRename(ScResId(STR_RENAME_AUTOFORMAT_TITLE))
      69             :     , pFormat(pAutoFormat)
      70             :     , pSelFmtData(pSelFormatData)
      71             :     , nIndex(0)
      72             :     , bCoreDataChanged(false)
      73           0 :     , bFmtInserted(false)
      74             : {
      75           0 :     get(m_pLbFormat, "formatlb");
      76           0 :     get(m_pWndPreview, "preview");
      77           0 :     m_pWndPreview->DetectRTL(pViewData);
      78           0 :     get(m_pBtnOk, "ok");
      79           0 :     get(m_pBtnCancel, "cancel");
      80           0 :     get(m_pBtnAdd, "add");
      81           0 :     get(m_pBtnRemove, "remove");
      82           0 :     get(m_pBtnRename, "rename");
      83           0 :     get(m_pBtnNumFormat, "numformatcb");
      84           0 :     get(m_pBtnBorder, "bordercb");
      85           0 :     get(m_pBtnFont, "fontcb");
      86           0 :     get(m_pBtnPattern, "patterncb");
      87           0 :     get(m_pBtnAlignment, "alignmentcb");
      88           0 :     get(m_pBtnAdjust, "autofitcb");
      89             : 
      90           0 :     Init();
      91           0 :     ScAutoFormat::iterator it = pFormat->begin();
      92           0 :     m_pWndPreview->NotifyChange(it->second);
      93           0 : }
      94             : 
      95           0 : void ScAutoFormatDlg::Init()
      96             : {
      97           0 :     m_pLbFormat->SetSelectHdl( LINK( this, ScAutoFormatDlg, SelFmtHdl ) );
      98           0 :     m_pBtnNumFormat->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
      99           0 :     m_pBtnBorder->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
     100           0 :     m_pBtnFont->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
     101           0 :     m_pBtnPattern->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
     102           0 :     m_pBtnAlignment->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
     103           0 :     m_pBtnAdjust->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
     104           0 :     m_pBtnAdd->SetClickHdl ( LINK( this, ScAutoFormatDlg, AddHdl ) );
     105           0 :     m_pBtnRemove->SetClickHdl ( LINK( this, ScAutoFormatDlg, RemoveHdl ) );
     106           0 :     m_pBtnOk->SetClickHdl ( LINK( this, ScAutoFormatDlg, CloseHdl ) );
     107           0 :     m_pBtnCancel->SetClickHdl ( LINK( this, ScAutoFormatDlg, CloseHdl ) );
     108           0 :     m_pBtnRename->SetClickHdl ( LINK( this, ScAutoFormatDlg, RenameHdl ) );
     109           0 :     m_pLbFormat->SetDoubleClickHdl( LINK( this, ScAutoFormatDlg, DblClkHdl ) );
     110             : 
     111           0 :     ScAutoFormat::const_iterator it = pFormat->begin(), itEnd = pFormat->end();
     112           0 :     for (; it != itEnd; ++it)
     113           0 :         m_pLbFormat->InsertEntry(it->second->GetName());
     114             : 
     115           0 :     if (pFormat->size() == 1)
     116           0 :         m_pBtnRemove->Disable();
     117             : 
     118           0 :     m_pLbFormat->SelectEntryPos( 0 );
     119           0 :     m_pBtnRename->Disable();
     120           0 :     m_pBtnRemove->Disable();
     121             : 
     122           0 :     nIndex = 0;
     123           0 :     UpdateChecks();
     124             : 
     125           0 :     if ( !pSelFmtData )
     126             :     {
     127           0 :         m_pBtnAdd->Disable();
     128           0 :         m_pBtnRemove->Disable();
     129           0 :         bFmtInserted = true;
     130             :     }
     131           0 : }
     132             : 
     133           0 : void ScAutoFormatDlg::UpdateChecks()
     134             : {
     135           0 :     const ScAutoFormatData* pData = pFormat->findByIndex(nIndex);
     136             : 
     137           0 :     m_pBtnNumFormat->Check( pData->GetIncludeValueFormat() );
     138           0 :     m_pBtnBorder->Check( pData->GetIncludeFrame() );
     139           0 :     m_pBtnFont->Check( pData->GetIncludeFont() );
     140           0 :     m_pBtnPattern->Check( pData->GetIncludeBackground() );
     141           0 :     m_pBtnAlignment->Check( pData->GetIncludeJustify() );
     142           0 :     m_pBtnAdjust->Check( pData->GetIncludeWidthHeight() );
     143           0 : }
     144             : 
     145             : 
     146             : // Handler:
     147             : 
     148             : 
     149           0 : IMPL_LINK( ScAutoFormatDlg, CloseHdl, PushButton *, pBtn )
     150             : {
     151           0 :     if (pBtn == m_pBtnOk || pBtn == m_pBtnCancel)
     152             :     {
     153           0 :         if ( bCoreDataChanged )
     154           0 :             ScGlobal::GetOrCreateAutoFormat()->Save();
     155             : 
     156           0 :         EndDialog( (pBtn == m_pBtnOk) ? RET_OK : RET_CANCEL );
     157             :     }
     158           0 :     return 0;
     159             : }
     160             : 
     161           0 : IMPL_LINK_NOARG_INLINE_START(ScAutoFormatDlg, DblClkHdl)
     162             : {
     163           0 :     if ( bCoreDataChanged )
     164           0 :         ScGlobal::GetOrCreateAutoFormat()->Save();
     165             : 
     166           0 :     EndDialog( RET_OK );
     167           0 :     return 0;
     168             : }
     169           0 : IMPL_LINK_NOARG_INLINE_END(ScAutoFormatDlg, DblClkHdl)
     170             : 
     171           0 : IMPL_LINK( ScAutoFormatDlg, CheckHdl, Button *, pBtn )
     172             : {
     173           0 :     ScAutoFormatData* pData = pFormat->findByIndex(nIndex);
     174           0 :     bool bCheck = ((CheckBox*)pBtn)->IsChecked();
     175             : 
     176           0 :     if ( pBtn == m_pBtnNumFormat )
     177           0 :         pData->SetIncludeValueFormat( bCheck );
     178           0 :     else if ( pBtn == m_pBtnBorder )
     179           0 :         pData->SetIncludeFrame( bCheck );
     180           0 :     else if ( pBtn == m_pBtnFont )
     181           0 :         pData->SetIncludeFont( bCheck );
     182           0 :     else if ( pBtn == m_pBtnPattern )
     183           0 :         pData->SetIncludeBackground( bCheck );
     184           0 :     else if ( pBtn == m_pBtnAlignment )
     185           0 :         pData->SetIncludeJustify( bCheck );
     186           0 :     else if ( pBtn == m_pBtnAdjust )
     187           0 :         pData->SetIncludeWidthHeight( bCheck );
     188             : 
     189           0 :     if ( !bCoreDataChanged )
     190             :     {
     191           0 :         m_pBtnCancel->SetText( aStrClose );
     192           0 :         bCoreDataChanged = true;
     193             :     }
     194             : 
     195           0 :     m_pWndPreview->NotifyChange( pData );
     196             : 
     197           0 :     return 0;
     198             : }
     199             : 
     200           0 : IMPL_LINK_NOARG(ScAutoFormatDlg, AddHdl)
     201             : {
     202           0 :     if ( !bFmtInserted && pSelFmtData )
     203             :     {
     204           0 :         OUString aStrStandard( SfxResId(STR_STANDARD) );
     205           0 :         OUString aFormatName;
     206             :         ScStringInputDlg*   pDlg;
     207           0 :         bool bOk = false;
     208             : 
     209           0 :         while ( !bOk )
     210             :         {
     211             :             pDlg = new ScStringInputDlg( this,
     212             :                                          aStrTitle,
     213             :                                          aStrLabel,
     214             :                                          aFormatName,
     215           0 :                                          HID_SC_ADD_AUTOFMT, HID_SC_AUTOFMT_NAME );
     216             : 
     217           0 :             if ( pDlg->Execute() == RET_OK )
     218             :             {
     219           0 :                 aFormatName = pDlg->GetInputString();
     220             : 
     221           0 :                 if ( !aFormatName.isEmpty() && !aFormatName.equals(aStrStandard) )
     222             :                 {
     223             :                     ScAutoFormatData* pNewData
     224           0 :                         = new ScAutoFormatData( *pSelFmtData );
     225             : 
     226           0 :                     pNewData->SetName( aFormatName );
     227           0 :                     bFmtInserted = pFormat->insert(pNewData);
     228             : 
     229           0 :                     if ( bFmtInserted )
     230             :                     {
     231           0 :                         ScAutoFormat::const_iterator it = pFormat->find(pNewData);
     232           0 :                         ScAutoFormat::const_iterator itBeg = pFormat->begin();
     233           0 :                         size_t nPos = std::distance(itBeg, it);
     234           0 :                         m_pLbFormat->InsertEntry(aFormatName, nPos);
     235           0 :                         m_pLbFormat->SelectEntry( aFormatName );
     236           0 :                         m_pBtnAdd->Disable();
     237             : 
     238           0 :                         if ( !bCoreDataChanged )
     239             :                         {
     240           0 :                             m_pBtnCancel->SetText( aStrClose );
     241           0 :                             bCoreDataChanged = true;
     242             :                         }
     243             : 
     244           0 :                         SelFmtHdl( 0 );
     245           0 :                         bOk = true;
     246             :                     }
     247             :                     else
     248           0 :                         delete pNewData;
     249             : 
     250             :                 }
     251             : 
     252           0 :                 if ( !bFmtInserted )
     253             :                 {
     254             :                     sal_uInt16 nRet = ErrorBox( this,
     255             :                                             WinBits( WB_OK_CANCEL | WB_DEF_OK),
     256           0 :                                             ScGlobal::GetRscString(STR_INVALID_AFNAME)
     257           0 :                                           ).Execute();
     258             : 
     259           0 :                     bOk = ( nRet == RET_CANCEL );
     260             :                 }
     261             :             }
     262             :             else
     263           0 :                 bOk = true;
     264             : 
     265           0 :             delete pDlg;
     266           0 :         }
     267             :     }
     268             : 
     269           0 :     return 0;
     270             : }
     271             : 
     272           0 : IMPL_LINK_NOARG(ScAutoFormatDlg, RemoveHdl)
     273             : {
     274           0 :     if ( (nIndex > 0) && (m_pLbFormat->GetEntryCount() > 0) )
     275             :     {
     276           0 :         OUString aMsg( aStrDelMsg.getToken( 0, '#' ) );
     277             : 
     278           0 :         aMsg += m_pLbFormat->GetSelectEntry();
     279           0 :         aMsg += aStrDelMsg.getToken( 1, '#' );
     280             : 
     281           0 :         if ( RET_YES ==
     282           0 :              QueryBox( this, WinBits( WB_YES_NO | WB_DEF_YES ), aMsg ).Execute() )
     283             :         {
     284           0 :             m_pLbFormat->RemoveEntry( nIndex );
     285           0 :             m_pLbFormat->SelectEntryPos( nIndex-1 );
     286             : 
     287           0 :             if ( nIndex-1 == 0 )
     288           0 :                 m_pBtnRemove->Disable();
     289             : 
     290           0 :             if ( !bCoreDataChanged )
     291             :             {
     292           0 :                 m_pBtnCancel->SetText( aStrClose );
     293           0 :                 bCoreDataChanged = true;
     294             :             }
     295             : 
     296           0 :             ScAutoFormat::iterator it = pFormat->begin();
     297           0 :             std::advance(it, nIndex);
     298           0 :             pFormat->erase(it);
     299           0 :             nIndex--;
     300             : 
     301           0 :             SelFmtHdl( 0 );
     302           0 :         }
     303             :     }
     304             : 
     305           0 :     SelFmtHdl( 0 );
     306             : 
     307           0 :     return 0;
     308             : }
     309             : 
     310           0 : IMPL_LINK_NOARG(ScAutoFormatDlg, RenameHdl)
     311             : {
     312           0 :     sal_Bool bOk = false;
     313           0 :     while( !bOk )
     314             :     {
     315             : 
     316           0 :         OUString aFormatName = m_pLbFormat->GetSelectEntry();
     317           0 :         OUString aEntry;
     318             : 
     319             :         ScStringInputDlg* pDlg = new ScStringInputDlg( this,
     320             :                                          aStrRename,
     321             :                                          aStrLabel,
     322             :                                          aFormatName,
     323           0 :                                          HID_SC_REN_AFMT_DLG, HID_SC_REN_AFMT_NAME );
     324           0 :         if( pDlg->Execute() == RET_OK )
     325             :         {
     326           0 :             bool bFmtRenamed = false;
     327           0 :             aFormatName = pDlg->GetInputString();
     328             : 
     329           0 :             if (!aFormatName.isEmpty())
     330             :             {
     331           0 :                 ScAutoFormat::iterator it = pFormat->begin(), itEnd = pFormat->end();
     332           0 :                 for (; it != itEnd; ++it)
     333             :                 {
     334           0 :                     aEntry = it->second->GetName();
     335           0 :                     if (aFormatName.equals(aEntry))
     336           0 :                         break;
     337             :                 }
     338           0 :                 if (it == itEnd)
     339             :                 {
     340             :                     // Format mit dem Namen noch nicht vorhanden, also
     341             :                     // umbenennen
     342             : 
     343           0 :                     m_pLbFormat->RemoveEntry(nIndex );
     344           0 :                     const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
     345             :                     ScAutoFormatData* pNewData
     346           0 :                         = new ScAutoFormatData(*p);
     347             : 
     348           0 :                     it = pFormat->begin();
     349           0 :                     std::advance(it, nIndex);
     350           0 :                     pFormat->erase(it);
     351             : 
     352           0 :                     pNewData->SetName( aFormatName );
     353             : 
     354           0 :                     pFormat->insert(pNewData);
     355             : 
     356           0 :                     m_pLbFormat->SetUpdateMode(false);
     357           0 :                     m_pLbFormat->Clear();
     358           0 :                     for (it = pFormat->begin(); it != itEnd; ++it)
     359             :                     {
     360           0 :                         aEntry = it->second->GetName();
     361           0 :                         m_pLbFormat->InsertEntry( aEntry );
     362             :                     }
     363             : 
     364           0 :                     m_pLbFormat->SetUpdateMode(true);
     365           0 :                     m_pLbFormat->SelectEntry( aFormatName);
     366             : 
     367           0 :                     if ( !bCoreDataChanged )
     368             :                     {
     369           0 :                         m_pBtnCancel->SetText( aStrClose );
     370           0 :                         bCoreDataChanged = true;
     371             :                     }
     372             : 
     373             : 
     374           0 :                     SelFmtHdl( 0 );
     375           0 :                     bOk = true;
     376           0 :                     bFmtRenamed = true;
     377             :                 }
     378             :             }
     379           0 :             if( !bFmtRenamed )
     380             :             {
     381           0 :                 bOk = RET_CANCEL == ErrorBox( this,
     382             :                                     WinBits( WB_OK_CANCEL | WB_DEF_OK),
     383           0 :                                     ScGlobal::GetRscString(STR_INVALID_AFNAME)
     384           0 :                                     ).Execute();
     385             :             }
     386             :         }
     387             :         else
     388           0 :             bOk = true;
     389           0 :         delete pDlg;
     390           0 :     }
     391             : 
     392           0 :     return 0;
     393             : }
     394             : 
     395           0 : IMPL_LINK_NOARG(ScAutoFormatDlg, SelFmtHdl)
     396             : {
     397           0 :     nIndex = m_pLbFormat->GetSelectEntryPos();
     398           0 :     UpdateChecks();
     399             : 
     400           0 :     if ( nIndex == 0 )
     401             :     {
     402           0 :         m_pBtnRename->Disable();
     403           0 :         m_pBtnRemove->Disable();
     404             :     }
     405             :     else
     406             :     {
     407           0 :         m_pBtnRename->Enable();
     408           0 :         m_pBtnRemove->Enable();
     409             :     }
     410             : 
     411           0 :     ScAutoFormatData* p = pFormat->findByIndex(nIndex);
     412           0 :     m_pWndPreview->NotifyChange(p);
     413             : 
     414           0 :     return 0;
     415             : }
     416             : 
     417           0 : OUString ScAutoFormatDlg::GetCurrFormatName()
     418             : {
     419           0 :     const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
     420           0 :     return p ? p->GetName() : OUString();
     421           0 : }
     422             : 
     423             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10