keepassxc

Форк
0
/
ReportsPageBrowserStatistics.cpp 
53 строки · 1.6 Кб
1
/*
2
 *  Copyright (C) 2021 KeePassXC Team <team@keepassxc.org>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "ReportsPageBrowserStatistics.h"
19

20
#include "ReportsWidgetBrowserStatistics.h"
21
#include "gui/Icons.h"
22

23
ReportsPageBrowserStatistics::ReportsPageBrowserStatistics()
24
    : m_browserWidget(new ReportsWidgetBrowserStatistics())
25
{
26
}
27

28
QString ReportsPageBrowserStatistics::name()
29
{
30
    return QObject::tr("Browser Statistics");
31
}
32

33
QIcon ReportsPageBrowserStatistics::icon()
34
{
35
    return icons()->icon("internet-web-browser");
36
}
37

38
QWidget* ReportsPageBrowserStatistics::createWidget()
39
{
40
    return m_browserWidget;
41
}
42

43
void ReportsPageBrowserStatistics::loadSettings(QWidget* widget, QSharedPointer<Database> db)
44
{
45
    const auto settingsWidget = reinterpret_cast<ReportsWidgetBrowserStatistics*>(widget);
46
    settingsWidget->loadSettings(db);
47
}
48

49
void ReportsPageBrowserStatistics::saveSettings(QWidget* widget)
50
{
51
    const auto settingsWidget = reinterpret_cast<ReportsWidgetBrowserStatistics*>(widget);
52
    settingsWidget->saveSettings();
53
}
54

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.