LCOV - code coverage report
Current view: top level - cui/source/dialogs - hlmarkwn.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 260 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 31 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 <dialmgr.hxx>
      21             : #include <sfx2/docfile.hxx>
      22             : #include <unotools/viewoptions.hxx>
      23             : #include <vcl/svapp.hxx>
      24             : #include <vcl/settings.hxx>
      25             : #include <vcl/wrkwin.hxx>
      26             : #include <vcl/builderfactory.hxx>
      27             : 
      28             : // UNO-Stuff
      29             : #include <comphelper/processfactory.hxx>
      30             : #include <comphelper/sequence.hxx>
      31             : #include <com/sun/star/awt/XBitmap.hpp>
      32             : #include <com/sun/star/frame/Desktop.hpp>
      33             : #include <com/sun/star/frame/XComponentLoader.hpp>
      34             : #include <com/sun/star/beans/PropertyValue.hpp>
      35             : #include <com/sun/star/document/XLinkTargetSupplier.hpp>
      36             : #include <com/sun/star/beans/XPropertySet.hpp>
      37             : 
      38             : #include <toolkit/helper/vclunohelper.hxx>
      39             : #include "svtools/treelistentry.hxx"
      40             : 
      41             : #include <cuires.hrc>
      42             : #include "hlmarkwn.hxx"
      43             : #include "hltpbase.hxx"
      44             : 
      45             : using namespace ::com::sun::star;
      46             : 
      47             : /*************************************************************************
      48             : |*
      49             : |* Userdata-struct for tree-entries
      50             : |*
      51             : |************************************************************************/
      52             : 
      53           0 : struct TargetData
      54             : {
      55             :     OUString aUStrLinkname;
      56             :     bool     bIsTarget;
      57             : 
      58           0 :     TargetData (const OUString& aUStrLName, bool bTarget)
      59           0 :         : bIsTarget(bTarget)
      60             :     {
      61           0 :         if (bIsTarget)
      62           0 :             aUStrLinkname = aUStrLName;
      63           0 :     }
      64             : };
      65             : 
      66             : //#                                                                      #
      67             : //# Tree-Window                                                          #
      68             : //#                                                                      #
      69           0 : SvxHlmarkTreeLBox::SvxHlmarkTreeLBox(vcl::Window* pParent, WinBits nStyle)
      70             :     : SvTreeListBox(pParent, nStyle)
      71           0 :     , mpParentWnd(NULL)
      72             : {
      73           0 :     SetNodeDefaultImages();
      74           0 : }
      75             : 
      76           0 : SvxHlmarkTreeLBox::~SvxHlmarkTreeLBox()
      77             : {
      78           0 :     disposeOnce();
      79           0 : }
      80             : 
      81           0 : void SvxHlmarkTreeLBox::dispose()
      82             : {
      83           0 :     mpParentWnd.clear();
      84           0 :     SvTreeListBox::dispose();
      85           0 : }
      86             : 
      87           0 : VCL_BUILDER_DECL_FACTORY(SvxHlmarkTreeLBox)
      88             : {
      89           0 :     WinBits nWinStyle = WB_TABSTOP;
      90           0 :     OString sBorder = VclBuilder::extractCustomProperty(rMap);
      91           0 :     if (!sBorder.isEmpty())
      92           0 :         nWinStyle |= WB_BORDER;
      93           0 :     rRet = VclPtr<SvxHlmarkTreeLBox>::Create(pParent, nWinStyle);
      94           0 : }
      95             : 
      96           0 : Size SvxHlmarkTreeLBox::GetOptimalSize() const
      97             : {
      98           0 :     return LogicToPixel(Size(103, 162), MAP_APPFONT);
      99             : }
     100             : 
     101           0 : void SvxHlmarkTreeLBox::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect)
     102             : {
     103           0 :     if (!mpParentWnd || mpParentWnd->mnError == LERR_NOERROR)
     104             :     {
     105           0 :         SvTreeListBox::Paint(rRenderContext, rRect);
     106             :     }
     107             :     else
     108             :     {
     109           0 :         Erase(rRenderContext);
     110             : 
     111           0 :         Rectangle aDrawRect(Point( 0, 0 ), GetSizePixel());
     112             : 
     113           0 :         OUString aStrMessage;
     114             : 
     115           0 :         switch (mpParentWnd->mnError)
     116             :         {
     117             :         case LERR_NOENTRIES :
     118           0 :             aStrMessage = CUI_RESSTR( RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES );
     119           0 :             break;
     120             :         case LERR_DOCNOTOPEN :
     121           0 :             aStrMessage = CUI_RESSTR( RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN );
     122           0 :             break;
     123             :         }
     124             : 
     125           0 :         rRenderContext.DrawText(aDrawRect, aStrMessage, DrawTextFlags::Left | DrawTextFlags::MultiLine | DrawTextFlags::WordBreak);
     126             :     }
     127           0 : }
     128             : 
     129             : 
     130             : //#                                                                      #
     131             : //# Window-Class                                                         #
     132             : //#                                                                      #
     133             : 
     134             : 
     135             : /*************************************************************************
     136             : |*
     137             : |* Constructor / Destructor
     138             : |*
     139             : |************************************************************************/
     140           0 : SvxHlinkDlgMarkWnd::SvxHlinkDlgMarkWnd( SvxHyperlinkTabPageBase *pParent )
     141             :     : ModalDialog(pParent, "HyperlinkMark", "cui/ui/hyperlinkmarkdialog.ui")
     142             :     , mbUserMoved(false)
     143             :     , mpParent(pParent)
     144           0 :     , mnError(LERR_NOERROR)
     145             : {
     146           0 :     get(mpBtApply, "apply");
     147           0 :     get(mpBtClose, "close");
     148           0 :     get(mpLbTree, "TreeListBox");
     149           0 :     mpLbTree->SetParentWnd(this);
     150             : 
     151           0 :     mpBtApply->SetClickHdl          ( LINK ( this, SvxHlinkDlgMarkWnd, ClickApplyHdl_Impl ) );
     152           0 :     mpBtClose->SetClickHdl       ( LINK ( this, SvxHlinkDlgMarkWnd, ClickCloseHdl_Impl ) );
     153           0 :     mpLbTree->SetDoubleClickHdl  ( LINK ( this, SvxHlinkDlgMarkWnd, ClickApplyHdl_Impl ) );
     154             : 
     155             :     // add lines to the Tree-ListBox
     156           0 :     mpLbTree->SetStyle( mpLbTree->GetStyle() | WB_TABSTOP | WB_BORDER | WB_HASLINES |
     157             :                             WB_HASBUTTONS |  //WB_HASLINESATROOT |
     158           0 :                             WB_HSCROLL | WB_HASBUTTONSATROOT );
     159           0 : }
     160             : 
     161           0 : SvxHlinkDlgMarkWnd::~SvxHlinkDlgMarkWnd()
     162             : {
     163           0 :     disposeOnce();
     164           0 : }
     165             : 
     166           0 : void SvxHlinkDlgMarkWnd::dispose()
     167             : {
     168           0 :     ClearTree();
     169           0 :     mpBtApply.clear();
     170           0 :     mpBtClose.clear();
     171           0 :     mpLbTree.clear();
     172           0 :     mpParent.clear();
     173           0 :     ModalDialog::dispose();
     174           0 : }
     175             : 
     176             : /*************************************************************************
     177             : |*
     178             : |* Set an errorstatus
     179             : |*
     180             : |************************************************************************/
     181           0 : sal_uInt16 SvxHlinkDlgMarkWnd::SetError( sal_uInt16 nError)
     182             : {
     183           0 :     sal_uInt16 nOldError = mnError;
     184           0 :     mnError = nError;
     185             : 
     186           0 :     if( mnError != LERR_NOERROR )
     187           0 :         ClearTree();
     188             : 
     189           0 :     mpLbTree->Invalidate();
     190             : 
     191           0 :     return nOldError;
     192             : }
     193             : 
     194             : /*************************************************************************
     195             : |*
     196             : |* Move window
     197             : |*
     198             : |************************************************************************/
     199             : 
     200           0 : bool SvxHlinkDlgMarkWnd::MoveTo ( Point aNewPos )
     201             : {
     202           0 :     if ( !mbUserMoved )
     203             :     {
     204           0 :         bool bOldStatus = mbUserMoved;
     205           0 :         SetPosPixel ( aNewPos );
     206           0 :         mbUserMoved = bOldStatus;
     207             :     }
     208             : 
     209           0 :     return mbUserMoved;
     210             : }
     211             : 
     212           0 : void SvxHlinkDlgMarkWnd::Move ()
     213             : {
     214           0 :     Window::Move();
     215             : 
     216           0 :     if ( IsReallyVisible() )
     217           0 :         mbUserMoved = true;
     218           0 : }
     219             : 
     220           0 : bool SvxHlinkDlgMarkWnd::ConnectToDialog( bool bDoit )
     221             : {
     222           0 :     bool bOldStatus = mbUserMoved;
     223             : 
     224           0 :     mbUserMoved = !bDoit;
     225             : 
     226           0 :     return bOldStatus;
     227             : }
     228             : 
     229             : namespace
     230             : {
     231           0 :     void SelectPath(SvTreeListEntry *pEntry, SvxHlmarkTreeLBox &rLbTree,
     232             :         std::deque<OUString> &rLastSelectedPath)
     233             :     {
     234           0 :         OUString sTitle(rLastSelectedPath.front());
     235           0 :         rLastSelectedPath.pop_front();
     236           0 :         if (sTitle.isEmpty())
     237           0 :             return;
     238           0 :         while (pEntry)
     239             :         {
     240           0 :             if (sTitle == rLbTree.GetEntryText(pEntry))
     241             :             {
     242           0 :                 rLbTree.Select(pEntry);
     243           0 :                 rLbTree.MakeVisible(pEntry);
     244           0 :                 if (!rLastSelectedPath.empty())
     245             :                 {
     246           0 :                     rLbTree.Expand(pEntry);
     247           0 :                     SelectPath(rLbTree.FirstChild(pEntry), rLbTree, rLastSelectedPath);
     248             :                 }
     249           0 :                 break;
     250             :             }
     251           0 :             pEntry = SvTreeListBox::NextSibling(pEntry);
     252           0 :         }
     253             :     }
     254             : }
     255             : 
     256             : #define TG_SETTING_MANAGER  "TargetInDocument"
     257             : #define TG_SETTING_LASTMARK "LastSelectedMark"
     258             : #define TG_SETTING_LASTPATH "LastSelectedPath"
     259             : 
     260           0 : void SvxHlinkDlgMarkWnd::RestoreLastSelection()
     261             : {
     262           0 :     bool bSelectedEntry = false;
     263             : 
     264           0 :     OUString sLastSelectedMark;
     265           0 :     std::deque<OUString> aLastSelectedPath;
     266           0 :     SvtViewOptions aViewSettings( E_DIALOG, TG_SETTING_MANAGER );
     267           0 :     if (aViewSettings.Exists())
     268             :     {
     269             :         //Maybe we might want to have some sort of mru list and keep a mapping
     270             :         //per document, rather than the current reuse of "the last thing
     271             :         //selected, regardless of the document"
     272           0 :         aViewSettings.GetUserItem(TG_SETTING_LASTMARK) >>= sLastSelectedMark;
     273           0 :         uno::Sequence<OUString> aTmp;
     274           0 :         aViewSettings.GetUserItem(TG_SETTING_LASTPATH) >>= aTmp;
     275           0 :         aLastSelectedPath = comphelper::sequenceToContainer< std::deque<OUString> >(aTmp);
     276             :     }
     277             :     //fallback to previous entry selected the last
     278             :     //time we executed this dialog. First see if
     279             :     //the exact mark exists and re-use that
     280           0 :     if (!sLastSelectedMark.isEmpty())
     281           0 :         bSelectedEntry = SelectEntry(sLastSelectedMark);
     282             :     //Otherwise just select the closest path available
     283             :     //now to what was available at dialog close time
     284           0 :     if (!bSelectedEntry && !aLastSelectedPath.empty())
     285             :     {
     286           0 :         std::deque<OUString> aTmpSelectedPath(aLastSelectedPath);
     287           0 :         SelectPath(mpLbTree->First(), *mpLbTree, aTmpSelectedPath);
     288           0 :     }
     289           0 : }
     290             : 
     291             : /*************************************************************************
     292             : |*
     293             : |* Interface to refresh tree
     294             : |*
     295             : |************************************************************************/
     296             : 
     297           0 : void SvxHlinkDlgMarkWnd::RefreshTree (const OUString& aStrURL)
     298             : {
     299           0 :     OUString aUStrURL;
     300             : 
     301           0 :     EnterWait();
     302             : 
     303           0 :     ClearTree();
     304             : 
     305           0 :     sal_Int32 nPos = aStrURL.indexOf('#');
     306             : 
     307           0 :     if (nPos != 0)
     308           0 :         aUStrURL = aStrURL;
     309             : 
     310           0 :     if (!RefreshFromDoc(aUStrURL))
     311           0 :         mpLbTree->Invalidate();
     312             : 
     313           0 :     bool bSelectedEntry = false;
     314             : 
     315           0 :     if ( nPos != -1 )
     316             :     {
     317           0 :         OUString aStrMark = aStrURL.copy(nPos+1);
     318           0 :         bSelectedEntry = SelectEntry(aStrMark);
     319             :     }
     320             : 
     321           0 :     if (!bSelectedEntry)
     322           0 :         RestoreLastSelection();
     323             : 
     324           0 :     LeaveWait();
     325             : 
     326           0 :     maStrLastURL = aStrURL;
     327           0 : }
     328             : 
     329             : /*************************************************************************
     330             : |*
     331             : |* get links from document
     332             : |*
     333             : |************************************************************************/
     334             : 
     335           0 : bool SvxHlinkDlgMarkWnd::RefreshFromDoc(const OUString& aURL)
     336             : {
     337           0 :     mnError = LERR_NOERROR;
     338             : 
     339           0 :     uno::Reference< frame::XDesktop2 > xDesktop = frame::Desktop::create( ::comphelper::getProcessComponentContext() );
     340           0 :     uno::Reference< lang::XComponent > xComp;
     341             : 
     342           0 :     if( !aURL.isEmpty() )
     343             :     {
     344             :         // load from url
     345           0 :         uno::Reference< frame::XComponentLoader > xLoader( xDesktop, uno::UNO_QUERY );
     346           0 :         if( xLoader.is() )
     347             :         {
     348             :             try
     349             :             {
     350           0 :                 uno::Sequence< beans::PropertyValue > aArg(1);
     351           0 :                 aArg.getArray()[0].Name = "Hidden";
     352           0 :                 aArg.getArray()[0].Value <<= true;
     353           0 :                 xComp = xLoader->loadComponentFromURL( aURL, OUString( "_blank" ), 0, aArg );
     354             :             }
     355           0 :             catch( const io::IOException& )
     356             :             {
     357             : 
     358             :             }
     359           0 :             catch( const lang::IllegalArgumentException& )
     360             :             {
     361             : 
     362             :             }
     363           0 :         }
     364             :     }
     365             :     else
     366             :     {
     367             :         // the component with user focus ( current document )
     368           0 :         xComp = xDesktop->getCurrentComponent();
     369             :     }
     370             : 
     371           0 :     if( xComp.is() )
     372             :     {
     373           0 :         uno::Reference< document::XLinkTargetSupplier > xLTS( xComp, uno::UNO_QUERY );
     374             : 
     375           0 :         if( xLTS.is() )
     376             :         {
     377           0 :             if( FillTree( xLTS->getLinks() ) == 0 )
     378           0 :                 mnError = LERR_NOENTRIES;
     379             :         }
     380             :         else
     381           0 :             mnError = LERR_DOCNOTOPEN;
     382             : 
     383           0 :         if ( !aURL.isEmpty() )
     384           0 :             xComp->dispose();
     385             :     }
     386             :     else
     387             :     {
     388           0 :         if( !aURL.isEmpty() )
     389           0 :             mnError=LERR_DOCNOTOPEN;
     390             :     }
     391           0 :     return (mnError==0);
     392             : }
     393             : /*************************************************************************
     394             : |*
     395             : |* Fill Tree-Control
     396             : |*
     397             : |************************************************************************/
     398             : 
     399           0 : int SvxHlinkDlgMarkWnd::FillTree( uno::Reference< container::XNameAccess > xLinks, SvTreeListEntry* pParentEntry )
     400             : {
     401           0 :     int nEntries=0;
     402           0 :     const uno::Sequence< OUString > aNames( xLinks->getElementNames() );
     403           0 :     const sal_uLong nLinks = aNames.getLength();
     404           0 :     const OUString* pNames = aNames.getConstArray();
     405             : 
     406           0 :     Color aMaskColor( COL_LIGHTMAGENTA );
     407           0 :     const OUString aProp_LinkDisplayName( "LinkDisplayName" );
     408           0 :     const OUString aProp_LinkTarget( "com.sun.star.document.LinkTarget" );
     409           0 :     const OUString aProp_LinkDisplayBitmap( "LinkDisplayBitmap" );
     410           0 :     for( sal_uLong i = 0; i < nLinks; i++ )
     411             :     {
     412           0 :         uno::Any aAny;
     413           0 :         OUString aLink( *pNames++ );
     414             : 
     415           0 :         bool bError = false;
     416             :         try
     417             :         {
     418           0 :             aAny = xLinks->getByName( aLink );
     419             :         }
     420           0 :         catch(const uno::Exception&)
     421             :         {
     422             :             // if the name of the target was invalid (like empty headings)
     423             :             // no object can be provided
     424           0 :             bError = true;
     425             :         }
     426           0 :         if(bError)
     427           0 :             continue;
     428             : 
     429           0 :         uno::Reference< beans::XPropertySet > xTarget;
     430             : 
     431           0 :         if( aAny >>= xTarget )
     432             :         {
     433             :             try
     434             :             {
     435             :                 // get name to display
     436           0 :                 aAny = xTarget->getPropertyValue( aProp_LinkDisplayName );
     437           0 :                 OUString aDisplayName;
     438           0 :                 aAny >>= aDisplayName;
     439           0 :                 OUString aStrDisplayname ( aDisplayName );
     440             : 
     441             :                 // is it a target ?
     442           0 :                 uno::Reference< lang::XServiceInfo > xSI( xTarget, uno::UNO_QUERY );
     443           0 :                 bool bIsTarget = xSI->supportsService( aProp_LinkTarget );
     444             : 
     445             :                 // create userdata
     446           0 :                 TargetData *pData = new TargetData ( aLink, bIsTarget );
     447             : 
     448             :                 SvTreeListEntry* pEntry;
     449             : 
     450             :                 try
     451             :                 {
     452             :                     // get bitmap for the tree-entry
     453           0 :                     uno::Reference< awt::XBitmap > aXBitmap( xTarget->getPropertyValue( aProp_LinkDisplayBitmap ), uno::UNO_QUERY );
     454           0 :                     if( aXBitmap.is() )
     455             :                     {
     456           0 :                         Image aBmp( VCLUnoHelper::GetBitmap( aXBitmap ).GetBitmap(), aMaskColor );
     457             :                         // insert Displayname into treelist with bitmaps
     458           0 :                         pEntry = mpLbTree->InsertEntry ( aStrDisplayname,
     459             :                                                         aBmp, aBmp,
     460             :                                                         pParentEntry,
     461             :                                                         false, TREELIST_APPEND,
     462           0 :                                                         static_cast<void*>(pData) );
     463           0 :                         nEntries++;
     464             :                     }
     465             :                     else
     466             :                     {
     467             :                         // insert Displayname into treelist without bitmaps
     468           0 :                         pEntry = mpLbTree->InsertEntry ( aStrDisplayname,
     469             :                                                         pParentEntry,
     470             :                                                         false, TREELIST_APPEND,
     471           0 :                                                         static_cast<void*>(pData) );
     472           0 :                         nEntries++;
     473           0 :                     }
     474             :                 }
     475           0 :                 catch(const com::sun::star::uno::Exception&)
     476             :                 {
     477             :                     // insert Displayname into treelist without bitmaps
     478           0 :                     pEntry = mpLbTree->InsertEntry ( aStrDisplayname,
     479             :                                                     pParentEntry,
     480             :                                                     false, TREELIST_APPEND,
     481           0 :                                                     static_cast<void*>(pData) );
     482           0 :                     nEntries++;
     483             :                 }
     484             : 
     485           0 :                 uno::Reference< document::XLinkTargetSupplier > xLTS( xTarget, uno::UNO_QUERY );
     486           0 :                 if( xLTS.is() )
     487           0 :                     nEntries += FillTree( xLTS->getLinks(), pEntry );
     488             :             }
     489           0 :             catch(const com::sun::star::uno::Exception&)
     490             :             {
     491             :             }
     492             :         }
     493           0 :     }
     494             : 
     495           0 :     return nEntries;
     496             : }
     497             : 
     498             : /*************************************************************************
     499             : |*
     500             : |* Clear Tree
     501             : |*
     502             : |************************************************************************/
     503             : 
     504           0 : void SvxHlinkDlgMarkWnd::ClearTree()
     505             : {
     506           0 :     SvTreeListEntry* pEntry = mpLbTree->First();
     507             : 
     508           0 :     while ( pEntry )
     509             :     {
     510           0 :         TargetData* pUserData = static_cast<TargetData *>(pEntry->GetUserData());
     511           0 :         delete pUserData;
     512             : 
     513           0 :         pEntry = mpLbTree->Next( pEntry );
     514             :     }
     515             : 
     516           0 :     mpLbTree->Clear();
     517           0 : }
     518             : 
     519             : /*************************************************************************
     520             : |*
     521             : |* Find Entry for String
     522             : |*
     523             : |************************************************************************/
     524             : 
     525           0 : SvTreeListEntry* SvxHlinkDlgMarkWnd::FindEntry (const OUString& aStrName)
     526             : {
     527           0 :     bool bFound=false;
     528           0 :     SvTreeListEntry* pEntry = mpLbTree->First();
     529             : 
     530           0 :     while ( pEntry && !bFound )
     531             :     {
     532           0 :         TargetData* pUserData = static_cast<TargetData *>(pEntry->GetUserData ());
     533           0 :         if (aStrName == pUserData->aUStrLinkname)
     534           0 :             bFound = true;
     535             :         else
     536           0 :             pEntry = mpLbTree->Next( pEntry );
     537             :     }
     538             : 
     539           0 :     return pEntry;
     540             : }
     541             : 
     542             : /*************************************************************************
     543             : |*
     544             : |* Select Entry
     545             : |*
     546             : |************************************************************************/
     547             : 
     548           0 : bool SvxHlinkDlgMarkWnd::SelectEntry(const OUString& aStrMark)
     549             : {
     550           0 :     SvTreeListEntry* pEntry = FindEntry(aStrMark);
     551           0 :     if (!pEntry)
     552           0 :         return false;
     553           0 :     mpLbTree->Select(pEntry);
     554           0 :     mpLbTree->MakeVisible (pEntry);
     555           0 :     return true;
     556             : }
     557             : 
     558             : /*************************************************************************
     559             : |*
     560             : |* Click on Apply-Button / Doubleclick on item in tree
     561             : |*
     562             : |************************************************************************/
     563             : 
     564           0 : IMPL_LINK_NOARG(SvxHlinkDlgMarkWnd, ClickApplyHdl_Impl)
     565             : {
     566           0 :     SvTreeListEntry* pEntry = mpLbTree->GetCurEntry();
     567             : 
     568           0 :     if ( pEntry )
     569             :     {
     570           0 :         TargetData *pData = static_cast<TargetData *>(pEntry->GetUserData());
     571             : 
     572           0 :         if ( pData->bIsTarget )
     573             :         {
     574           0 :             mpParent->SetMarkStr(pData->aUStrLinkname);
     575             :         }
     576             :     }
     577             : 
     578           0 :     return 0L;
     579             : }
     580             : 
     581             : /*************************************************************************
     582             : |*
     583             : |* Click on Close-Button
     584             : |*
     585             : |************************************************************************/
     586             : 
     587           0 : IMPL_LINK_NOARG(SvxHlinkDlgMarkWnd, ClickCloseHdl_Impl)
     588             : {
     589           0 :     SvTreeListEntry* pEntry = mpLbTree->GetCurEntry();
     590           0 :     if ( pEntry )
     591             :     {
     592           0 :         TargetData* pUserData = static_cast<TargetData *>(pEntry->GetUserData());
     593           0 :         OUString sLastSelectedMark = pUserData->aUStrLinkname;
     594             : 
     595           0 :         std::deque<OUString> aLastSelectedPath;
     596           0 :         if (pEntry)
     597             :         {
     598             :             //If the bottommost entry is expanded but nothing
     599             :             //underneath it is selected leave a dummy entry
     600           0 :             if (mpLbTree->IsExpanded(pEntry))
     601           0 :                 aLastSelectedPath.push_front(OUString());
     602           0 :             while (pEntry)
     603             :             {
     604           0 :                 aLastSelectedPath.push_front(mpLbTree->GetEntryText(pEntry));
     605           0 :                 pEntry = mpLbTree->GetParent(pEntry);
     606             :             }
     607             :         }
     608             : 
     609           0 :         uno::Sequence< beans::NamedValue > aSettings(2);
     610           0 :         aSettings[0].Name = TG_SETTING_LASTMARK;
     611           0 :         aSettings[0].Value <<= sLastSelectedMark;
     612           0 :         aSettings[1].Name = TG_SETTING_LASTPATH;
     613           0 :         aSettings[1].Value <<= comphelper::containerToSequence<OUString>(aLastSelectedPath);
     614             : 
     615             :         // write
     616           0 :         SvtViewOptions aViewSettings( E_DIALOG, TG_SETTING_MANAGER );
     617           0 :         aViewSettings.SetUserData( aSettings );
     618             :     }
     619             : 
     620           0 :     Close();
     621             : 
     622           0 :     return 0L;
     623           0 : }
     624             : 
     625             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11