summaryrefslogtreecommitdiff
path: root/svtools/source/dialogs/ServerDetailsControls.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/dialogs/ServerDetailsControls.hxx')
-rw-r--r--svtools/source/dialogs/ServerDetailsControls.hxx142
1 files changed, 142 insertions, 0 deletions
diff --git a/svtools/source/dialogs/ServerDetailsControls.hxx b/svtools/source/dialogs/ServerDetailsControls.hxx
new file mode 100644
index 000000000000..3bc5fccc530a
--- /dev/null
+++ b/svtools/source/dialogs/ServerDetailsControls.hxx
@@ -0,0 +1,142 @@
+/* -*- 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/.
+ */
+#ifndef INCLUDED_SVTOOLS_SERVERDETAILSCONTROLS_HXX
+#define INCLUDED_SVTOOLS_SERVERDETAILSCONTROLS_HXX
+
+#include <vector>
+
+#include <com/sun/star/uno/Reference.hxx>
+
+#include <tools/link.hxx>
+#include <tools/urlobj.hxx>
+
+namespace com :: sun :: star :: ucb { class XCommandEnvironment; }
+namespace com :: sun :: star :: awt { class XWindow; }
+
+namespace weld {
+ class Button;
+ class ComboBox;
+ class Entry;
+ class SpinButton;
+ class ToggleButton;
+}
+
+class PlaceEditDialog;
+
+class DetailsContainer
+{
+ protected:
+ PlaceEditDialog* m_pDialog;
+ Link<DetailsContainer*,void> m_aChangeHdl;
+
+ public:
+ DetailsContainer(PlaceEditDialog* pDialog);
+ virtual ~DetailsContainer( );
+
+ void setChangeHdl( const Link<DetailsContainer*,void>& rLink ) { m_aChangeHdl = rLink; }
+
+ virtual void set_visible( bool bShow );
+ virtual INetURLObject getUrl( );
+
+ /** Try to split the URL in the controls of that container.
+
+ \param sUrl the URL to split
+ \return true if the split worked, false otherwise.
+ */
+ virtual bool setUrl( const INetURLObject& rUrl );
+
+ virtual void setUsername( const OUString& /*rUsername*/ ) { };
+ virtual void setPassword( const OUString& ) { };
+
+ virtual bool enableUserCredentials( ) { return true; };
+
+ protected:
+ void notifyChange( );
+ DECL_LINK(ValueChangeHdl, weld::Entry&, void);
+ DECL_STATIC_LINK(DetailsContainer, FormatPortHdl, weld::SpinButton&, void);
+};
+
+class HostDetailsContainer : public DetailsContainer
+{
+ private:
+ sal_uInt16 const m_nDefaultPort;
+ OUString m_sScheme;
+ OUString m_sHost;
+
+ public:
+ HostDetailsContainer(PlaceEditDialog* pDialog, sal_uInt16 nPort, const OUString& sScheme);
+
+ virtual void set_visible( bool bShow ) override;
+ virtual INetURLObject getUrl( ) override;
+ virtual bool setUrl( const INetURLObject& rUrl ) override;
+
+ protected:
+ void setScheme( const OUString& sScheme ) { m_sScheme = sScheme; }
+
+ /** Verifies that the scheme split from the URL can be handled by
+ the container and set the proper controls accordingly if needed.
+ */
+ virtual bool verifyScheme( const OUString& rScheme );
+};
+
+class DavDetailsContainer final : public HostDetailsContainer
+{
+ public:
+ DavDetailsContainer(PlaceEditDialog* pDialog);
+
+ virtual void set_visible( bool bShow ) override;
+ virtual bool enableUserCredentials( ) override { return false; };
+
+ private:
+ virtual bool verifyScheme( const OUString& rScheme ) override;
+
+ DECL_LINK(ToggledDavsHdl, weld::ToggleButton&, void);
+};
+
+class SmbDetailsContainer final : public DetailsContainer
+{
+ private:
+ OUString m_sHost;
+
+ public:
+ SmbDetailsContainer(PlaceEditDialog* pDialog);
+
+ virtual INetURLObject getUrl( ) override;
+ virtual bool setUrl( const INetURLObject& rUrl ) override;
+ virtual void set_visible( bool bShow ) override;
+};
+
+class CmisDetailsContainer final : public DetailsContainer
+{
+ private:
+ OUString m_sUsername;
+ OUString m_sPassword;
+ css::uno::Reference< css::ucb::XCommandEnvironment > m_xCmdEnv;
+ std::vector< OUString > m_aRepoIds;
+ OUString m_sRepoId;
+ OUString m_sBinding;
+ css::uno::Reference< css::awt::XWindow > m_xParentDialog;
+
+ public:
+ CmisDetailsContainer(PlaceEditDialog* pDialog, OUString const & sBinding);
+
+ virtual void set_visible( bool bShow ) override;
+ virtual INetURLObject getUrl( ) override;
+ virtual bool setUrl( const INetURLObject& rUrl ) override;
+ virtual void setUsername( const OUString& rUsername ) override;
+ virtual void setPassword( const OUString& rPass ) override;
+
+ private:
+ void selectRepository( );
+ DECL_LINK ( RefreshReposHdl, weld::Button&, void );
+ DECL_LINK ( SelectRepoHdl, weld::ComboBox&, void );
+};
+
+#endif
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */