LCOV - code coverage report
Current view: top level - sc/source/ui/namedlg - namedlg.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 292 0.3 %
Date: 2014-11-03 Functions: 2 42 4.8 %
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 :     delete m_pRangeManagerTable;
     106           0 : }
     107             : 
     108           0 : void ScNameDlg::Init()
     109             : {
     110           0 :     ScRange aRange;
     111             : 
     112             :     OSL_ENSURE( mpViewData && mpDoc, "ViewData oder Document nicht gefunden!" );
     113             : 
     114             :     //init UI
     115           0 :     m_pFtInfo->SetStyle(WB_VCENTER);
     116             : 
     117           0 :     SvSimpleTableContainer *pCtrl = get<SvSimpleTableContainer>("names");
     118           0 :     pCtrl->set_height_request(pCtrl->GetTextHeight()*12);
     119             : 
     120           0 :     m_pRangeManagerTable = new ScRangeManagerTable(*pCtrl, maRangeMap, maCursorPos);
     121           0 :     m_pRangeManagerTable->setInitListener(this);
     122           0 :     m_pRangeManagerTable->SetSelectHdl( LINK( this, ScNameDlg, SelectionChangedHdl_Impl ) );
     123           0 :     m_pRangeManagerTable->SetDeselectHdl( LINK( this, ScNameDlg, SelectionChangedHdl_Impl ) );
     124             : 
     125           0 :     m_pBtnOk->SetClickHdl  ( LINK( this, ScNameDlg, OkBtnHdl ) );
     126           0 :     m_pBtnCancel->SetClickHdl  ( LINK( this, ScNameDlg, CancelBtnHdl ) );
     127           0 :     m_pBtnAdd->SetClickHdl     ( LINK( this, ScNameDlg, AddBtnHdl ) );
     128           0 :     m_pEdAssign->SetGetFocusHdl( LINK( this, ScNameDlg, AssignGetFocusHdl ) );
     129           0 :     m_pEdAssign->SetModifyHdl  ( LINK( this, ScNameDlg, EdModifyHdl ) );
     130           0 :     m_pEdName->SetModifyHdl ( LINK( this, ScNameDlg, EdModifyHdl ) );
     131           0 :     m_pLbScope->SetSelectHdl( LINK(this, ScNameDlg, ScopeChangedHdl) );
     132           0 :     m_pBtnDelete->SetClickHdl ( LINK( this, ScNameDlg, RemoveBtnHdl ) );
     133           0 :     m_pBtnPrintArea->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     134           0 :     m_pBtnCriteria->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     135           0 :     m_pBtnRowHeader->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     136           0 :     m_pBtnColHeader->SetToggleHdl( LINK(this, ScNameDlg, EdModifyHdl ) );
     137             : 
     138             :     // Initialize scope list.
     139           0 :     m_pLbScope->InsertEntry(maGlobalNameStr);
     140           0 :     m_pLbScope->SelectEntryPos(0);
     141           0 :     SCTAB n = mpDoc->GetTableCount();
     142           0 :     for (SCTAB i = 0; i < n; ++i)
     143             :     {
     144           0 :         OUString aTabName;
     145           0 :         mpDoc->GetName(i, aTabName);
     146           0 :         m_pLbScope->InsertEntry(aTabName);
     147           0 :     }
     148             : 
     149           0 :     CheckForEmptyTable();
     150           0 : }
     151             : 
     152           0 : bool ScNameDlg::IsRefInputMode() const
     153             : {
     154           0 :     return m_pEdAssign->IsEnabled();
     155             : }
     156             : 
     157           0 : void ScNameDlg::RefInputDone( bool bForced)
     158             : {
     159           0 :     ScAnyRefDlg::RefInputDone(bForced);
     160           0 :     EdModifyHdl(m_pEdAssign);
     161           0 : }
     162             : 
     163           0 : void ScNameDlg::SetReference( const ScRange& rRef, ScDocument* pDocP )
     164             : {
     165           0 :     if ( m_pEdAssign->IsEnabled() )
     166             :     {
     167           0 :         if ( rRef.aStart != rRef.aEnd )
     168           0 :             RefInputStart(m_pEdAssign);
     169             :         OUString aRefStr(rRef.Format(ABS_DREF3D, pDocP,
     170           0 :                 ScAddress::Details(pDocP->GetAddressConvention(), 0, 0)));
     171           0 :         m_pEdAssign->SetRefString( aRefStr );
     172             :     }
     173           0 : }
     174             : 
     175           0 : bool ScNameDlg::Close()
     176             : {
     177           0 :     if (mbDataChanged && !mbCloseWithoutUndo)
     178           0 :         mpViewData->GetDocFunc().ModifyAllRangeNames(maRangeMap);
     179           0 :     return DoClose( ScNameDlgWrapper::GetChildWindowId() );
     180             : }
     181             : 
     182           0 : void ScNameDlg::tableInitialized()
     183             : {
     184           0 :     if (m_pRangeManagerTable->GetSelectionCount())
     185           0 :         SelectionChanged();
     186           0 : }
     187             : 
     188           0 : void ScNameDlg::CheckForEmptyTable()
     189             : {
     190           0 :     if (!m_pRangeManagerTable->GetEntryCount())
     191             :     {
     192           0 :         m_pBtnDelete->Disable();
     193           0 :         m_pEdAssign->Disable();
     194           0 :         m_pRbAssign->Disable();
     195           0 :         m_pEdName->Disable();
     196           0 :         m_pLbScope->Disable();
     197             : 
     198           0 :         m_pBtnCriteria->Disable();
     199           0 :         m_pBtnPrintArea->Disable();
     200           0 :         m_pBtnColHeader->Disable();
     201           0 :         m_pBtnRowHeader->Disable();
     202             :     }
     203             :     else
     204             :     {
     205           0 :         m_pBtnDelete->Enable();
     206           0 :         m_pEdAssign->Enable();
     207           0 :         m_pRbAssign->Enable();
     208           0 :         m_pEdName->Enable();
     209           0 :         m_pLbScope->Enable();
     210             : 
     211           0 :         m_pBtnCriteria->Enable();
     212           0 :         m_pBtnPrintArea->Enable();
     213           0 :         m_pBtnColHeader->Enable();
     214           0 :         m_pBtnRowHeader->Enable();
     215             :     }
     216           0 : }
     217             : 
     218           0 : void ScNameDlg::CancelPushed()
     219             : {
     220           0 :     DoClose( ScNameDlgWrapper::GetChildWindowId() );
     221           0 : }
     222             : 
     223           0 : void ScNameDlg::SetActive()
     224             : {
     225           0 :     m_pEdAssign->GrabFocus();
     226           0 :     RefInputDone();
     227           0 : }
     228             : 
     229           0 : void ScNameDlg::UpdateChecks(ScRangeData* pData)
     230             : {
     231             :     // remove handlers, we only want the handlers to process
     232             :     // user input and not when we are syncing the controls  with our internal
     233             :     // model ( also UpdateChecks is called already from some other event
     234             :     // handlers, triggering handlers while already processing a handler can
     235             :     // ( and does in this case ) corrupt the internal data
     236             : 
     237           0 :     m_pBtnCriteria->SetToggleHdl( Link() );
     238           0 :     m_pBtnPrintArea->SetToggleHdl( Link() );
     239           0 :     m_pBtnColHeader->SetToggleHdl( Link() );
     240           0 :     m_pBtnRowHeader->SetToggleHdl( Link() );
     241             : 
     242           0 :     m_pBtnCriteria->Check( pData->HasType( RT_CRITERIA ) );
     243           0 :     m_pBtnPrintArea->Check( pData->HasType( RT_PRINTAREA ) );
     244           0 :     m_pBtnColHeader->Check( pData->HasType( RT_COLHEADER ) );
     245           0 :     m_pBtnRowHeader->Check( pData->HasType( RT_ROWHEADER ) );
     246             : 
     247             :     // Restore handlers so user input is processed again
     248           0 :     Link aToggleHandler = LINK( this, ScNameDlg, EdModifyHdl );
     249           0 :     m_pBtnCriteria->SetToggleHdl( aToggleHandler );
     250           0 :     m_pBtnPrintArea->SetToggleHdl( aToggleHandler );
     251           0 :     m_pBtnColHeader->SetToggleHdl( aToggleHandler );
     252           0 :     m_pBtnRowHeader->SetToggleHdl( aToggleHandler );
     253           0 : }
     254             : 
     255           0 : bool ScNameDlg::IsNameValid()
     256             : {
     257           0 :     OUString aScope = m_pLbScope->GetSelectEntry();
     258           0 :     OUString aName = m_pEdName->GetText();
     259           0 :     aName = aName.trim();
     260             : 
     261           0 :     if (aName.isEmpty())
     262           0 :         return false;
     263             : 
     264           0 :     ScRangeName* pRangeName = GetRangeName( aScope );
     265             : 
     266           0 :     if (!ScRangeData::IsNameValid( aName, mpDoc ))
     267             :     {
     268           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     269           0 :         m_pFtInfo->SetText(maErrInvalidNameStr);
     270           0 :         return false;
     271             :     }
     272           0 :     else if (pRangeName && pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(aName)))
     273             :     {
     274           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     275           0 :         m_pFtInfo->SetText(maErrNameInUse);
     276           0 :         return false;
     277             :     }
     278           0 :     m_pFtInfo->SetText( maStrInfoDefault );
     279           0 :     return true;
     280             : }
     281             : 
     282           0 : bool ScNameDlg::IsFormulaValid()
     283             : {
     284           0 :     ScCompiler aComp( mpDoc, maCursorPos);
     285           0 :     aComp.SetGrammar( mpDoc->GetGrammar() );
     286           0 :     ScTokenArray* pCode = aComp.CompileString(m_pEdAssign->GetText());
     287           0 :     if (pCode->GetCodeError())
     288             :     {
     289           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     290           0 :         delete pCode;
     291           0 :         return false;
     292             :     }
     293             :     else
     294             :     {
     295           0 :         delete pCode;
     296           0 :         return true;
     297           0 :     }
     298             : }
     299             : 
     300           0 : ScRangeName* ScNameDlg::GetRangeName(const OUString& rScope)
     301             : {
     302           0 :     if (rScope == maGlobalNameStr)
     303           0 :         return maRangeMap.find(OUString(STR_GLOBAL_RANGE_NAME))->second;
     304             :     else
     305           0 :         return maRangeMap.find(rScope)->second;
     306             : }
     307             : 
     308           0 : void ScNameDlg::ShowOptions(const ScRangeNameLine& rLine)
     309             : {
     310           0 :     ScRangeName* pRangeName = GetRangeName(rLine.aScope);
     311           0 :     ScRangeData* pData = pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(rLine.aName));
     312           0 :     if (pData)
     313             :     {
     314           0 :         UpdateChecks(pData);
     315             :     }
     316           0 : }
     317             : 
     318           0 : bool ScNameDlg::AddPushed()
     319             : {
     320           0 :     mbCloseWithoutUndo = true;
     321           0 :     ScTabViewShell* pViewSh = ScTabViewShell::GetActiveViewShell();
     322           0 :     pViewSh->SwitchBetweenRefDialogs(this);
     323           0 :     return false;
     324             : }
     325             : 
     326           0 : void ScNameDlg::SetEntry(const OUString& rName, const OUString& rScope)
     327             : {
     328           0 :     if (!rName.isEmpty())
     329             :     {
     330           0 :         mbDataChanged = true;
     331           0 :         ScRangeNameLine aLine;
     332           0 :         aLine.aName = rName;
     333           0 :         aLine.aScope = rScope;
     334           0 :         m_pRangeManagerTable->SetEntry(aLine);
     335             :     }
     336           0 : }
     337             : 
     338           0 : void ScNameDlg::RemovePushed()
     339             : {
     340           0 :     std::vector<ScRangeNameLine> maEntries = m_pRangeManagerTable->GetSelectedEntries();
     341           0 :     m_pRangeManagerTable->DeleteSelectedEntries();
     342           0 :     for (std::vector<ScRangeNameLine>::iterator itr = maEntries.begin(); itr != maEntries.end(); ++itr)
     343             :     {
     344           0 :         ScRangeName* pRangeName = GetRangeName(itr->aScope);
     345           0 :         ScRangeData* pData = pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(itr->aName));
     346             :         OSL_ENSURE(pData, "table and model should be in sync");
     347             :         // be safe and check for possible problems
     348           0 :         if (pData)
     349           0 :             pRangeName->erase(*pData);
     350             : 
     351           0 :         mbDataChanged = true;
     352             :     }
     353           0 :     CheckForEmptyTable();
     354           0 : }
     355             : 
     356           0 : void ScNameDlg::NameModified()
     357             : {
     358           0 :     ScRangeNameLine aLine;
     359           0 :     m_pRangeManagerTable->GetCurrentLine(aLine);
     360           0 :     OUString aOldName = aLine.aName;
     361           0 :     OUString aNewName = m_pEdName->GetText();
     362           0 :     aNewName = aNewName.trim();
     363           0 :     m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetDialogColor());
     364           0 :     if (aNewName != aOldName)
     365             :     {
     366           0 :         if (!IsNameValid())
     367           0 :             return;
     368             :     }
     369             :     else
     370             :     {
     371           0 :         m_pFtInfo->SetText( maStrInfoDefault );
     372             :     }
     373             : 
     374           0 :     if (!IsFormulaValid())
     375             :     {
     376             :         //TODO: implement an info text
     377           0 :         return;
     378             :     }
     379             : 
     380           0 :     OUString aOldScope = aLine.aScope;
     381             :     //empty table
     382           0 :     if (aOldScope.isEmpty())
     383           0 :         return;
     384           0 :     OUString aExpr = m_pEdAssign->GetText();
     385           0 :     OUString aNewScope = m_pLbScope->GetSelectEntry();
     386             : 
     387           0 :     ScRangeName* pOldRangeName = GetRangeName( aOldScope );
     388           0 :     ScRangeData* pData = pOldRangeName->findByUpperName( ScGlobal::pCharClass->uppercase(aOldName) );
     389           0 :     ScRangeName* pNewRangeName = GetRangeName( aNewScope );
     390             :     OSL_ENSURE(pData, "model and table should be in sync");
     391             :     // be safe and check for range data
     392           0 :     if (pData)
     393             :     {
     394           0 :         pOldRangeName->erase(*pData);
     395           0 :         mbNeedUpdate = false;
     396           0 :         m_pRangeManagerTable->DeleteSelectedEntries();
     397             :         RangeType nType = RT_NAME |
     398           0 :             (m_pBtnRowHeader->IsChecked() ? RT_ROWHEADER : RangeType(0))
     399           0 :             |(m_pBtnColHeader->IsChecked() ? RT_COLHEADER : RangeType(0))
     400           0 :             |(m_pBtnPrintArea->IsChecked() ? RT_PRINTAREA : RangeType(0))
     401           0 :             |(m_pBtnCriteria->IsChecked()  ? RT_CRITERIA  : RangeType(0));
     402             : 
     403             :         ScRangeData* pNewEntry = new ScRangeData( mpDoc, aNewName, aExpr,
     404           0 :                 maCursorPos, nType);
     405           0 :         pNewRangeName->insert(pNewEntry);
     406           0 :         aLine.aName = aNewName;
     407           0 :         aLine.aExpression = aExpr;
     408           0 :         aLine.aScope = aNewScope;
     409           0 :         m_pRangeManagerTable->addEntry(aLine);
     410           0 :         mbNeedUpdate = true;
     411           0 :         mbDataChanged = true;
     412           0 :     }
     413             : }
     414             : 
     415           0 : void ScNameDlg::SelectionChanged()
     416             : {
     417             :     //don't update if we have just modified due to user input
     418           0 :     if (!mbNeedUpdate)
     419             :     {
     420           0 :         return;
     421             :     }
     422             : 
     423           0 :     if (m_pRangeManagerTable->IsMultiSelection())
     424             :     {
     425           0 :         m_pEdName->SetText(maStrMultiSelect);
     426           0 :         m_pEdAssign->SetText(maStrMultiSelect);
     427             : 
     428           0 :         m_pEdName->Disable();
     429           0 :         m_pEdAssign->Disable();
     430           0 :         m_pRbAssign->Disable();
     431           0 :         m_pLbScope->Disable();
     432           0 :         m_pBtnRowHeader->Disable();
     433           0 :         m_pBtnColHeader->Disable();
     434           0 :         m_pBtnPrintArea->Disable();
     435           0 :         m_pBtnCriteria->Disable();
     436             :     }
     437             :     else
     438             :     {
     439           0 :         ScRangeNameLine aLine;
     440           0 :         m_pRangeManagerTable->GetCurrentLine(aLine);
     441           0 :         m_pEdAssign->SetText(aLine.aExpression);
     442           0 :         m_pEdName->SetText(aLine.aName);
     443           0 :         m_pLbScope->SelectEntry(aLine.aScope);
     444           0 :         ShowOptions(aLine);
     445           0 :         m_pBtnDelete->Enable();
     446           0 :         m_pEdName->Enable();
     447           0 :         m_pEdAssign->Enable();
     448           0 :         m_pRbAssign->Enable();
     449           0 :         m_pLbScope->Enable();
     450           0 :         m_pBtnRowHeader->Enable();
     451           0 :         m_pBtnColHeader->Enable();
     452           0 :         m_pBtnPrintArea->Enable();
     453           0 :         m_pBtnCriteria->Enable();
     454             :     }
     455             : }
     456             : 
     457           0 : void ScNameDlg::ScopeChanged()
     458             : {
     459           0 :     NameModified();
     460           0 : }
     461             : 
     462           0 : void ScNameDlg::GetRangeNames(boost::ptr_map<OUString, ScRangeName>& rRangeMap)
     463             : {
     464           0 :     maRangeMap.swap(rRangeMap);
     465           0 : }
     466             : 
     467           0 : IMPL_LINK_NOARG(ScNameDlg, OkBtnHdl)
     468             : {
     469           0 :     Close();
     470           0 :     return 0;
     471             : }
     472             : 
     473           0 : IMPL_LINK_NOARG(ScNameDlg, CancelBtnHdl)
     474             : {
     475           0 :     CancelPushed();
     476           0 :     return 0;
     477             : }
     478             : 
     479           0 : IMPL_LINK_NOARG(ScNameDlg, AddBtnHdl)
     480             : {
     481           0 :     return long(AddPushed());
     482             : }
     483             : 
     484           0 : IMPL_LINK_NOARG(ScNameDlg, RemoveBtnHdl)
     485             : {
     486           0 :     RemovePushed();
     487           0 :     return 0;
     488             : }
     489             : 
     490           0 : IMPL_LINK_NOARG(ScNameDlg, EdModifyHdl)
     491             : {
     492           0 :     NameModified();
     493           0 :     return 0;
     494             : }
     495             : 
     496           0 : IMPL_LINK_NOARG(ScNameDlg, AssignGetFocusHdl)
     497             : {
     498           0 :     EdModifyHdl(m_pEdAssign);
     499           0 :     return 0;
     500             : }
     501             : 
     502           0 : IMPL_LINK_NOARG(ScNameDlg, SelectionChangedHdl_Impl)
     503             : {
     504           0 :     SelectionChanged();
     505           0 :     return 0;
     506             : }
     507             : 
     508           0 : IMPL_LINK_NOARG(ScNameDlg, ScopeChangedHdl)
     509             : {
     510           0 :     ScopeChanged();
     511           0 :     return 0;
     512         228 : }
     513             : 
     514             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10