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 #ifndef INCLUDED_UNOTOOLS_USEROPTIONS_HXX
20 #define INCLUDED_UNOTOOLS_USEROPTIONS_HXX
21 
22 #include <unotools/unotoolsdllapi.h>
23 #include <rtl/ustring.hxx>
24 #include <unotools/options.hxx>
25 #include <memory>
26 
27 namespace osl { class Mutex; }
28 
29 // define ----------------------------------------------------------------
30 enum class UserOptToken
31 {
32     City               = 0,
33     Company            = 1,
34     Country            = 2,
35     Email              = 3,
36     Fax                = 4,
37     FirstName          = 5,
38     LastName           = 6,
39     Position           = 7,
40     State              = 8,
41     Street             = 9,
42     TelephoneHome      = 10,
43     TelephoneWork      = 11,
44     Title              = 12,
45     ID                 = 13,
46     Zip                = 14,
47     FathersName        = 15,
48     Apartment          = 16,
49     SigningKey         = 17,
50     EncryptionKey      = 18,
51     EncryptToSelf      = 19,
52     LAST               = EncryptToSelf,
53 };
54 
55 // class SvtUserOptions --------------------------------------------------
56 
57 class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtUserOptions final : public utl::detail::Options
58 {
59 public:
60     SvtUserOptions ();
61     virtual ~SvtUserOptions () override;
62 
63     static osl::Mutex& GetInitMutex ();
64 
65     // get the address token
66     OUString GetCompany        () const;
67     OUString GetFirstName      () const;
68     OUString GetLastName       () const;
69     OUString GetID             () const;
70     OUString GetStreet         () const;
71     OUString GetCity           () const;
72     OUString GetState          () const;
73     OUString GetZip            () const;
74     OUString GetCountry        () const;
75     OUString GetPosition       () const;
76     OUString GetTitle          () const;
77     OUString GetTelephoneHome  () const;
78     OUString GetTelephoneWork  () const;
79     OUString GetFax            () const;
80     OUString GetEmail          () const;
81     OUString GetSigningKey     () const;
82     OUString GetEncryptionKey  () const;
83     bool GetEncryptToSelf      () const;
84 
85     OUString GetFullName       () const;
86 
87     bool      IsTokenReadonly (UserOptToken nToken) const;
88     OUString  GetToken (UserOptToken nToken) const;
89     void      SetToken (UserOptToken nToken, OUString const& rNewToken);
90     void      SetBoolValue (UserOptToken nToken, bool bNewValue);
91 
92 private:
93     class SAL_DLLPRIVATE Impl;
94     std::shared_ptr<Impl> xImpl;
95     static std::weak_ptr<Impl> xSharedImpl;
96 private:
97     class SAL_DLLPRIVATE ChangeListener;
98 };
99 
100 #endif // INCLUDED_UNOTOOLS_USEROPTIONS_HXX
101 
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
103