1*2a97ec55SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2a97ec55SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2a97ec55SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2a97ec55SAndrew Rist  * distributed with this work for additional information
6*2a97ec55SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2a97ec55SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2a97ec55SAndrew Rist  * "License"); you may not use this file except in compliance
9*2a97ec55SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2a97ec55SAndrew Rist  *
11*2a97ec55SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2a97ec55SAndrew Rist  *
13*2a97ec55SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2a97ec55SAndrew Rist  * software distributed under the License is distributed on an
15*2a97ec55SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2a97ec55SAndrew Rist  * KIND, either express or implied.  See the License for the
17*2a97ec55SAndrew Rist  * specific language governing permissions and limitations
18*2a97ec55SAndrew Rist  * under the License.
19*2a97ec55SAndrew Rist  *
20*2a97ec55SAndrew Rist  *************************************************************/
21*2a97ec55SAndrew Rist 
22*2a97ec55SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_extensions.hxx"
26cdf0e10cSrcweir #include "fieldmappingpage.hxx"
27cdf0e10cSrcweir #include "fieldmappingimpl.hxx"
28cdf0e10cSrcweir #include "addresssettings.hxx"
29cdf0e10cSrcweir #include "abspilot.hxx"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir //.........................................................................
32cdf0e10cSrcweir namespace abp
33cdf0e10cSrcweir {
34cdf0e10cSrcweir //.........................................................................
35cdf0e10cSrcweir 
36cdf0e10cSrcweir 	//=====================================================================
37cdf0e10cSrcweir 	//= FieldMappingPage
38cdf0e10cSrcweir 	//=====================================================================
39cdf0e10cSrcweir 	//---------------------------------------------------------------------
FieldMappingPage(OAddessBookSourcePilot * _pParent)40cdf0e10cSrcweir 	FieldMappingPage::FieldMappingPage( OAddessBookSourcePilot* _pParent )
41cdf0e10cSrcweir 		:AddressBookSourcePage( _pParent, ModuleRes( RID_PAGE_FIELDMAPPING ) )
42cdf0e10cSrcweir 		,m_aExplanation		( this, ModuleRes( FT_FIELDASSIGMENTEXPL ) )
43cdf0e10cSrcweir 		,m_aInvokeDialog	( this, ModuleRes( PB_INVOKE_FIELDS_DIALOG ) )
44cdf0e10cSrcweir 		,m_aHint			( this, ModuleRes( FT_ASSIGNEDFIELDS ) )
45cdf0e10cSrcweir 	{
46cdf0e10cSrcweir 		FreeResource();
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 		m_aInvokeDialog.SetClickHdl( LINK( this, FieldMappingPage, OnInvokeDialog ) );
49cdf0e10cSrcweir 
50cdf0e10cSrcweir 		// check the size of the InvokeDialog button - some languages are very ... gossipy here ....
51cdf0e10cSrcweir 		// 96349 - 09.01.2002 - fs@openoffice.org
52cdf0e10cSrcweir 		sal_Int32 nTextWidth = m_aInvokeDialog.GetTextWidth( m_aInvokeDialog.GetText() );
53cdf0e10cSrcweir 
54cdf0e10cSrcweir 		sal_Int32 nBorderSpace = m_aInvokeDialog.LogicToPixel( Point( 4, 0 ), MAP_APPFONT ).X();
55cdf0e10cSrcweir 		sal_Int32 nSpace = m_aInvokeDialog.GetOutputSizePixel().Width() - 2 * nBorderSpace;
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 		if ( nSpace < nTextWidth )
58cdf0e10cSrcweir 		{
59cdf0e10cSrcweir 			Size aButtonSize = m_aInvokeDialog.GetSizePixel();
60cdf0e10cSrcweir 			aButtonSize.Width() += nTextWidth - nSpace;
61cdf0e10cSrcweir 			m_aInvokeDialog.SetSizePixel( aButtonSize );
62cdf0e10cSrcweir 		}
63cdf0e10cSrcweir 	}
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 	//---------------------------------------------------------------------
ActivatePage()66cdf0e10cSrcweir 	void FieldMappingPage::ActivatePage()
67cdf0e10cSrcweir 	{
68cdf0e10cSrcweir 		AddressBookSourcePage::ActivatePage();
69cdf0e10cSrcweir 		m_aInvokeDialog.GrabFocus();
70cdf0e10cSrcweir 	}
71cdf0e10cSrcweir 
72cdf0e10cSrcweir 	//---------------------------------------------------------------------
DeactivatePage()73cdf0e10cSrcweir 	void FieldMappingPage::DeactivatePage()
74cdf0e10cSrcweir 	{
75cdf0e10cSrcweir 		AddressBookSourcePage::DeactivatePage();
76cdf0e10cSrcweir 	}
77cdf0e10cSrcweir 
78cdf0e10cSrcweir 	//---------------------------------------------------------------------
initializePage()79cdf0e10cSrcweir 	void FieldMappingPage::initializePage()
80cdf0e10cSrcweir 	{
81cdf0e10cSrcweir 		AddressBookSourcePage::initializePage();
82cdf0e10cSrcweir 		implUpdateHint();
83cdf0e10cSrcweir 	}
84cdf0e10cSrcweir 
85cdf0e10cSrcweir 	//---------------------------------------------------------------------
implUpdateHint()86cdf0e10cSrcweir 	void FieldMappingPage::implUpdateHint()
87cdf0e10cSrcweir 	{
88cdf0e10cSrcweir 		const AddressSettings& rSettings = getSettings();
89cdf0e10cSrcweir 		String sHint;
90cdf0e10cSrcweir 		if ( 0 == rSettings.aFieldMapping.size() )
91cdf0e10cSrcweir 			sHint = String( ModuleRes( RID_STR_NOFIELDSASSIGNED ) );
92cdf0e10cSrcweir 		m_aHint.SetText( sHint );
93cdf0e10cSrcweir 	}
94cdf0e10cSrcweir 
95cdf0e10cSrcweir 	//---------------------------------------------------------------------
96cdf0e10cSrcweir 	IMPL_LINK( FieldMappingPage, OnInvokeDialog, void*, /*NOTINTERESTEDIN*/ )
97cdf0e10cSrcweir 	{
98cdf0e10cSrcweir 		AddressSettings& rSettings = getSettings();
99cdf0e10cSrcweir 
100cdf0e10cSrcweir 		// invoke the dialog doing the mapping
101cdf0e10cSrcweir 		if ( fieldmapping::invokeDialog( getORB(), this, getDialog()->getDataSource().getDataSource(), rSettings ) )
102cdf0e10cSrcweir 		{
103cdf0e10cSrcweir 			if ( rSettings.aFieldMapping.size() )
104cdf0e10cSrcweir 				getDialog()->travelNext();
105cdf0e10cSrcweir 			else
106cdf0e10cSrcweir 				implUpdateHint();
107cdf0e10cSrcweir 		}
108cdf0e10cSrcweir 
109cdf0e10cSrcweir 		return 0L;
110cdf0e10cSrcweir 	}
111cdf0e10cSrcweir 
112cdf0e10cSrcweir //.........................................................................
113cdf0e10cSrcweir }	// namespace abp
114cdf0e10cSrcweir //.........................................................................
115cdf0e10cSrcweir 
116