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
|
/* -*- 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/.
*/
#pragma once
#include <config_options.h>
#include <svtools/svtdllapi.h>
#include <vcl/weld.hxx>
#include <memory>
#include <vector>
class Place;
class DetailsContainer;
class UNLESS_MERGELIBS(SVT_DLLPUBLIC) PlaceEditDialog final : public weld::GenericDialogController
{
private:
std::shared_ptr<DetailsContainer> m_xCurrentDetails;
/** Vector holding the details UI control for each server type.
The elements in this vector need to match the order in the type listbox, e.g.
the m_aDetailsContainer[0] will be shown for the type corresponding to entry 0
in the listbox.
*/
std::vector<std::shared_ptr<DetailsContainer>> m_aDetailsContainers;
sal_Int32 m_nCurrentType;
bool m_bLabelChanged;
bool m_bShowPassword;
public:
std::unique_ptr<weld::Entry> m_xEDServerName;
std::unique_ptr<weld::ComboBox> m_xLBServerType;
std::unique_ptr<weld::Entry> m_xEDUsername;
std::unique_ptr<weld::Label> m_xFTUsernameLabel;
std::unique_ptr<weld::Button> m_xBTOk;
std::unique_ptr<weld::Button> m_xBTDelete;
std::unique_ptr<weld::Button> m_xBTRepoRefresh;
std::unique_ptr<weld::CheckButton> m_xCBPassword;
std::unique_ptr<weld::Entry> m_xEDPassword;
std::unique_ptr<weld::Label> m_xFTPasswordLabel;
std::unique_ptr<weld::Widget> m_xTypeGrid;
std::unique_ptr<weld::Widget> m_xRepositoryBox;
std::unique_ptr<weld::Label> m_xFTRepository;
std::unique_ptr<weld::ComboBox> m_xLBRepository;
std::unique_ptr<weld::Entry> m_xEDShare;
std::unique_ptr<weld::Label> m_xFTShare;
std::unique_ptr<weld::Widget> m_xDetailsGrid;
std::unique_ptr<weld::Widget> m_xHostBox;
std::unique_ptr<weld::Entry> m_xEDHost;
std::unique_ptr<weld::Label> m_xFTHost;
std::unique_ptr<weld::SpinButton> m_xEDPort;
std::unique_ptr<weld::Label> m_xFTPort;
std::unique_ptr<weld::Entry> m_xEDRoot;
std::unique_ptr<weld::Label> m_xFTRoot;
std::unique_ptr<weld::CheckButton> m_xCBDavs;
public:
PlaceEditDialog(weld::Window* pParent);
PlaceEditDialog(weld::Window* pParent, const std::shared_ptr<Place>& rPlace);
virtual ~PlaceEditDialog() override;
// Returns a place instance with given information
std::shared_ptr<Place> GetPlace();
OUString GetServerName() const { return m_xEDServerName->get_text(); }
OUString GetServerUrl();
OUString GetPassword() const { return m_xEDPassword->get_text(); };
OUString GetUser() const { return m_xEDUsername->get_text(); };
bool IsRememberChecked() const { return m_xCBPassword->get_active(); }
void ShowPasswordControl() { m_bShowPassword = true; }
private:
void InitDetails();
DECL_DLLPRIVATE_LINK(OKHdl, weld::Button&, void);
DECL_DLLPRIVATE_LINK(DelHdl, weld::Button&, void);
DECL_DLLPRIVATE_LINK(EditHdl, DetailsContainer*, void);
DECL_DLLPRIVATE_LINK(ModifyHdl, weld::Entry&, void);
void SelectType(bool bSkipSeparator);
DECL_DLLPRIVATE_LINK(SelectTypeHdl, weld::ComboBox&, void);
DECL_DLLPRIVATE_LINK(EditLabelHdl, weld::Entry&, void);
DECL_DLLPRIVATE_LINK(EditUsernameHdl, weld::Entry&, void);
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|