Added the Registry class + added ShellNotification function.
[MUtilities.git] / include / MUtils / Registry.h
blobcf1d5ee1c89a280bd278e492e24e999875987ec6
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 //MUtils
25 #include <MUtils/Global.h>
27 ///////////////////////////////////////////////////////////////////////////////
29 namespace MUtils
31 namespace Registry
33 //Regsitry root
34 typedef enum
36 root_classes = 0,
37 root_user = 1,
38 root_machine = 2,
40 reg_root_t;
42 //Forward declaration
43 namespace Internal
45 class RegistryKeyPrivate;
48 //Registry key class
49 class MUTILS_API RegistryKey
51 public:
52 RegistryKey(const int &rootKey, const QString &keyName, const bool &readOnly);
53 ~RegistryKey(void);
55 inline bool isOpen(void);
57 bool value_write(const QString &valueName, const quint32 &value);
58 bool value_write(const QString &valueName, const QString &value);
60 bool value_read(const QString &valueName, quint32 &value) const;
61 bool value_read(const QString &valueName, QString &value) const;
63 private:
64 Internal::RegistryKeyPrivate *const p;
67 //Regsitry functions
68 MUTILS_API bool reg_value_write(const int &rootKey, const QString &keyName, const QString &valueName, const quint32 &value);
69 MUTILS_API bool reg_value_write(const int &rootKey, const QString &keyName, const QString &valueName, const QString &value);
70 MUTILS_API bool reg_value_read (const int &rootKey, const QString &keyName, const QString &valueName, quint32 &value);
71 MUTILS_API bool reg_value_read (const int &rootKey, const QString &keyName, const QString &valueName, QString &value);
72 MUTILS_API bool reg_key_delete (const int &rootKey, const QString &keyName);
76 ///////////////////////////////////////////////////////////////////////////////