1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "fieldmappingpage.hxx"
21 #include "fieldmappingimpl.hxx"
22 #include "addresssettings.hxx"
23 #include "abspilot.hxx"
24 #include <comphelper/processfactory.hxx>
29 FieldMappingPage::FieldMappingPage( OAddessBookSourcePilot
* _pParent
)
30 : AddressBookSourcePage(_pParent
, "FieldAssignPage",
31 "modules/sabpilot/ui/fieldassignpage.ui")
33 get(m_pInvokeDialog
, "assign");
36 m_pInvokeDialog
->SetClickHdl( LINK( this, FieldMappingPage
, OnInvokeDialog
) );
39 FieldMappingPage::~FieldMappingPage()
44 void FieldMappingPage::dispose()
46 m_pInvokeDialog
.clear();
48 AddressBookSourcePage::dispose();
51 void FieldMappingPage::ActivatePage()
53 AddressBookSourcePage::ActivatePage();
54 m_pInvokeDialog
->GrabFocus();
58 void FieldMappingPage::DeactivatePage()
60 AddressBookSourcePage::DeactivatePage();
64 void FieldMappingPage::initializePage()
66 AddressBookSourcePage::initializePage();
71 void FieldMappingPage::implUpdateHint()
73 const AddressSettings
& rSettings
= getSettings();
75 if ( rSettings
.aFieldMapping
.empty() )
76 sHint
= ModuleRes(RID_STR_NOFIELDSASSIGNED
).toString();
77 m_pHint
->SetText( sHint
);
81 IMPL_LINK_NOARG( FieldMappingPage
, OnInvokeDialog
)
83 AddressSettings
& rSettings
= getSettings();
85 // invoke the dialog doing the mapping
86 if ( fieldmapping::invokeDialog( getORB(), this, getDialog()->getDataSource().getDataSource(), rSettings
) )
88 if ( rSettings
.aFieldMapping
.size() )
89 getDialog()->travelNext();
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */