File: style_selector.cpp

package info (click to toggle)
sight 25.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 42,184 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (167 lines) | stat: -rw-r--r-- 4,718 bytes parent folder | download | duplicates (2)
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/************************************************************************
 *
 * Copyright (C) 2020-2023 IRCAD France
 * Copyright (C) 2020 IHU Strasbourg
 *
 * This file is part of Sight.
 *
 * Sight is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Sight is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sight. If not, see <https://www.gnu.org/licenses/>.
 *
 ***********************************************************************/

#include "module/ui/qt/style_selector.hpp"

#include <core/com/slots.hxx>
#include <core/macros.hpp>
#include <core/runtime/path.hpp>

#include <service/macros.hpp>

#include <ui/__/preferences.hpp>

#include <QApplication>
#include <QFile>
#include <QResource>
#include <QTextStream>

#include <algorithm>
#include <filesystem>

namespace sight::module::ui::qt
{

static const core::com::slots::key_t UPDATE_FROM_PREFS_SLOT = "update_from_preferences";

//-----------------------------------------------------------------------------

style_selector::style_selector() noexcept
{
    new_slot(UPDATE_FROM_PREFS_SLOT, &style_selector::update_from_prefs, this);
}

//-----------------------------------------------------------------------------

style_selector::~style_selector() noexcept =
    default;

//-----------------------------------------------------------------------------

void style_selector::configuring()
{
}

//-----------------------------------------------------------------------------

void style_selector::starting()
{
    m_style_map["DEFAULT"] = std::filesystem::path("");

    const auto style_rc = core::runtime::get_module_resource_path("sight::module::ui::qt");

    // Stores each rcc & qss
    for(const auto& p : std::filesystem::directory_iterator(style_rc))
    {
        std::filesystem::path f = p;

        if(f.extension() == ".rcc")
        {
            const std::string filename = f.filename().replace_extension("").string();

            std::string name = filename;
            std::transform(
                filename.begin(),
                filename.end(),
                name.begin(),
                [](unsigned char _c) -> unsigned char {return static_cast<unsigned char>(std::toupper(_c));});

            m_style_map[name] = f.replace_extension("");
        }
    }

    // Apply theme from preferences if any.
    this->update_from_prefs();
}

//-----------------------------------------------------------------------------

void style_selector::stopping()
{
    m_style_map.clear();
}

//-----------------------------------------------------------------------------

void style_selector::updating()
{
}

//-----------------------------------------------------------------------------

void style_selector::change_style(const std::string& _style_name)
{
    auto path = m_style_map[_style_name];

    sight::ui::preferences preferences;

    // DEFAULT (no theme) case.
    if(path.empty())
    {
        qApp->setStyleSheet("");

        preferences.put("THEME", "DEFAULT");
        return;
    }

    // Load ressources
    [[maybe_unused]] const bool resource_loaded = QResource::registerResource(
        path.replace_extension(
            ".rcc"
        ).string().c_str()
    );
    SIGHT_ASSERT("Cannot load resources '" + path.replace_extension(".rcc").string() + "'.", resource_loaded);

    // Load stylesheet.
    QFile data(QString::fromStdString(path.replace_extension(".qss").string()));
    if(data.open(QFile::ReadOnly))
    {
        QTextStream style_in(&data);
        const QString style = style_in.readAll();
        data.close();
        qApp->setStyleSheet(style);
        preferences.put("THEME", _style_name);
    }
}

//-----------------------------------------------------------------------------

void style_selector::update_from_prefs()
{
    // Apply previously saved style in preferences file.
    try
    {
        sight::ui::preferences preferences;
        if(const auto& theme = preferences.get_optional<std::string>("THEME"); theme)
        {
            this->change_style(*theme);
        }
    }
    catch(const sight::ui::preferences_disabled& /*e*/)
    {
        // Nothing to do..
    }
}

//-----------------------------------------------------------------------------

} // namespace sight::module::ui::qt