LibreOffice Module svx (master) 1
databaselocationinput.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20
22#include <svx/dialmgr.hxx>
23
24#include <svx/strings.hrc>
25
26#include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
27#include <com/sun/star/container/XNameAccess.hpp>
28#include <com/sun/star/uno/XComponentContext.hpp>
29
31#include <rtl/ustrbuf.hxx>
33#include <svl/filenotation.hxx>
34#include <svtools/inettbc.hxx>
38#include <vcl/svapp.hxx>
39#include <vcl/weld.hxx>
40
41namespace svx
42{
43 using ::com::sun::star::uno::Sequence;
44 using ::com::sun::star::uno::Reference;
45 using ::com::sun::star::uno::XComponentContext;
46 using ::com::sun::star::container::XNameAccess;
47 using ::com::sun::star::uno::UNO_QUERY_THROW;
48 using ::com::sun::star::uno::Exception;
49
50 namespace TemplateDescription = ::com::sun::star::ui::dialogs::TemplateDescription;
51
53 {
54 public:
56 const Reference<XComponentContext>& _rContext,
57 SvtURLBox& _rLocationInput,
58 weld::Button& _rBrowseButton,
59 weld::Window& _rDialog
60 );
61
62 bool prepareCommit();
63 void setURL( const OUString& _rURL );
64 OUString getURL() const;
65
66 private:
69 OUString impl_getCurrentURL() const;
70
71 DECL_LINK( OnButtonAction, weld::Button&, void );
72
73 private:
74 const Reference<XComponentContext> m_xContext;
77 Sequence< OUString > m_aFilterExtensions;
80 };
81
83 SvtURLBox& _rLocationInput, weld::Button& _rBrowseButton, weld::Window& _rDialog)
84 :m_xContext( _rContext )
85 ,m_rLocationInput( _rLocationInput )
86 ,m_rDialog( _rDialog )
87 ,m_bNeedExistenceCheck( true )
88 {
90
91 // forward the allowed extensions to the input control
92 OUStringBuffer aExtensionList;
93 for ( auto const & extension : std::as_const(m_aFilterExtensions) )
94 {
95 aExtensionList.append( extension + ";" );
96 }
97 m_rLocationInput.SetFilter( aExtensionList.makeStringAndClear() );
98 _rBrowseButton.connect_clicked(LINK(this, DatabaseLocationInputController_Impl, OnButtonAction));
99 }
100
102 {
103 OUString sURL( impl_getCurrentURL() );
104 if ( sURL.isEmpty() )
105 return false;
106
107 // check if the name exists
109 {
110 if ( ::utl::UCBContentHelper::Exists( sURL ) )
111 {
112 std::unique_ptr<weld::MessageDialog> xQueryBox(Application::CreateMessageDialog(m_rLocationInput.getWidget(),
113 VclMessageType::Question, VclButtonsType::YesNo,
114 SvxResId(RID_STR_ALREADYEXISTOVERWRITE)));
115 if (xQueryBox->run() != RET_YES)
116 return false;
117 }
118 }
119
120 return true;
121 }
122
124 {
125 ::svt::OFileNotation aTransformer( _rURL );
127 }
128
130 {
131 return impl_getCurrentURL();
132 }
133
135 {
136 try
137 {
138 // get the name of the default filter for database documents
142 "/org.openoffice.Setup/Office/Factories/com.sun.star.sdb.OfficeDatabaseDocument"
143 ) );
144 OUString sDatabaseFilter;
145 OSL_VERIFY( aConfig.getNodeValue( "ooSetupFactoryActualFilter" ) >>= sDatabaseFilter );
146
147 // get the type this filter is responsible for
148 Reference< XNameAccess > xFilterFactory(
149 m_xContext->getServiceManager()->createInstanceWithContext("com.sun.star.document.FilterFactory", m_xContext),
150 UNO_QUERY_THROW );
151 ::comphelper::NamedValueCollection aFilterProperties( xFilterFactory->getByName( sDatabaseFilter ) );
152 OUString sDocumentType = aFilterProperties.getOrDefault( "Type", OUString() );
153
154 // get the extension(s) for this type
155 Reference< XNameAccess > xTypeDetection(
156 m_xContext->getServiceManager()->createInstanceWithContext("com.sun.star.document.TypeDetection", m_xContext),
157 UNO_QUERY_THROW );
158
159 ::comphelper::NamedValueCollection aTypeProperties( xTypeDetection->getByName( sDocumentType ) );
160 m_aFilterExtensions = aTypeProperties.getOrDefault( "Extensions", m_aFilterExtensions );
161 m_sFilterUIName = aTypeProperties.getOrDefault( "UIName", m_sFilterUIName );
162 }
163 catch( const Exception& )
164 {
166 }
167
168 // ensure we have at least one extension
169 OSL_ENSURE( m_aFilterExtensions.hasElements(),
170 "DatabaseLocationInputController_Impl::impl_initFilterProperties_nothrow: unable to determine the file extension(s)!" );
171 if ( !m_aFilterExtensions.hasElements() )
172 {
173 m_aFilterExtensions = { "*.odb" };
174 }
175 }
176
178 {
179 impl_onBrowseButtonClicked();
180 }
181
183 {
184 OUString sCurrentFile( m_rLocationInput.get_active_text() );
185 if ( !sCurrentFile.isEmpty() )
186 {
187 ::svt::OFileNotation aCurrentFile( sCurrentFile );
188 sCurrentFile = aCurrentFile.get( ::svt::OFileNotation::N_URL );
189 }
190 return sCurrentFile;
191 }
192
194 {
196 TemplateDescription::FILESAVE_AUTOEXTENSION,
197 FileDialogFlags::NONE,
198 &m_rDialog
199 );
201
202 aFileDlg.AddFilter( m_sFilterUIName, "*." + m_aFilterExtensions[0] );
204
205 if ( aFileDlg.Execute() == ERRCODE_NONE )
206 {
207 INetURLObject aURL( aFileDlg.GetPath() );
208 if( aURL.GetProtocol() != INetProtocol::NotValid )
209 {
213 // the dialog already checked for the file's existence, so we don't need to, again
214 m_bNeedExistenceCheck = false;
215 }
216 }
217 }
218
219 DatabaseLocationInputController::DatabaseLocationInputController( const Reference<XComponentContext>& _rContext,
220 SvtURLBox& _rLocationInput, weld::Button& _rBrowseButton, weld::Window& _rDialog )
221 :m_pImpl( new DatabaseLocationInputController_Impl( _rContext, _rLocationInput, _rBrowseButton, _rDialog ) )
222 {
223 }
224
226 {
227 }
228
230 {
231 return m_pImpl->prepareCommit();
232 }
233
234 void DatabaseLocationInputController::setURL( const OUString& _rURL )
235 {
236 m_pImpl->setURL( _rURL );
237 }
238
240 {
241 return m_pImpl->getURL();
242 }
243}
244
245/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
::std::unique_ptr< XmlIdRegistry_Impl > m_pImpl
Reference< XComponentContext > m_xContext
static weld::MessageDialog * CreateMessageDialog(weld::Widget *pParent, VclMessageType eMessageType, VclButtonsType eButtonType, const OUString &rPrimaryMessage, const ILibreOfficeKitNotifier *pNotifier=nullptr)
void set_entry_text(const OUString &rStr)
weld::ComboBox * getWidget()
void trigger_changed()
OUString get_active_text() const
void SetFilter(std::u16string_view _sFilter)
VALUE_TYPE getOrDefault(const OUString &_rValueName, const VALUE_TYPE &_rDefault) const
OUString GetPath() const
void AddFilter(const OUString &rFilterName, const OUString &rExtension)
void SetDisplayDirectory(const OUString &rPath)
void SetCurrentFilter(const OUString &rFilter)
OUString get(NOTATION _eOutputNotation) const
DECL_LINK(OnButtonAction, weld::Button &, void)
DatabaseLocationInputController_Impl(const Reference< XComponentContext > &_rContext, SvtURLBox &_rLocationInput, weld::Button &_rBrowseButton, weld::Window &_rDialog)
const Reference< XComponentContext > m_xContext
void setURL(const OUString &_rURL)
sets the given URL at the input control, after translating it into a system path
DatabaseLocationInputController(const css::uno::Reference< css::uno::XComponentContext > &_rContext, SvtURLBox &_rLocationInput, weld::Button &_rBrowseButton, weld::Window &_rDialog)
bool prepareCommit()
prepares committing the database location entered in the input field
OUString getURL() const
returns the current database location, in form of a URL (not a system path)
::std::unique_ptr< DatabaseLocationInputController_Impl > m_pImpl
css::uno::Any getNodeValue(const OUString &_rPath) const noexcept
static OConfigurationTreeRoot createWithComponentContext(const css::uno::Reference< css::uno::XComponentContext > &_rxContext, const OUString &_rPath, sal_Int32 _nDepth=-1, CREATION_MODE _eMode=CM_UPDATABLE)
void connect_clicked(const Link< Button &, void > &rLink)
#define DBG_UNHANDLED_EXCEPTION(...)
OUString SvxResId(TranslateId aId)
Definition: dialmgr.cxx:24
URL aURL
#define ERRCODE_NONE
@ Exception
IMPL_LINK_NOARG(SuggestionDisplay, SelectSuggestionValueSetHdl, ValueSet *, void)
RET_YES