LCOV - code coverage report
Current view: top level - fpicker/source/office - PlacesListBox.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 129 0.8 %
Date: 2015-06-13 12:38:46 Functions: 2 25 8.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             : 
      10             : #include <iodlg.hrc>
      11             : #include <PlacesListBox.hxx>
      12             : #include <svtools/PlaceEditDialog.hxx>
      13             : 
      14             : #include <vcl/msgbox.hxx>
      15             : #include <svtools/headbar.hxx>
      16             : #include <svtools/svtresid.hxx>
      17             : 
      18             : #define COLUMN_NAME     1
      19             : 
      20             : 
      21           0 : PlacesListBox_Impl::PlacesListBox_Impl( PlacesListBox* pParent, const OUString& rTitle ) :
      22             :     SvHeaderTabListBox( pParent, WB_TABSTOP | WB_NOINITIALSELECTION ),
      23             :     mpHeaderBar( NULL ),
      24           0 :     mpParent( pParent )
      25             : {
      26           0 :     Size aBoxSize = pParent->GetSizePixel( );
      27           0 :     mpHeaderBar = VclPtr<HeaderBar>::Create( pParent, WB_BUTTONSTYLE | WB_BOTTOMBORDER );
      28           0 :     mpHeaderBar->SetPosSizePixel( Point( 0, 0 ), Size( 600, 16 ) );
      29             : 
      30           0 :     long pTabs[] = { 2, 20, 600 };
      31           0 :     SetTabs( &pTabs[0], MAP_PIXEL );
      32           0 :     mpHeaderBar->InsertItem( COLUMN_NAME, rTitle, 600, HeaderBarItemBits::LEFT | HeaderBarItemBits::VCENTER );
      33             : 
      34           0 :     Size aHeadSize = mpHeaderBar->GetSizePixel();
      35             :     SetPosSizePixel( Point( 0, aHeadSize.getHeight() ),
      36           0 :                   Size( aBoxSize.getWidth(), aBoxSize.getHeight() - aHeadSize.getHeight() ) );
      37             : 
      38           0 :     InitHeaderBar( mpHeaderBar );
      39             : 
      40           0 :     Show( );
      41           0 :     mpHeaderBar->Show();
      42           0 : }
      43             : 
      44           0 : PlacesListBox_Impl::~PlacesListBox_Impl( )
      45             : {
      46           0 :     disposeOnce();
      47           0 : }
      48             : 
      49           0 : void PlacesListBox_Impl::dispose()
      50             : {
      51           0 :     mpHeaderBar.disposeAndClear();
      52           0 :     mpParent.clear();
      53           0 :     SvHeaderTabListBox::dispose();
      54           0 : }
      55             : 
      56           0 : void PlacesListBox_Impl::MouseButtonUp( const MouseEvent& rMEvt )
      57             : {
      58           0 :     SvHeaderTabListBox::MouseButtonUp( rMEvt );
      59           0 :     mpParent->updateView( );
      60           0 : }
      61             : 
      62           0 : PlacesListBox::PlacesListBox( vcl::Window* pParent, SvtFileDialog* pFileDlg, const OUString& rTitle, WinBits nBits ) :
      63             :     Control( pParent, nBits ),
      64             :     maPlaces( ),
      65             :     mpDlg( pFileDlg ),
      66             :     mpImpl( NULL ),
      67             :     mpAddBtn( ),
      68             :     mpDelBtn( ),
      69             :     mnNbEditables( 0 ),
      70             :     mbUpdated( false ),
      71           0 :     mbSelectionChanged( false )
      72             : {
      73           0 :     mpImpl = VclPtr<PlacesListBox_Impl>::Create( this, rTitle );
      74             : 
      75           0 :     mpImpl->SetSelectHdl( LINK( this, PlacesListBox, Selection ) );
      76           0 :     mpImpl->SetDoubleClickHdl( LINK( this, PlacesListBox, DoubleClick ) ) ;
      77             : 
      78           0 :     mpAddBtn.reset( VclPtr<ImageButton>::Create( this, 0 ) );
      79           0 :     mpAddBtn->SetText( OUString( "+" ) );
      80           0 :     mpAddBtn->SetPosSizePixel( Point( 0, 0 ), Size( 22, 22 ) );
      81           0 :     mpAddBtn->Show();
      82             : 
      83           0 :     mpDelBtn.reset( VclPtr<ImageButton>::Create( this, 0 ) );
      84           0 :     mpDelBtn->SetText( OUString( "-" ) );
      85           0 :     mpDelBtn->SetPosSizePixel( Point( 0, 0 ), Size( 22, 22 ) );
      86           0 :     mpDelBtn->Show();
      87           0 : }
      88             : 
      89           0 : PlacesListBox::~PlacesListBox( )
      90             : {
      91           0 :     disposeOnce();
      92           0 : }
      93             : 
      94           0 : void PlacesListBox::dispose()
      95             : {
      96           0 :     mpImpl.disposeAndClear();
      97           0 :     mpAddBtn.disposeAndClear();
      98           0 :     mpDelBtn.disposeAndClear();
      99           0 :     mpDlg.clear();
     100           0 :     Control::dispose();
     101           0 : }
     102             : 
     103           0 : void PlacesListBox::AppendPlace( PlacePtr pPlace )
     104             : {
     105           0 :     maPlaces.push_back( pPlace );
     106           0 :     mpImpl->InsertEntry( pPlace->GetName( ),
     107           0 :             getEntryIcon( pPlace ), getEntryIcon( pPlace ) );
     108             : 
     109           0 :     if(pPlace->IsEditable()) {
     110           0 :         ++mnNbEditables;
     111           0 :         mbUpdated = true;
     112             :     }
     113           0 : }
     114             : 
     115             : 
     116           0 : bool PlacesListBox::IsUpdated() {
     117           0 :     if(mbUpdated) {
     118           0 :         mbUpdated = false;
     119           0 :         return true;
     120             :     }
     121           0 :     return false;
     122             : }
     123             : 
     124             : 
     125           0 : void PlacesListBox::RemovePlace( sal_uInt16 nPos )
     126             : {
     127           0 :     if ( nPos < maPlaces.size() )
     128             :     {
     129           0 :         if(maPlaces[nPos]->IsEditable()) {
     130           0 :             --mnNbEditables;
     131           0 :             mbUpdated = true;
     132             :         }
     133           0 :         maPlaces.erase( maPlaces.begin() + nPos );
     134           0 :         SvTreeListEntry* pEntry = mpImpl->GetEntry( nPos );
     135           0 :         mpImpl->RemoveEntry( pEntry );
     136             :     }
     137           0 : }
     138             : 
     139           0 : void PlacesListBox::RemoveSelectedPlace() {
     140           0 :     RemovePlace(mpImpl->GetCurrRow());
     141           0 : }
     142             : 
     143           0 : void PlacesListBox::SetAddHdl( const Link<>& rHdl )
     144             : {
     145           0 :     mpAddBtn->SetClickHdl( rHdl );
     146           0 : }
     147             : 
     148           0 : void PlacesListBox::SetDelHdl( const Link<>& rHdl )
     149             : {
     150           0 :     mpDelBtn->SetClickHdl( rHdl );
     151           0 : }
     152             : 
     153           0 : void PlacesListBox::SetDelEnabled( bool enabled )
     154             : {
     155           0 :     mpDelBtn->Enable( enabled );
     156           0 : }
     157             : 
     158           0 : void PlacesListBox::SetSizePixel( const Size& rNewSize )
     159             : {
     160           0 :     Control::SetSizePixel( rNewSize );
     161           0 :     Size aListSize( rNewSize );
     162           0 :     aListSize.Height() -= 26 + 18;
     163           0 :     mpImpl->SetSizePixel( aListSize );
     164             : 
     165           0 :     sal_Int32 nBtnY = rNewSize.Height() - 26;
     166           0 :     mpAddBtn->SetPosPixel( Point( 3, nBtnY ) );
     167           0 :     mpDelBtn->SetPosPixel( Point( 6 + 24, nBtnY ) );
     168           0 : }
     169             : 
     170           0 : Image PlacesListBox::getEntryIcon( PlacePtr pPlace )
     171             : {
     172           0 :     Image theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_LOCAL );
     173           0 :     if ( !pPlace->IsLocal( ) )
     174           0 :         theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_REMOTE );
     175           0 :     return theImage;
     176             : }
     177             : 
     178           0 : IMPL_LINK_NOARG( PlacesListBox, Selection )
     179             : {
     180           0 :     sal_uInt32 nSelected = mpImpl->GetCurrRow();
     181           0 :     PlacePtr pPlace = maPlaces[nSelected];
     182             : 
     183           0 :     mbSelectionChanged = true;
     184           0 :     if(pPlace->IsEditable())
     185           0 :         mpDlg->RemovablePlaceSelected();
     186             :     else
     187           0 :         mpDlg->RemovablePlaceSelected(false);
     188           0 :     return 0;
     189             : }
     190             : 
     191           0 : IMPL_LINK_NOARG( PlacesListBox, DoubleClick )
     192             : {
     193           0 :     sal_uInt16 nSelected = mpImpl->GetCurrRow();
     194           0 :     PlacePtr pPlace = maPlaces[nSelected];
     195           0 :     if ( pPlace->IsEditable() && !pPlace->IsLocal( ) )
     196             :     {
     197           0 :         ScopedVclPtrInstance< PlaceEditDialog > aDlg(mpDlg, pPlace);
     198           0 :         short aRetCode = aDlg->Execute();
     199           0 :         switch(aRetCode) {
     200             :             case RET_OK :
     201             :             {
     202           0 :                 pPlace->SetName ( aDlg->GetServerName() );
     203           0 :                 pPlace->SetUrl( aDlg->GetServerUrl() );
     204           0 :                 mbUpdated = true;
     205           0 :                 break;
     206             :             }
     207             :             case RET_NO :
     208             :             {
     209           0 :                 RemovePlace(nSelected);
     210           0 :                 break;
     211             :             }
     212             :             default:
     213           0 :                 break;
     214           0 :         };
     215             :     }
     216           0 :     return 0;
     217             : }
     218             : 
     219           0 : void PlacesListBox::updateView( )
     220             : {
     221           0 :     if ( mbSelectionChanged )
     222             :     {
     223           0 :         mbSelectionChanged = false;
     224           0 :         sal_uInt32 nSelected = mpImpl->GetCurrRow();
     225           0 :         PlacePtr pPlace = maPlaces[nSelected];
     226           0 :         mpDlg->OpenURL_Impl( pPlace->GetUrl( ) );
     227             :     }
     228           3 : }
     229             : 
     230             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11