bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / svx / databaselocationinput.hxx
blob8b84c7fe7f5993912ac9798593df1966d41a2711
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 #ifndef INCLUDED_SVX_DATABASELOCATIONINPUT_HXX
21 #define INCLUDED_SVX_DATABASELOCATIONINPUT_HXX
23 #include <svx/svxdllapi.h>
24 #include <rtl/ustring.hxx>
26 #include <memory>
28 class PushButton;
29 namespace svt { class OFileURLControl; }
30 namespace com::sun::star::uno { class XComponentContext; }
31 namespace com::sun::star::uno { template <typename > class Reference; }
33 namespace svx
37 //= DatabaseLocationInputController
39 class DatabaseLocationInputController_Impl;
40 /** helper class to control controls needed to input a database location
42 If you allow, in your dialog, to save a database document, then you usually
43 have a OFileURLControl for inputting the actual location, and a push button
44 to browse for a location.
46 This helper class controls such two UI elements.
48 class SAL_WARN_UNUSED SVX_DLLPUBLIC DatabaseLocationInputController
50 public:
51 DatabaseLocationInputController(
52 const css::uno::Reference<css::uno::XComponentContext>& _rContext,
53 ::svt::OFileURLControl& _rLocationInput,
54 PushButton& _rBrowseButton
56 ~DatabaseLocationInputController();
58 /** sets the given URL at the input control, after translating it into a system path
60 void setURL( const OUString& _rURL );
62 /** returns the current database location, in form of a URL (not a system path)
64 OUString getURL() const;
66 /** prepares committing the database location entered in the input field
68 Effectively, this method checks whether the file in the location already
69 exists, and if so, it asks the user whether to overwrite it.
71 If the method is called multiple times, this check only happens when the location
72 changed since the last call.
74 bool prepareCommit();
76 private:
77 ::std::unique_ptr< DatabaseLocationInputController_Impl >
78 m_pImpl;
85 #endif // INCLUDED_SVX_DATABASELOCATIONINPUT_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */