1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "abpfinalpage.hxx"
#include "addresssettings.hxx"
#include "abspilot.hxx"
#include <tools/urlobj.hxx>
#include <unotools/ucbhelper.hxx>
#include <unotools/pathoptions.hxx>
#include <svl/filenotation.hxx>
#include <sfx2/docfilt.hxx>
#include <vcl/msgbox.hxx>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
namespace abp
{
using namespace ::svt;
using namespace ::utl;
const SfxFilter* lcl_getBaseFilter()
{
const SfxFilter* pFilter = SfxFilter::GetFilterByName(OUString("StarOffice XML (Base)"));
OSL_ENSURE(pFilter,"Filter: StarOffice XML (Base) could not be found!");
return pFilter;
}
//= FinalPage
FinalPage::FinalPage( OAddessBookSourcePilot* _pParent )
: AddressBookSourcePage(_pParent, "DataSourcePage",
"modules/sabpilot/ui/datasourcepage.ui")
{
get(m_pLocation, "location");
get(m_pBrowse, "browse");
get(m_pRegisterName, "available");
get(m_pNameLabel, "nameft");
get(m_pName, "name");
get(m_pDuplicateNameError, "warning");
m_pLocationController = new ::svx::DatabaseLocationInputController(_pParent->getORB(),
*m_pLocation, *m_pBrowse);
m_pName->SetModifyHdl( LINK(this, FinalPage, OnNameModified) );
m_pLocation->SetModifyHdl( LINK(this, FinalPage, OnNameModified) );
m_pRegisterName->SetClickHdl( LINK( this, FinalPage, OnRegister ) );
m_pRegisterName->Check(true);
}
FinalPage::~FinalPage()
{
delete m_pLocationController;
}
bool FinalPage::isValidName() const
{
OUString sCurrentName(m_pName->GetText());
if (sCurrentName.isEmpty())
// the name must not be empty
return false;
if ( m_aInvalidDataSourceNames.find( sCurrentName ) != m_aInvalidDataSourceNames.end() )
// there already is a data source with this name
return false;
return true;
}
void FinalPage::setFields()
{
AddressSettings& rSettings = getSettings();
INetURLObject aURL( rSettings.sDataSourceName );
if( aURL.GetProtocol() == INET_PROT_NOT_VALID )
{
OUString sPath = SvtPathOptions().GetWorkPath();
sPath += "/";
sPath += rSettings.sDataSourceName;
const SfxFilter* pFilter = lcl_getBaseFilter();
if ( pFilter )
{
OUString sExt = pFilter->GetDefaultExtension();
sPath += sExt.getToken(1,'*');
}
aURL.SetURL(sPath);
}
OSL_ENSURE( aURL.GetProtocol() != INET_PROT_NOT_VALID ,"No valid file name!");
rSettings.sDataSourceName = aURL.GetMainURL( INetURLObject::NO_DECODE );
m_pLocationController->setURL( rSettings.sDataSourceName );
OUString sName = aURL.getName( );
sal_Int32 nPos = sName.indexOf(aURL.GetExtension());
if ( nPos != -1 )
{
sName = sName.replaceAt(nPos-1, 4, "");
}
m_pName->SetText(sName);
OnRegister(m_pRegisterName);
}
void FinalPage::initializePage()
{
AddressBookSourcePage::initializePage();
setFields();
}
bool FinalPage::commitPage( ::svt::WizardTypes::CommitPageReason _eReason )
{
if (!AddressBookSourcePage::commitPage(_eReason))
return false;
if ( ( ::svt::WizardTypes::eTravelBackward != _eReason )
&& ( !m_pLocationController->prepareCommit() )
)
return false;
AddressSettings& rSettings = getSettings();
rSettings.sDataSourceName = m_pLocationController->getURL();
rSettings.bRegisterDataSource = m_pRegisterName->IsChecked();
if ( rSettings.bRegisterDataSource )
rSettings.sRegisteredDataSourceName = m_pName->GetText();
return true;
}
void FinalPage::ActivatePage()
{
AddressBookSourcePage::ActivatePage();
// get the names of all data sources
ODataSourceContext aContext( getORB() );
aContext.getDataSourceNames( m_aInvalidDataSourceNames );
// give the name edit the focus
m_pLocation->GrabFocus();
// default the finish button
getDialog()->defaultButton( WZB_FINISH );
}
void FinalPage::DeactivatePage()
{
AddressBookSourcePage::DeactivatePage();
// default the "next" button, again
getDialog()->defaultButton( WZB_NEXT );
// disable the finish button
getDialog()->enableButtons( WZB_FINISH, false );
}
bool FinalPage::canAdvance() const
{
return false;
}
void FinalPage::implCheckName()
{
bool bValidName = isValidName();
bool bEmptyName = m_pName->GetText().isEmpty();
bool bEmptyLocation = m_pLocation->GetText().isEmpty();
// enable or disable the finish button
getDialog()->enableButtons( WZB_FINISH, !bEmptyLocation && (!m_pRegisterName->IsChecked() || bValidName) );
// show the error message for an invalid name
m_pDuplicateNameError->Show( !bValidName && !bEmptyName );
}
IMPL_LINK( FinalPage, OnNameModified, Edit*, /**/ )
{
implCheckName();
return 0L;
}
IMPL_LINK_NOARG(FinalPage, OnRegister)
{
bool bEnable = m_pRegisterName->IsChecked();
m_pNameLabel->Enable(bEnable);
m_pName->Enable(bEnable);
implCheckName();
return 0L;
}
} // namespace abp
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|