2001-08-01 05:04:49 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* $RCSfile: tableselectionpage.cxx,v $
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2007-04-26 02:04:46 -05:00
|
|
|
* $Revision: 1.7 $
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2007-04-26 02:04:46 -05:00
|
|
|
* last change: $Author: rt $ $Date: 2007-04-26 08:04:46 $
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
2005-09-08 13:09:56 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2001-08-01 05:04:49 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 06:53:38 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_extensions.hxx"
|
|
|
|
|
2001-08-01 05:04:49 -05:00
|
|
|
#ifndef EXTENSIONS_ABP_TABLESELECTIONPAGE_HXX
|
|
|
|
#include "tableselectionpage.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef EXTENSIONS_ABP_ABPTYPES_HXX
|
|
|
|
#include "abptypes.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef EXTENSIONS_ABP_ADDRESSSETTINGS_HXX
|
|
|
|
#include "addresssettings.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef EXTENSIONS_ABSPILOT_HXX
|
|
|
|
#include "abspilot.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _TOOLS_DEBUG_HXX
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
namespace abp
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= TableSelectionPage
|
|
|
|
//=====================================================================
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
TableSelectionPage::TableSelectionPage( OAddessBookSourcePilot* _pParent )
|
2006-12-01 10:34:54 -06:00
|
|
|
:AddressBookSourcePage(_pParent, ModuleRes(RID_PAGE_TABLESELECTION_AB))
|
2007-04-26 02:04:46 -05:00
|
|
|
,m_aLabel ( this, ModuleRes( FL_TOOMUCHTABLES ) )
|
|
|
|
,m_aTableList ( this, ModuleRes( LB_TABLELIST ) )
|
2001-08-01 05:04:49 -05:00
|
|
|
{
|
|
|
|
FreeResource();
|
|
|
|
|
|
|
|
m_aTableList.SetSelectHdl( LINK( this, TableSelectionPage, OnTableSelected ) );
|
|
|
|
m_aTableList.SetDoubleClickHdl( LINK( this, TableSelectionPage, OnTableDoubleClicked ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void TableSelectionPage::ActivatePage()
|
|
|
|
{
|
|
|
|
AddressBookSourcePage::ActivatePage();
|
|
|
|
|
|
|
|
m_aTableList.GrabFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void TableSelectionPage::DeactivatePage()
|
|
|
|
{
|
|
|
|
AddressBookSourcePage::DeactivatePage();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void TableSelectionPage::initializePage()
|
|
|
|
{
|
|
|
|
AddressBookSourcePage::initializePage();
|
|
|
|
|
|
|
|
const AddressSettings& rSettings = getSettings();
|
|
|
|
|
|
|
|
m_aTableList.Clear();
|
|
|
|
|
|
|
|
// get the table names
|
|
|
|
const StringBag& aTableNames = getDialog()->getDataSource().getTableNames();
|
|
|
|
DBG_ASSERT( aTableNames.size() > 1, "TableSelectionPage::initializePage: to be called for more than one table only!");
|
|
|
|
// this page should never bother the user if there is 1 or less tables.
|
|
|
|
|
|
|
|
// fill the list
|
|
|
|
for ( ConstStringBagIterator aTables = aTableNames.begin();
|
|
|
|
aTables != aTableNames.end();
|
|
|
|
++aTables
|
|
|
|
)
|
|
|
|
m_aTableList.InsertEntry( *aTables );
|
|
|
|
|
|
|
|
// initially select the proper table
|
|
|
|
m_aTableList.SelectEntry( rSettings.sSelectedTable );
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
IMPL_LINK( TableSelectionPage, OnTableDoubleClicked, void*, NOTINTERESTEDIN )
|
|
|
|
{
|
|
|
|
if ( 1 == m_aTableList.GetSelectEntryCount() )
|
|
|
|
getDialog()->travelNext();
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
IMPL_LINK( TableSelectionPage, OnTableSelected, void*, NOTINTERESTEDIN )
|
|
|
|
{
|
|
|
|
implCheckNextButton();
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
sal_Bool TableSelectionPage::commitPage(COMMIT_REASON _eReason)
|
|
|
|
{
|
|
|
|
if (!AddressBookSourcePage::commitPage(_eReason))
|
|
|
|
return sal_False;
|
|
|
|
|
|
|
|
AddressSettings& rSettings = getSettings();
|
|
|
|
rSettings.sSelectedTable = m_aTableList.GetSelectEntry();
|
|
|
|
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
sal_Bool TableSelectionPage::determineNextButtonState()
|
|
|
|
{
|
|
|
|
return AddressBookSourcePage::determineNextButtonState()
|
|
|
|
&& ( 0 < m_aTableList.GetSelectEntryCount() );
|
|
|
|
}
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace abp
|
|
|
|
//.........................................................................
|
|
|
|
|