summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/retypepassdlg.hxx
blob: 4d5b9f48fd8c5e3aa56d51e824bb1d8bfec97119 (plain)
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
/* -*- 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 .
 */

#ifndef INCLUDED_SC_SOURCE_UI_INC_RETYPEPASSDLG_HXX
#define INCLUDED_SC_SOURCE_UI_INC_RETYPEPASSDLG_HXX

#include <vcl/weld.hxx>
#include <tabprotection.hxx>
#include <memory>

class ScDocument;

struct PassFragment
{
    std::unique_ptr<weld::Builder> m_xBuilder;
    std::unique_ptr<weld::Container> m_xSheetsBox;
    std::unique_ptr<weld::Label> m_xName;
    std::unique_ptr<weld::Label> m_xStatus;
    std::unique_ptr<weld::Button> m_xButton;

    PassFragment(weld::Widget* pParent);
};

class ScRetypePassDlg : public weld::GenericDialogController
{
public:
    explicit ScRetypePassDlg(weld::Window* pParent);
    virtual ~ScRetypePassDlg() override;

    virtual short run() override;

    void SetDataFromDocument(const ScDocument& rDoc);
    void SetDesiredHash(ScPasswordHash eHash);

    /** Write the new set of password data to the document instance to
        overwrite the current ones. */
    void WriteNewDataToDocument(ScDocument& rDoc) const;

private:
    void Init();
    void PopulateDialog();
    void SetDocData();
    void SetTableData(size_t nRowPos, SCTAB nTab);

    /** Check the status of all hash values to see if it's okay to enable
        the OK button. */
    void CheckHashStatus();

    void DeleteSheets();

private:
    OUString         maTextNotProtected;
    OUString         maTextNotPassProtected;
    OUString         maTextHashBad;
    OUString         maTextHashGood;

    DECL_LINK(OKHdl, weld::Button&, void);
    DECL_LINK(RetypeBtnHdl, weld::Button&, void);

    struct TableItem
    {
        OUString       maName;
        std::shared_ptr<ScTableProtection> mpProtect;
    };
    ::std::vector<TableItem> maTableItems;

    std::shared_ptr<ScDocProtection> mpDocItem;
    ScPasswordHash      meDesiredHash;

    std::unique_ptr<weld::Button> mxBtnOk;
    std::unique_ptr<weld::Label> mxTextDocStatus;
    std::unique_ptr<weld::Button> mxBtnRetypeDoc;
    std::unique_ptr<weld::ScrolledWindow> mxScrolledWindow;
    std::unique_ptr<weld::Container> mxSheetsBox;
    std::vector<std::unique_ptr<PassFragment>> maSheets;
};

class ScRetypePassInputDlg : public weld::GenericDialogController
{
public:
    ScRetypePassInputDlg() = delete;
    explicit ScRetypePassInputDlg(weld::Window* pParent, ScPassHashProtectable* pProtected);
    virtual ~ScRetypePassInputDlg() override;

    bool IsRemovePassword() const;
    OUString GetNewPassword() const;

private:
    void Init();
    void CheckPasswordInput();

private:
    ScPassHashProtectable* m_pProtected;

    std::unique_ptr<weld::Button> m_xBtnOk;

    std::unique_ptr<weld::RadioButton> m_xBtnRetypePassword;

    std::unique_ptr<weld::Widget> m_xPasswordGrid;
    std::unique_ptr<weld::Entry> m_xPassword1Edit;
    std::unique_ptr<weld::Entry> m_xPassword2Edit;

    std::unique_ptr<weld::CheckButton> m_xBtnMatchOldPass;

    std::unique_ptr<weld::RadioButton> m_xBtnRemovePassword;

    DECL_LINK( OKHdl, weld::Button&, void );
    DECL_LINK( RadioBtnHdl, weld::ToggleButton&, void );
    DECL_LINK( CheckBoxHdl, weld::ToggleButton&, void );
    DECL_LINK( PasswordModifyHdl, weld::Entry&, void );
};

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */