LCOV - code coverage report
Current view: top level - sc/source/ui/namedlg - namedlg.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 309 0.3 %
Date: 2015-06-13 12:38:46 Functions: 2 43 4.7 %
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 "global.hxx"
      21             : #include "reffact.hxx"
      22             : #include "document.hxx"
      23             : #include "docfunc.hxx"
      24             : #include "scresid.hxx"
      25             : #include "globstr.hrc"
      26             : #include "namedlg.hxx"
      27             : #include "viewdata.hxx"
      28             : #include "tabvwsh.hxx"
      29             : 
      30             : #include "globalnames.hxx"
      31             : #include "tokenarray.hxx"
      32             : 
      33             : #include <sfx2/app.hxx>
      34             : 
      35             : #include <vcl/msgbox.hxx>
      36             : #include <vcl/settings.hxx>
      37             : 
      38             : #include <map>
      39             : 
      40             : // defines -------------------------------------------------------------------
      41             : 
      42             : #define ABS_SREF          SCA_VALID \
      43             :     | SCA_COL_ABSOLUTE | SCA_ROW_ABSOLUTE | SCA_TAB_ABSOLUTE
      44             : #define ABS_DREF          ABS_SREF \
      45             :     | SCA_COL2_ABSOLUTE | SCA_ROW2_ABSOLUTE | SCA_TAB2_ABSOLUTE
      46             : #define ABS_DREF3D      ABS_DREF | SCA_TAB_3D
      47             : 
      48             : //logic
      49             : 
      50           0 : ScNameDlg::ScNameDlg( SfxBindings* pB, SfxChildWindow* pCW, vcl::Window* pParent,
      51             :         ScViewData*       ptrViewData,
      52             :         const ScAddress&  aCursorPos, boost::ptr_map<OUString, ScRangeName>* pRangeMap  )
      53             :     : ScAnyRefDlg(pB, pCW, pParent, "ManageNamesDialog", "modules/scalc/ui/managenamesdialog.ui")
      54             : 
      55           0 :     , maGlobalNameStr(ScGlobal::GetRscString(STR_GLOBAL_SCOPE))
      56           0 :     , maErrInvalidNameStr(ScGlobal::GetRscString(STR_ERR_NAME_INVALID))
      57           0 :     , maErrNameInUse(ScGlobal::GetRscString(STR_ERR_NAME_EXISTS))
      58           0 :     , maStrMultiSelect(ScGlobal::GetRscString(STR_MULTI_SELECT))
      59             : 
      60             :     , mpViewData(ptrViewData)
      61           0 :     , mpDoc(ptrViewData->GetDocument())
      62             :     , maCursorPos(aCursorPos)
      63             :     , mbNeedUpdate(true)
      64             :     , mbDataChanged(false)
      65           0 :     , mbCloseWithoutUndo(false)
      66             : {
      67           0 :     get(m_pEdName, "name");
      68           0 :     get(m_pEdAssign, "range");
      69           0 :     m_pEdAssign->SetReferences(this, m_pEdName);
      70           0 :     get(m_pRbAssign, "assign");
      71           0 :     m_pRbAssign->SetReferences(this, m_pEdAssign);
      72           0 :     get(m_pLbScope, "scope");
      73           0 :     get(m_pBtnPrintArea, "printrange");
      74           0 :     get(m_pBtnColHeader, "colheader");
      75           0 :     get(m_pBtnCriteria, "filter");
      76           0 :     get(m_pBtnRowHeader, "rowheader");
      77           0 :     get(m_pBtnAdd, "add");
      78           0 :     get(m_pBtnDelete, "delete");
      79           0 :     get(m_pBtnOk, "ok");
      80           0 :     get(m_pBtnCancel, "cancel");
      81           0 :     get(m_pFtInfo, "info");
      82           0 :     maStrInfoDefault = m_pFtInfo->GetText();
      83           0 :     m_pFtInfo->SetText(OUString());
      84             : 
      85           0 :     if (!pRangeMap)
      86             :     {
      87           0 :         std::map<OUString, ScRangeName*> aRangeMap;
      88           0 :         mpDoc->GetRangeNameMap(aRangeMap);
      89           0 :         std::map<OUString, ScRangeName*>::iterator itr = aRangeMap.begin(), itrEnd = aRangeMap.end();
      90           0 :         for (; itr != itrEnd; ++itr)
      91             :         {
      92           0 :             OUString aTemp(itr->first);
      93           0 :             maRangeMap.insert(aTemp, new ScRangeName(*itr->second));
      94           0 :         }
      95             :     }
      96             :     else
      97             :     {
      98           0 :         maRangeMap.swap(*pRangeMap);
      99             :     }
     100           0 :     Init();
     101           0 : }
     102             : 
     103           0 : ScNameDlg::~ScNameDlg()
     104             : {
     105           0 :     disposeOnce();
     106           0 : }
     107             : 
     108           0 : void ScNameDlg::dispose()
     109             : {
     110           0 :     m_pRangeManagerTable.disposeAndClear();
     111           0 :     m_pEdName.clear();
     112           0 :     m_pEdAssign.clear();
     113           0 :     m_pRbAssign.clear();
     114           0 :     m_pLbScope.clear();
     115           0 :     m_pBtnPrintArea.clear();
     116           0 :     m_pBtnColHeader.clear();
     117           0 :     m_pBtnCriteria.clear();
     118           0 :     m_pBtnRowHeader.clear();
     119           0 :     m_pBtnAdd.clear();
     120           0 :     m_pBtnDelete.clear();
     121           0 :     m_pBtnOk.clear();
     122           0 :     m_pBtnCancel.clear();
     123           0 :     m_pFtInfo.clear();
     124           0 :     ScAnyRefDlg::dispose();
     125           0 : }
     126             : 
     127           0 : void ScNameDlg::Init()
     128             : {
     129           0 :     ScRange aRange;
     130             : 
     131             :     OSL_ENSURE( mpViewData && mpDoc, "ViewData oder Document nicht gefunden!" );
     132             : 
     133             :     //init UI
     134           0 :     m_pFtInfo->SetStyle(WB_VCENTER);
     135             : 
     136           0 :     SvSimpleTableContainer *pCtrl = get<SvSimpleTableContainer>("names");
     137           0 :     pCtrl->set_height_request(pCtrl->GetTextHeight()*12);
     138             : 
     139           0 :     m_pRangeManagerTable = VclPtr<ScRangeManagerTable>::Create(*pCtrl, maRangeMap, maCursorPos);
     140           0 :     m_pRangeManagerTable->setInitListener(this);
     141           0 :     m_pRangeManagerTable->SetSelectHdl( LINK( this, ScNameDlg, SelectionChangedHdl_Impl ) );
     142           0 :     m_pRangeManagerTable->SetDeselectHdl( LINK( this, ScNameDlg, SelectionChangedHdl_Impl ) );
     143             : 
     144           0 :     m_pBtnOk->SetClickHdl  ( LINK( this, ScNameDlg, OkBtnHdl ) );
     145           0 :     m_pBtnCancel->SetClickHdl  ( LINK( this, ScNameDlg, CancelBtnHdl ) );
     146           0 :     m_pBtnAdd->SetClickHdl     ( LINK( this, ScNameDlg, AddBtnHdl ) );
     147           0 :     m_pEdAssign->SetGetFocusHdl( LINK( this, ScNameDlg, AssignGetFocusHdl ) );
     148           0 :     m_pEdAssign->SetModifyHdl  ( LINK( this, ScNameDlg, EdModifyHdl ) );
     149           0 :     m_pEdName->SetModifyHdl ( LINK( this, ScNameDlg, EdModifyHdl ) );
     150           0 :     m_pLbScope->SetSelectHdl( LINK(this, ScNameDlg, ScopeChangedHdl) );
     151           0 :     m_pBtnDelete->SetClickHdl ( LINK( this, ScNameDlg, RemoveBtnHdl ) );
     152           0 :     m_pBtnPrintArea->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     153           0 :     m_pBtnCriteria->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     154           0 :     m_pBtnRowHeader->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     155           0 :     m_pBtnColHeader->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     156             : 
     157             :     // Initialize scope list.
     158           0 :     m_pLbScope->InsertEntry(maGlobalNameStr);
     159           0 :     m_pLbScope->SelectEntryPos(0);
     160           0 :     SCTAB n = mpDoc->GetTableCount();
     161           0 :     for (SCTAB i = 0; i < n; ++i)
     162             :     {
     163           0 :         OUString aTabName;
     164           0 :         mpDoc->GetName(i, aTabName);
     165           0 :         m_pLbScope->InsertEntry(aTabName);
     166           0 :     }
     167             : 
     168           0 :     CheckForEmptyTable();
     169           0 : }
     170             : 
     171           0 : bool ScNameDlg::IsRefInputMode() const
     172             : {
     173           0 :     return m_pEdAssign->IsEnabled();
     174             : }
     175             : 
     176           0 : void ScNameDlg::RefInputDone( bool bForced)
     177             : {
     178           0 :     ScAnyRefDlg::RefInputDone(bForced);
     179           0 :     EdModifyHdl(m_pEdAssign);
     180           0 : }
     181             : 
     182           0 : void ScNameDlg::SetReference( const ScRange& rRef, ScDocument* pDocP )
     183             : {
     184           0 :     if ( m_pEdAssign->IsEnabled() )
     185             :     {
     186           0 :         if ( rRef.aStart != rRef.aEnd )
     187           0 :             RefInputStart(m_pEdAssign);
     188             :         OUString aRefStr(rRef.Format(ABS_DREF3D, pDocP,
     189           0 :                 ScAddress::Details(pDocP->GetAddressConvention(), 0, 0)));
     190           0 :         m_pEdAssign->SetRefString( aRefStr );
     191             :     }
     192           0 : }
     193             : 
     194           0 : bool ScNameDlg::Close()
     195             : {
     196           0 :     if (mbDataChanged && !mbCloseWithoutUndo)
     197           0 :         mpViewData->GetDocFunc().ModifyAllRangeNames(maRangeMap);
     198           0 :     return DoClose( ScNameDlgWrapper::GetChildWindowId() );
     199             : }
     200             : 
     201           0 : void ScNameDlg::tableInitialized()
     202             : {
     203           0 :     if (m_pRangeManagerTable->GetSelectionCount())
     204           0 :         SelectionChanged();
     205           0 : }
     206             : 
     207           0 : void ScNameDlg::CheckForEmptyTable()
     208             : {
     209           0 :     if (!m_pRangeManagerTable->GetEntryCount())
     210             :     {
     211           0 :         m_pBtnDelete->Disable();
     212           0 :         m_pEdAssign->Disable();
     213           0 :         m_pRbAssign->Disable();
     214           0 :         m_pEdName->Disable();
     215           0 :         m_pLbScope->Disable();
     216             : 
     217           0 :         m_pBtnCriteria->Disable();
     218           0 :         m_pBtnPrintArea->Disable();
     219           0 :         m_pBtnColHeader->Disable();
     220           0 :         m_pBtnRowHeader->Disable();
     221             :     }
     222             :     else
     223             :     {
     224           0 :         m_pBtnDelete->Enable();
     225           0 :         m_pEdAssign->Enable();
     226           0 :         m_pRbAssign->Enable();
     227           0 :         m_pEdName->Enable();
     228           0 :         m_pLbScope->Enable();
     229             : 
     230           0 :         m_pBtnCriteria->Enable();
     231           0 :         m_pBtnPrintArea->Enable();
     232           0 :         m_pBtnColHeader->Enable();
     233           0 :         m_pBtnRowHeader->Enable();
     234             :     }
     235           0 : }
     236             : 
     237           0 : void ScNameDlg::CancelPushed()
     238             : {
     239           0 :     DoClose( ScNameDlgWrapper::GetChildWindowId() );
     240           0 : }
     241             : 
     242           0 : void ScNameDlg::SetActive()
     243             : {
     244           0 :     m_pEdAssign->GrabFocus();
     245           0 :     RefInputDone();
     246           0 : }
     247             : 
     248           0 : void ScNameDlg::UpdateChecks(ScRangeData* pData)
     249             : {
     250             :     // remove handlers, we only want the handlers to process
     251             :     // user input and not when we are syncing the controls  with our internal
     252             :     // model ( also UpdateChecks is called already from some other event
     253             :     // handlers, triggering handlers while already processing a handler can
     254             :     // ( and does in this case ) corrupt the internal data
     255             : 
     256           0 :     m_pBtnCriteria->SetToggleHdl( Link<>() );
     257           0 :     m_pBtnPrintArea->SetToggleHdl( Link<>() );
     258           0 :     m_pBtnColHeader->SetToggleHdl( Link<>() );
     259           0 :     m_pBtnRowHeader->SetToggleHdl( Link<>() );
     260             : 
     261           0 :     m_pBtnCriteria->Check( pData->HasType( RT_CRITERIA ) );
     262           0 :     m_pBtnPrintArea->Check( pData->HasType( RT_PRINTAREA ) );
     263           0 :     m_pBtnColHeader->Check( pData->HasType( RT_COLHEADER ) );
     264           0 :     m_pBtnRowHeader->Check( pData->HasType( RT_ROWHEADER ) );
     265             : 
     266             :     // Restore handlers so user input is processed again
     267           0 :     Link<> aToggleHandler = LINK( this, ScNameDlg, EdModifyHdl );
     268           0 :     m_pBtnCriteria->SetToggleHdl( aToggleHandler );
     269           0 :     m_pBtnPrintArea->SetToggleHdl( aToggleHandler );
     270           0 :     m_pBtnColHeader->SetToggleHdl( aToggleHandler );
     271           0 :     m_pBtnRowHeader->SetToggleHdl( aToggleHandler );
     272           0 : }
     273             : 
     274           0 : bool ScNameDlg::IsNameValid()
     275             : {
     276           0 :     OUString aScope = m_pLbScope->GetSelectEntry();
     277           0 :     OUString aName = m_pEdName->GetText();
     278           0 :     aName = aName.trim();
     279             : 
     280           0 :     if (aName.isEmpty())
     281           0 :         return false;
     282             : 
     283           0 :     ScRangeName* pRangeName = GetRangeName( aScope );
     284             : 
     285           0 :     if (!ScRangeData::IsNameValid( aName, mpDoc ))
     286             :     {
     287           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     288           0 :         m_pFtInfo->SetText(maErrInvalidNameStr);
     289           0 :         return false;
     290             :     }
     291           0 :     else if (pRangeName && pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(aName)))
     292             :     {
     293           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     294           0 :         m_pFtInfo->SetText(maErrNameInUse);
     295           0 :         return false;
     296             :     }
     297           0 :     m_pFtInfo->SetText( maStrInfoDefault );
     298           0 :     return true;
     299             : }
     300             : 
     301           0 : bool ScNameDlg::IsFormulaValid()
     302             : {
     303           0 :     ScCompiler aComp( mpDoc, maCursorPos);
     304           0 :     aComp.SetGrammar( mpDoc->GetGrammar() );
     305           0 :     ScTokenArray* pCode = aComp.CompileString(m_pEdAssign->GetText());
     306           0 :     if (pCode->GetCodeError())
     307             :     {
     308           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     309           0 :         delete pCode;
     310           0 :         return false;
     311             :     }
     312             :     else
     313             :     {
     314           0 :         delete pCode;
     315           0 :         return true;
     316           0 :     }
     317             : }
     318             : 
     319           0 : ScRangeName* ScNameDlg::GetRangeName(const OUString& rScope)
     320             : {
     321           0 :     if (rScope == maGlobalNameStr)
     322           0 :         return maRangeMap.find(OUString(STR_GLOBAL_RANGE_NAME))->second;
     323             :     else
     324           0 :         return maRangeMap.find(rScope)->second;
     325             : }
     326             : 
     327           0 : void ScNameDlg::ShowOptions(const ScRangeNameLine& rLine)
     328             : {
     329           0 :     ScRangeName* pRangeName = GetRangeName(rLine.aScope);
     330           0 :     ScRangeData* pData = pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(rLine.aName));
     331           0 :     if (pData)
     332             :     {
     333           0 :         UpdateChecks(pData);
     334             :     }
     335           0 : }
     336             : 
     337           0 : bool ScNameDlg::AddPushed()
     338             : {
     339           0 :     mbCloseWithoutUndo = true;
     340           0 :     ScTabViewShell* pViewSh = ScTabViewShell::GetActiveViewShell();
     341           0 :     pViewSh->SwitchBetweenRefDialogs(this);
     342           0 :     return false;
     343             : }
     344             : 
     345           0 : void ScNameDlg::SetEntry(const OUString& rName, const OUString& rScope)
     346             : {
     347           0 :     if (!rName.isEmpty())
     348             :     {
     349           0 :         mbDataChanged = true;
     350           0 :         ScRangeNameLine aLine;
     351           0 :         aLine.aName = rName;
     352           0 :         aLine.aScope = rScope;
     353           0 :         m_pRangeManagerTable->SetEntry(aLine);
     354             :     }
     355           0 : }
     356             : 
     357           0 : void ScNameDlg::RemovePushed()
     358             : {
     359           0 :     std::vector<ScRangeNameLine> maEntries = m_pRangeManagerTable->GetSelectedEntries();
     360           0 :     m_pRangeManagerTable->DeleteSelectedEntries();
     361           0 :     for (std::vector<ScRangeNameLine>::iterator itr = maEntries.begin(); itr != maEntries.end(); ++itr)
     362             :     {
     363           0 :         ScRangeName* pRangeName = GetRangeName(itr->aScope);
     364           0 :         ScRangeData* pData = pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(itr->aName));
     365             :         OSL_ENSURE(pData, "table and model should be in sync");
     366             :         // be safe and check for possible problems
     367           0 :         if (pData)
     368           0 :             pRangeName->erase(*pData);
     369             : 
     370           0 :         mbDataChanged = true;
     371             :     }
     372           0 :     CheckForEmptyTable();
     373           0 : }
     374             : 
     375           0 : void ScNameDlg::NameModified()
     376             : {
     377           0 :     ScRangeNameLine aLine;
     378           0 :     m_pRangeManagerTable->GetCurrentLine(aLine);
     379           0 :     OUString aOldName = aLine.aName;
     380           0 :     OUString aNewName = m_pEdName->GetText();
     381           0 :     aNewName = aNewName.trim();
     382           0 :     m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetDialogColor());
     383           0 :     if (aNewName != aOldName)
     384             :     {
     385           0 :         if (!IsNameValid())
     386           0 :             return;
     387             :     }
     388             :     else
     389             :     {
     390           0 :         m_pFtInfo->SetText( maStrInfoDefault );
     391             :     }
     392             : 
     393           0 :     if (!IsFormulaValid())
     394             :     {
     395             :         //TODO: implement an info text
     396           0 :         return;
     397             :     }
     398             : 
     399           0 :     OUString aOldScope = aLine.aScope;
     400             :     //empty table
     401           0 :     if (aOldScope.isEmpty())
     402           0 :         return;
     403           0 :     OUString aExpr = m_pEdAssign->GetText();
     404           0 :     OUString aNewScope = m_pLbScope->GetSelectEntry();
     405             : 
     406           0 :     ScRangeName* pOldRangeName = GetRangeName( aOldScope );
     407           0 :     ScRangeData* pData = pOldRangeName->findByUpperName( ScGlobal::pCharClass->uppercase(aOldName) );
     408           0 :     ScRangeName* pNewRangeName = GetRangeName( aNewScope );
     409             :     OSL_ENSURE(pData, "model and table should be in sync");
     410             :     // be safe and check for range data
     411           0 :     if (pData)
     412             :     {
     413           0 :         pOldRangeName->erase(*pData);
     414           0 :         mbNeedUpdate = false;
     415           0 :         m_pRangeManagerTable->DeleteSelectedEntries();
     416             :         RangeType nType = RT_NAME |
     417           0 :             (m_pBtnRowHeader->IsChecked() ? RT_ROWHEADER : RangeType(0))
     418           0 :             |(m_pBtnColHeader->IsChecked() ? RT_COLHEADER : RangeType(0))
     419           0 :             |(m_pBtnPrintArea->IsChecked() ? RT_PRINTAREA : RangeType(0))
     420           0 :             |(m_pBtnCriteria->IsChecked()  ? RT_CRITERIA  : RangeType(0));
     421             : 
     422             :         ScRangeData* pNewEntry = new ScRangeData( mpDoc, aNewName, aExpr,
     423           0 :                 maCursorPos, nType);
     424           0 :         pNewRangeName->insert(pNewEntry);
     425           0 :         aLine.aName = aNewName;
     426           0 :         aLine.aExpression = aExpr;
     427           0 :         aLine.aScope = aNewScope;
     428           0 :         m_pRangeManagerTable->addEntry(aLine);
     429           0 :         mbNeedUpdate = true;
     430           0 :         mbDataChanged = true;
     431           0 :     }
     432             : }
     433             : 
     434           0 : void ScNameDlg::SelectionChanged()
     435             : {
     436             :     //don't update if we have just modified due to user input
     437           0 :     if (!mbNeedUpdate)
     438             :     {
     439           0 :         return;
     440             :     }
     441             : 
     442           0 :     if (m_pRangeManagerTable->IsMultiSelection())
     443             :     {
     444           0 :         m_pEdName->SetText(maStrMultiSelect);
     445           0 :         m_pEdAssign->SetText(maStrMultiSelect);
     446             : 
     447           0 :         m_pEdName->Disable();
     448           0 :         m_pEdAssign->Disable();
     449           0 :         m_pRbAssign->Disable();
     450           0 :         m_pLbScope->Disable();
     451           0 :         m_pBtnRowHeader->Disable();
     452           0 :         m_pBtnColHeader->Disable();
     453           0 :         m_pBtnPrintArea->Disable();
     454           0 :         m_pBtnCriteria->Disable();
     455             :     }
     456             :     else
     457             :     {
     458           0 :         ScRangeNameLine aLine;
     459           0 :         m_pRangeManagerTable->GetCurrentLine(aLine);
     460           0 :         m_pEdAssign->SetText(aLine.aExpression);
     461           0 :         m_pEdName->SetText(aLine.aName);
     462           0 :         m_pLbScope->SelectEntry(aLine.aScope);
     463           0 :         ShowOptions(aLine);
     464           0 :         m_pBtnDelete->Enable();
     465           0 :         m_pEdName->Enable();
     466           0 :         m_pEdAssign->Enable();
     467           0 :         m_pRbAssign->Enable();
     468           0 :         m_pLbScope->Enable();
     469           0 :         m_pBtnRowHeader->Enable();
     470           0 :         m_pBtnColHeader->Enable();
     471           0 :         m_pBtnPrintArea->Enable();
     472           0 :         m_pBtnCriteria->Enable();
     473             :     }
     474             : }
     475             : 
     476           0 : void ScNameDlg::ScopeChanged()
     477             : {
     478           0 :     NameModified();
     479           0 : }
     480             : 
     481           0 : void ScNameDlg::GetRangeNames(boost::ptr_map<OUString, ScRangeName>& rRangeMap)
     482             : {
     483           0 :     maRangeMap.swap(rRangeMap);
     484           0 : }
     485             : 
     486           0 : IMPL_LINK_NOARG(ScNameDlg, OkBtnHdl)
     487             : {
     488           0 :     Close();
     489           0 :     return 0;
     490             : }
     491             : 
     492           0 : IMPL_LINK_NOARG(ScNameDlg, CancelBtnHdl)
     493             : {
     494           0 :     CancelPushed();
     495           0 :     return 0;
     496             : }
     497             : 
     498           0 : IMPL_LINK_NOARG(ScNameDlg, AddBtnHdl)
     499             : {
     500           0 :     return long(AddPushed());
     501             : }
     502             : 
     503           0 : IMPL_LINK_NOARG(ScNameDlg, RemoveBtnHdl)
     504             : {
     505           0 :     RemovePushed();
     506           0 :     return 0;
     507             : }
     508             : 
     509           0 : IMPL_LINK_NOARG(ScNameDlg, EdModifyHdl)
     510             : {
     511           0 :     NameModified();
     512           0 :     return 0;
     513             : }
     514             : 
     515           0 : IMPL_LINK_NOARG(ScNameDlg, AssignGetFocusHdl)
     516             : {
     517           0 :     EdModifyHdl(m_pEdAssign);
     518           0 :     return 0;
     519             : }
     520             : 
     521           0 : IMPL_LINK_NOARG(ScNameDlg, SelectionChangedHdl_Impl)
     522             : {
     523           0 :     SelectionChanged();
     524           0 :     return 0;
     525             : }
     526             : 
     527           0 : IMPL_LINK_NOARG(ScNameDlg, ScopeChangedHdl)
     528             : {
     529           0 :     ScopeChanged();
     530           0 :     return 0;
     531         156 : }
     532             : 
     533             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11