Update ooo320-m1
[ooovba.git] / extensions / source / abpilot / tableselectionpage.cxx
blobbb9417ef78bda4e5fc678f01b2cd95c2b4eb1fd3
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: tableselectionpage.cxx,v $
10 * $Revision: 1.10 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_extensions.hxx"
33 #include "tableselectionpage.hxx"
34 #include "abptypes.hxx"
35 #include "addresssettings.hxx"
36 #include "abspilot.hxx"
37 #include <tools/debug.hxx>
39 //.........................................................................
40 namespace abp
42 //.........................................................................
44 //=====================================================================
45 //= TableSelectionPage
46 //=====================================================================
47 //---------------------------------------------------------------------
48 TableSelectionPage::TableSelectionPage( OAddessBookSourcePilot* _pParent )
49 :AddressBookSourcePage(_pParent, ModuleRes(RID_PAGE_TABLESELECTION_AB))
50 ,m_aLabel ( this, ModuleRes( FL_TOOMUCHTABLES ) )
51 ,m_aTableList ( this, ModuleRes( LB_TABLELIST ) )
53 FreeResource();
55 m_aTableList.SetSelectHdl( LINK( this, TableSelectionPage, OnTableSelected ) );
56 m_aTableList.SetDoubleClickHdl( LINK( this, TableSelectionPage, OnTableDoubleClicked ) );
59 //---------------------------------------------------------------------
60 void TableSelectionPage::ActivatePage()
62 AddressBookSourcePage::ActivatePage();
64 m_aTableList.GrabFocus();
67 //---------------------------------------------------------------------
68 void TableSelectionPage::DeactivatePage()
70 AddressBookSourcePage::DeactivatePage();
73 //---------------------------------------------------------------------
74 void TableSelectionPage::initializePage()
76 AddressBookSourcePage::initializePage();
78 const AddressSettings& rSettings = getSettings();
80 m_aTableList.Clear();
82 // get the table names
83 const StringBag& aTableNames = getDialog()->getDataSource().getTableNames();
84 DBG_ASSERT( aTableNames.size() > 1, "TableSelectionPage::initializePage: to be called for more than one table only!");
85 // this page should never bother the user if there is 1 or less tables.
87 // fill the list
88 for ( ConstStringBagIterator aTables = aTableNames.begin();
89 aTables != aTableNames.end();
90 ++aTables
92 m_aTableList.InsertEntry( *aTables );
94 // initially select the proper table
95 m_aTableList.SelectEntry( rSettings.sSelectedTable );
98 //---------------------------------------------------------------------
99 IMPL_LINK( TableSelectionPage, OnTableDoubleClicked, void*, /*NOTINTERESTEDIN*/ )
101 if ( 1 == m_aTableList.GetSelectEntryCount() )
102 getDialog()->travelNext();
104 return 0L;
107 //---------------------------------------------------------------------
108 IMPL_LINK( TableSelectionPage, OnTableSelected, void*, /*NOTINTERESTEDIN*/ )
110 updateDialogTravelUI();
111 return 0L;
114 //---------------------------------------------------------------------
115 sal_Bool TableSelectionPage::commitPage( CommitPageReason _eReason )
117 if (!AddressBookSourcePage::commitPage(_eReason))
118 return sal_False;
120 AddressSettings& rSettings = getSettings();
121 rSettings.sSelectedTable = m_aTableList.GetSelectEntry();
123 return sal_True;
126 //---------------------------------------------------------------------
127 bool TableSelectionPage::canAdvance() const
129 return AddressBookSourcePage::canAdvance()
130 && ( 0 < m_aTableList.GetSelectEntryCount() );
133 //.........................................................................
134 } // namespace abp
135 //.........................................................................