2012-01-30 17:44:34 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License or as specified alternatively below. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* Major Contributor(s):
|
|
|
|
* [ Copyright (C) 2011 Cedric Bosdonnat <cbosdonnat@suse.com> (initial developer) ]
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* For minor contributions see the git repository.
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
|
|
|
* the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
|
|
|
* in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
|
|
|
* instead of those above.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iodlg.hrc>
|
|
|
|
#include <PlacesListBox.hxx>
|
2012-03-27 11:01:07 -05:00
|
|
|
#include "PlaceEditDialog.hxx"
|
2012-01-30 17:44:34 -06:00
|
|
|
|
|
|
|
#include <vcl/msgbox.hxx>
|
2012-03-27 11:01:07 -05:00
|
|
|
#include <svtools/headbar.hxx>
|
2012-01-30 17:44:34 -06:00
|
|
|
#include <svtools/svtdata.hxx>
|
|
|
|
|
2012-03-27 11:01:07 -05:00
|
|
|
#define COLUMN_NAME 1
|
|
|
|
|
2012-01-30 17:44:34 -06:00
|
|
|
namespace css = com::sun::star;
|
|
|
|
using rtl::OUString;
|
|
|
|
|
2012-03-27 11:01:07 -05:00
|
|
|
PlacesListBox_Impl::PlacesListBox_Impl( Window* pParent, const rtl::OUString& rTitle ) :
|
|
|
|
SvHeaderTabListBox( pParent, WB_TABSTOP ),
|
|
|
|
mpHeaderBar( NULL )
|
|
|
|
{
|
|
|
|
Size aBoxSize = pParent->GetSizePixel( );
|
|
|
|
mpHeaderBar = new HeaderBar( pParent, WB_BUTTONSTYLE | WB_BOTTOMBORDER );
|
|
|
|
mpHeaderBar->SetPosSizePixel( Point( 0, 0 ), Size( aBoxSize.getWidth(), 16 ) );
|
|
|
|
|
|
|
|
long pTabs[] = { 2, 20, aBoxSize.getWidth() };
|
|
|
|
SetTabs( &pTabs[0], MAP_PIXEL );
|
|
|
|
mpHeaderBar->InsertItem( COLUMN_NAME, rTitle, aBoxSize.getWidth(), HIB_LEFT | HIB_VCENTER );
|
|
|
|
|
|
|
|
Size aHeadSize = mpHeaderBar->GetSizePixel();
|
|
|
|
SetPosSizePixel( Point( 0, aHeadSize.getHeight() ),
|
|
|
|
Size( aBoxSize.getWidth(), aBoxSize.getHeight() - aHeadSize.getHeight() ) );
|
|
|
|
|
|
|
|
InitHeaderBar( mpHeaderBar );
|
|
|
|
|
|
|
|
Show( );
|
|
|
|
mpHeaderBar->Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
PlacesListBox_Impl::~PlacesListBox_Impl( )
|
|
|
|
{
|
|
|
|
delete mpHeaderBar;
|
|
|
|
}
|
|
|
|
|
|
|
|
PlacesListBox::PlacesListBox( SvtFileDialog* pFileDlg, const rtl::OUString& rTitle, const ResId& rResId ) :
|
|
|
|
Control( pFileDlg, rResId ),
|
2012-01-30 17:44:34 -06:00
|
|
|
maPlaces( ),
|
|
|
|
mpDlg( pFileDlg ),
|
2012-03-27 11:01:07 -05:00
|
|
|
mpImpl( NULL ),
|
2012-01-30 17:44:34 -06:00
|
|
|
mnNbEditables( 0 ),
|
|
|
|
mbUpdated( false )
|
|
|
|
{
|
2012-03-27 11:01:07 -05:00
|
|
|
mpImpl = new PlacesListBox_Impl( this, rTitle );
|
|
|
|
|
|
|
|
mpImpl->SetSelectHdl( LINK( this, PlacesListBox, Selection ) );
|
|
|
|
mpImpl->SetDoubleClickHdl( LINK( this, PlacesListBox, DoubleClick ) ) ;
|
2012-01-30 17:44:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
PlacesListBox::~PlacesListBox( )
|
|
|
|
{
|
2012-03-27 11:01:07 -05:00
|
|
|
delete mpImpl;
|
2012-01-30 17:44:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlacesListBox::AppendPlace( PlacePtr pPlace )
|
|
|
|
{
|
|
|
|
maPlaces.push_back( pPlace );
|
2012-03-27 11:01:07 -05:00
|
|
|
mpImpl->InsertEntry( pPlace->GetName( ),
|
|
|
|
getEntryIcon( pPlace ), getEntryIcon( pPlace ) );
|
2012-01-30 17:44:34 -06:00
|
|
|
|
|
|
|
if(pPlace->IsEditable()) {
|
|
|
|
++mnNbEditables;
|
|
|
|
mbUpdated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int32 PlacesListBox::GetNbEditablePlaces() {
|
|
|
|
return mnNbEditables;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PlacesListBox::IsUpdated() {
|
|
|
|
if(mbUpdated) {
|
|
|
|
mbUpdated = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<PlacePtr>& PlacesListBox::GetPlaces() {
|
|
|
|
return maPlaces;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlacesListBox::RemovePlace( sal_uInt16 nPos )
|
|
|
|
{
|
|
|
|
if ( nPos < maPlaces.size() )
|
|
|
|
{
|
|
|
|
if(maPlaces[nPos]->IsEditable()) {
|
|
|
|
--mnNbEditables;
|
|
|
|
mbUpdated = true;
|
|
|
|
}
|
|
|
|
maPlaces.erase( maPlaces.begin() + nPos );
|
2012-03-27 11:01:07 -05:00
|
|
|
SvLBoxEntry* pEntry = mpImpl->GetEntry( nPos );
|
|
|
|
mpImpl->RemoveEntry( pEntry );
|
2012-01-30 17:44:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlacesListBox::RemoveSelectedPlace() {
|
2012-03-27 11:01:07 -05:00
|
|
|
RemovePlace(mpImpl->GetCurrRow());
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlacesListBox::SetSizePixel( const Size& rNewSize )
|
|
|
|
{
|
|
|
|
Control::SetSizePixel( rNewSize );
|
|
|
|
mpImpl->SetSizePixel( rNewSize );
|
2012-01-30 17:44:34 -06:00
|
|
|
}
|
|
|
|
|
2012-03-27 11:01:07 -05:00
|
|
|
Image PlacesListBox::getEntryIcon( PlacePtr pPlace )
|
2012-01-30 17:44:34 -06:00
|
|
|
{
|
2012-03-27 11:01:07 -05:00
|
|
|
Image theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_LOCAL );
|
|
|
|
if ( !pPlace->IsLocal( ) )
|
|
|
|
theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_REMOTE );
|
2012-01-30 17:44:34 -06:00
|
|
|
return theImage;
|
|
|
|
}
|
|
|
|
|
2012-03-27 11:01:07 -05:00
|
|
|
IMPL_LINK( PlacesListBox, Selection, void* , EMPTYARG )
|
2012-01-30 17:44:34 -06:00
|
|
|
{
|
2012-03-27 11:01:07 -05:00
|
|
|
sal_uInt32 nSelected = mpImpl->GetCurrRow();
|
2012-01-30 17:44:34 -06:00
|
|
|
PlacePtr pPlace = maPlaces[nSelected];
|
2012-03-27 11:01:07 -05:00
|
|
|
|
2012-01-30 17:44:34 -06:00
|
|
|
mpDlg->OpenURL_Impl( pPlace->GetUrl() );
|
|
|
|
|
|
|
|
if(pPlace->IsEditable())
|
|
|
|
mpDlg->RemovablePlaceSelected();
|
|
|
|
else
|
|
|
|
mpDlg->RemovablePlaceSelected(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-27 11:01:07 -05:00
|
|
|
IMPL_LINK ( PlacesListBox, DoubleClick, void*, EMPTYARG )
|
2012-01-30 17:44:34 -06:00
|
|
|
{
|
2012-03-27 11:01:07 -05:00
|
|
|
sal_uInt16 nSelected = mpImpl->GetCurrRow();
|
2012-01-30 17:44:34 -06:00
|
|
|
PlacePtr pPlace = maPlaces[nSelected];
|
|
|
|
if ( pPlace->IsEditable() == true )
|
|
|
|
{
|
2012-03-27 11:01:07 -05:00
|
|
|
PlaceEditDialog aDlg(mpDlg,pPlace);
|
2012-01-30 17:44:34 -06:00
|
|
|
short aRetCode = aDlg.Execute();
|
|
|
|
switch(aRetCode) {
|
|
|
|
case RET_OK :
|
|
|
|
{
|
|
|
|
pPlace->SetName ( aDlg.GetServerName() );
|
|
|
|
pPlace->SetUrl( aDlg.GetServerUrl() );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RET_NO :
|
|
|
|
{
|
|
|
|
RemovePlace(nSelected);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|