Avoid potential negative array index access to cached text.
[LibreOffice.git] / extensions / source / abpilot / fieldmappingpage.cxx
blob1652723fda990988085779bcca08bd2f2426d1b2
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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"
26 namespace abp
28 FieldMappingPage::FieldMappingPage(weld::Container* pPage, OAddressBookSourcePilot* pController)
29 : AddressBookSourcePage(pPage, pController, "modules/sabpilot/ui/fieldassignpage.ui", "FieldAssignPage")
30 , m_xInvokeDialog(m_xBuilder->weld_button("assign"))
31 , m_xHint(m_xBuilder->weld_label("hint"))
33 m_xInvokeDialog->connect_clicked(LINK(this, FieldMappingPage, OnInvokeDialog));
36 FieldMappingPage::~FieldMappingPage()
40 void FieldMappingPage::Activate()
42 AddressBookSourcePage::Activate();
43 m_xInvokeDialog->grab_focus();
46 void FieldMappingPage::initializePage()
48 AddressBookSourcePage::initializePage();
49 implUpdateHint();
52 void FieldMappingPage::implUpdateHint()
54 const AddressSettings& rSettings = getSettings();
55 OUString sHint;
56 if ( rSettings.aFieldMapping.empty() )
57 sHint = compmodule::ModuleRes(RID_STR_NOFIELDSASSIGNED);
58 m_xHint->set_label(sHint);
61 IMPL_LINK_NOARG( FieldMappingPage, OnInvokeDialog, weld::Button&, void )
63 AddressSettings& rSettings = getSettings();
65 // invoke the dialog doing the mapping
66 if ( fieldmapping::invokeDialog( getORB(), getDialog()->getDialog(), getDialog()->getDataSource().getDataSource(), rSettings ) )
68 if ( !rSettings.aFieldMapping.empty() )
69 getDialog()->travelNext();
70 else
71 implUpdateHint();
75 } // namespace abp
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */