LCOV - code coverage report
Current view: top level - sc/source/ui/namedlg - namedlg.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 292 0.0 %
Date: 2014-04-14 Functions: 0 42 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 "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, 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             : 
     212           0 :         m_pBtnCriteria->Enable();
     213           0 :         m_pBtnPrintArea->Enable();
     214           0 :         m_pBtnColHeader->Enable();
     215           0 :         m_pBtnRowHeader->Enable();
     216             :     }
     217           0 : }
     218             : 
     219           0 : void ScNameDlg::CancelPushed()
     220             : {
     221           0 :     DoClose( ScNameDlgWrapper::GetChildWindowId() );
     222           0 : }
     223             : 
     224           0 : void ScNameDlg::SetActive()
     225             : {
     226           0 :     m_pEdAssign->GrabFocus();
     227           0 :     RefInputDone();
     228           0 : }
     229             : 
     230           0 : void ScNameDlg::UpdateChecks(ScRangeData* pData)
     231             : {
     232             :     // remove handlers, we only want the handlers to process
     233             :     // user input and not when we are syncing the controls  with our internal
     234             :     // model ( also UpdateChecks is called already from some other event
     235             :     // handlers, triggering handlers while already processing a handler can
     236             :     // ( and does in this case ) corrupt the internal data
     237             : 
     238           0 :     m_pBtnCriteria->SetToggleHdl( Link() );
     239           0 :     m_pBtnPrintArea->SetToggleHdl( Link() );
     240           0 :     m_pBtnColHeader->SetToggleHdl( Link() );
     241           0 :     m_pBtnRowHeader->SetToggleHdl( Link() );
     242             : 
     243           0 :     m_pBtnCriteria->Check( pData->HasType( RT_CRITERIA ) );
     244           0 :     m_pBtnPrintArea->Check( pData->HasType( RT_PRINTAREA ) );
     245           0 :     m_pBtnColHeader->Check( pData->HasType( RT_COLHEADER ) );
     246           0 :     m_pBtnRowHeader->Check( pData->HasType( RT_ROWHEADER ) );
     247             : 
     248             :     // Restore handlers so user input is processed again
     249           0 :     Link aToggleHandler = LINK( this, ScNameDlg, EdModifyHdl );
     250           0 :     m_pBtnCriteria->SetToggleHdl( aToggleHandler );
     251           0 :     m_pBtnPrintArea->SetToggleHdl( aToggleHandler );
     252           0 :     m_pBtnColHeader->SetToggleHdl( aToggleHandler );
     253           0 :     m_pBtnRowHeader->SetToggleHdl( aToggleHandler );
     254           0 : }
     255             : 
     256           0 : bool ScNameDlg::IsNameValid()
     257             : {
     258           0 :     OUString aScope = m_pLbScope->GetSelectEntry();
     259           0 :     OUString aName = m_pEdName->GetText();
     260           0 :     aName = aName.trim();
     261             : 
     262           0 :     if (aName.isEmpty())
     263           0 :         return false;
     264             : 
     265           0 :     ScRangeName* pRangeName = GetRangeName( aScope );
     266             : 
     267           0 :     if (!ScRangeData::IsNameValid( aName, mpDoc ))
     268             :     {
     269           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     270           0 :         m_pFtInfo->SetText(maErrInvalidNameStr);
     271           0 :         return false;
     272             :     }
     273           0 :     else if (pRangeName && pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(aName)))
     274             :     {
     275           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     276           0 :         m_pFtInfo->SetText(maErrNameInUse);
     277           0 :         return false;
     278             :     }
     279           0 :     m_pFtInfo->SetText( maStrInfoDefault );
     280           0 :     return true;
     281             : }
     282             : 
     283           0 : bool ScNameDlg::IsFormulaValid()
     284             : {
     285           0 :     ScCompiler aComp( mpDoc, maCursorPos);
     286           0 :     aComp.SetGrammar( mpDoc->GetGrammar() );
     287           0 :     ScTokenArray* pCode = aComp.CompileString(m_pEdAssign->GetText());
     288           0 :     if (pCode->GetCodeError())
     289             :     {
     290           0 :         m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetHighlightColor());
     291           0 :         delete pCode;
     292           0 :         return false;
     293             :     }
     294             :     else
     295             :     {
     296           0 :         delete pCode;
     297           0 :         return true;
     298           0 :     }
     299             : }
     300             : 
     301           0 : ScRangeName* ScNameDlg::GetRangeName(const OUString& rScope)
     302             : {
     303           0 :     if (rScope == maGlobalNameStr)
     304           0 :         return maRangeMap.find(OUString(STR_GLOBAL_RANGE_NAME))->second;
     305             :     else
     306           0 :         return maRangeMap.find(rScope)->second;
     307             : }
     308             : 
     309           0 : void ScNameDlg::ShowOptions(const ScRangeNameLine& rLine)
     310             : {
     311           0 :     ScRangeName* pRangeName = GetRangeName(rLine.aScope);
     312           0 :     ScRangeData* pData = pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(rLine.aName));
     313           0 :     if (pData)
     314             :     {
     315           0 :         UpdateChecks(pData);
     316             :     }
     317           0 : }
     318             : 
     319             : 
     320           0 : bool ScNameDlg::AddPushed()
     321             : {
     322           0 :     mbCloseWithoutUndo = true;
     323           0 :     ScTabViewShell* pViewSh = ScTabViewShell::GetActiveViewShell();
     324           0 :     pViewSh->SwitchBetweenRefDialogs(this);
     325           0 :     return false;
     326             : }
     327             : 
     328           0 : void ScNameDlg::SetEntry(const OUString& rName, const OUString& rScope)
     329             : {
     330           0 :     if (!rName.isEmpty())
     331             :     {
     332           0 :         mbDataChanged = true;
     333           0 :         ScRangeNameLine aLine;
     334           0 :         aLine.aName = rName;
     335           0 :         aLine.aScope = rScope;
     336           0 :         m_pRangeManagerTable->SetEntry(aLine);
     337             :     }
     338           0 : }
     339             : 
     340           0 : void ScNameDlg::RemovePushed()
     341             : {
     342           0 :     std::vector<ScRangeNameLine> maEntries = m_pRangeManagerTable->GetSelectedEntries();
     343           0 :     m_pRangeManagerTable->DeleteSelectedEntries();
     344           0 :     for (std::vector<ScRangeNameLine>::iterator itr = maEntries.begin(); itr != maEntries.end(); ++itr)
     345             :     {
     346           0 :         ScRangeName* pRangeName = GetRangeName(itr->aScope);
     347           0 :         ScRangeData* pData = pRangeName->findByUpperName(ScGlobal::pCharClass->uppercase(itr->aName));
     348             :         OSL_ENSURE(pData, "table and model should be in sync");
     349             :         // be safe and check for possible problems
     350           0 :         if (pData)
     351           0 :             pRangeName->erase(*pData);
     352             : 
     353           0 :         mbDataChanged = true;
     354             :     }
     355           0 :     CheckForEmptyTable();
     356           0 : }
     357             : 
     358           0 : void ScNameDlg::NameModified()
     359             : {
     360           0 :     ScRangeNameLine aLine;
     361           0 :     m_pRangeManagerTable->GetCurrentLine(aLine);
     362           0 :     OUString aOldName = aLine.aName;
     363           0 :     OUString aNewName = m_pEdName->GetText();
     364           0 :     aNewName = aNewName.trim();
     365           0 :     m_pFtInfo->SetControlBackground(GetSettings().GetStyleSettings().GetDialogColor());
     366           0 :     if (aNewName != aOldName)
     367             :     {
     368           0 :         if (!IsNameValid())
     369           0 :             return;
     370             :     }
     371             :     else
     372             :     {
     373           0 :         m_pFtInfo->SetText( maStrInfoDefault );
     374             :     }
     375             : 
     376           0 :     if (!IsFormulaValid())
     377             :     {
     378             :         //TODO: implement an info text
     379           0 :         return;
     380             :     }
     381             : 
     382           0 :     OUString aOldScope = aLine.aScope;
     383             :     //empty table
     384           0 :     if (aOldScope.isEmpty())
     385           0 :         return;
     386           0 :     OUString aExpr = m_pEdAssign->GetText();
     387           0 :     OUString aNewScope = m_pLbScope->GetSelectEntry();
     388             : 
     389           0 :     ScRangeName* pOldRangeName = GetRangeName( aOldScope );
     390           0 :     ScRangeData* pData = pOldRangeName->findByUpperName( ScGlobal::pCharClass->uppercase(aOldName) );
     391           0 :     ScRangeName* pNewRangeName = GetRangeName( aNewScope );
     392             :     OSL_ENSURE(pData, "model and table should be in sync");
     393             :     // be safe and check for range data
     394           0 :     if (pData)
     395             :     {
     396           0 :         pOldRangeName->erase(*pData);
     397           0 :         mbNeedUpdate = false;
     398           0 :         m_pRangeManagerTable->DeleteSelectedEntries();
     399             :         RangeType nType = RT_NAME |
     400           0 :             (m_pBtnRowHeader->IsChecked() ? RT_ROWHEADER : RangeType(0))
     401           0 :             |(m_pBtnColHeader->IsChecked() ? RT_COLHEADER : RangeType(0))
     402           0 :             |(m_pBtnPrintArea->IsChecked() ? RT_PRINTAREA : RangeType(0))
     403           0 :             |(m_pBtnCriteria->IsChecked()  ? RT_CRITERIA  : RangeType(0));
     404             : 
     405             :         ScRangeData* pNewEntry = new ScRangeData( mpDoc, aNewName, aExpr,
     406           0 :                 maCursorPos, nType);
     407           0 :         pNewRangeName->insert(pNewEntry);
     408           0 :         aLine.aName = aNewName;
     409           0 :         aLine.aExpression = aExpr;
     410           0 :         aLine.aScope = aNewScope;
     411           0 :         m_pRangeManagerTable->addEntry(aLine);
     412           0 :         mbNeedUpdate = true;
     413           0 :         mbDataChanged = true;
     414           0 :     }
     415             : }
     416             : 
     417           0 : void ScNameDlg::SelectionChanged()
     418             : {
     419             :     //don't update if we have just modified due to user input
     420           0 :     if (!mbNeedUpdate)
     421             :     {
     422           0 :         return;
     423             :     }
     424             : 
     425           0 :     if (m_pRangeManagerTable->IsMultiSelection())
     426             :     {
     427           0 :         m_pEdName->SetText(maStrMultiSelect);
     428           0 :         m_pEdAssign->SetText(maStrMultiSelect);
     429             : 
     430           0 :         m_pEdName->Disable();
     431           0 :         m_pEdAssign->Disable();
     432           0 :         m_pRbAssign->Disable();
     433           0 :         m_pLbScope->Disable();
     434           0 :         m_pBtnRowHeader->Disable();
     435           0 :         m_pBtnColHeader->Disable();
     436           0 :         m_pBtnPrintArea->Disable();
     437           0 :         m_pBtnCriteria->Disable();
     438             :     }
     439             :     else
     440             :     {
     441           0 :         ScRangeNameLine aLine;
     442           0 :         m_pRangeManagerTable->GetCurrentLine(aLine);
     443           0 :         m_pEdAssign->SetText(aLine.aExpression);
     444           0 :         m_pEdName->SetText(aLine.aName);
     445           0 :         m_pLbScope->SelectEntry(aLine.aScope);
     446           0 :         ShowOptions(aLine);
     447           0 :         m_pBtnDelete->Enable();
     448           0 :         m_pEdName->Enable();
     449           0 :         m_pEdAssign->Enable();
     450           0 :         m_pRbAssign->Enable();
     451           0 :         m_pLbScope->Enable();
     452           0 :         m_pBtnRowHeader->Enable();
     453           0 :         m_pBtnColHeader->Enable();
     454           0 :         m_pBtnPrintArea->Enable();
     455           0 :         m_pBtnCriteria->Enable();
     456             :     }
     457             : }
     458             : 
     459           0 : void ScNameDlg::ScopeChanged()
     460             : {
     461           0 :     NameModified();
     462           0 : }
     463             : 
     464           0 : void ScNameDlg::GetRangeNames(boost::ptr_map<OUString, ScRangeName>& rRangeMap)
     465             : {
     466           0 :     maRangeMap.swap(rRangeMap);
     467           0 : }
     468             : 
     469           0 : IMPL_LINK_NOARG(ScNameDlg, OkBtnHdl)
     470             : {
     471           0 :     Close();
     472           0 :     return 0;
     473             : }
     474             : 
     475           0 : IMPL_LINK_NOARG(ScNameDlg, CancelBtnHdl)
     476             : {
     477           0 :     CancelPushed();
     478           0 :     return 0;
     479             : }
     480             : 
     481           0 : IMPL_LINK_NOARG(ScNameDlg, AddBtnHdl)
     482             : {
     483           0 :     return long(AddPushed());
     484             : }
     485             : 
     486           0 : IMPL_LINK_NOARG(ScNameDlg, RemoveBtnHdl)
     487             : {
     488           0 :     RemovePushed();
     489           0 :     return 0;
     490             : }
     491             : 
     492           0 : IMPL_LINK_NOARG(ScNameDlg, EdModifyHdl)
     493             : {
     494           0 :     NameModified();
     495           0 :     return 0;
     496             : }
     497             : 
     498           0 : IMPL_LINK_NOARG(ScNameDlg, AssignGetFocusHdl)
     499             : {
     500           0 :     EdModifyHdl(m_pEdAssign);
     501           0 :     return 0;
     502             : }
     503             : 
     504           0 : IMPL_LINK_NOARG(ScNameDlg, SelectionChangedHdl_Impl)
     505             : {
     506           0 :     SelectionChanged();
     507           0 :     return 0;
     508             : }
     509             : 
     510           0 : IMPL_LINK_NOARG(ScNameDlg, ScopeChangedHdl)
     511             : {
     512           0 :     ScopeChanged();
     513           0 :     return 0;
     514           0 : }
     515             : 
     516             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10