The UI file is not formatted on purpose to facilitate the review. It will be reformatted in a later commit.
101 lines
3.1 KiB
C
101 lines
3.1 KiB
C
/*
|
|
* Copyright 2023 Marco Melorio
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "cc-privacy-panel.h"
|
|
|
|
#ifdef BUILD_THUNDERBOLT
|
|
#include "cc-bolt-page.h"
|
|
#endif
|
|
#include "cc-camera-page.h"
|
|
#include "cc-diagnostics-page.h"
|
|
#include "cc-firmware-security-page.h"
|
|
#include "cc-list-row.h"
|
|
#include "cc-location-page.h"
|
|
#include "cc-microphone-page.h"
|
|
#include "cc-privacy-resources.h"
|
|
#include "cc-screen-page.h"
|
|
#include "cc-usage-page.h"
|
|
|
|
struct _CcPrivacyPanel
|
|
{
|
|
CcPanel parent_instance;
|
|
|
|
AdwNavigationView *navigation;
|
|
CcListRow *bolt_row;
|
|
};
|
|
|
|
CC_PANEL_REGISTER (CcPrivacyPanel, cc_privacy_panel)
|
|
|
|
static const char *
|
|
cc_privacy_panel_get_help_uri (CcPanel *panel)
|
|
{
|
|
AdwNavigationPage *page = adw_navigation_view_get_visible_page (CC_PRIVACY_PANEL (panel)->navigation);
|
|
const char *page_tag = adw_navigation_page_get_tag (page);
|
|
|
|
if (g_strcmp0 (page_tag, "camera-page") == 0)
|
|
return "help:gnome-help/camera";
|
|
else if (g_strcmp0 (page_tag, "location-page") == 0)
|
|
return "help:gnome-help/location";
|
|
else if (g_strcmp0 (page_tag, "microphone-page") == 0)
|
|
return "help:gnome-help/microphone";
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
cc_privacy_panel_class_init (CcPrivacyPanelClass *klass)
|
|
{
|
|
CcPanelClass *panel_class = CC_PANEL_CLASS (klass);
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
panel_class->get_help_uri = cc_privacy_panel_get_help_uri;
|
|
|
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/control-center/privacy/cc-privacy-panel.ui");
|
|
|
|
gtk_widget_class_bind_template_child (widget_class, CcPrivacyPanel, navigation);
|
|
gtk_widget_class_bind_template_child (widget_class, CcPrivacyPanel, bolt_row);
|
|
|
|
g_type_ensure (CC_TYPE_CAMERA_PAGE);
|
|
g_type_ensure (CC_TYPE_DIAGNOSTICS_PAGE);
|
|
g_type_ensure (CC_TYPE_FIRMWARE_SECURITY_PAGE);
|
|
g_type_ensure (CC_TYPE_LOCATION_PAGE);
|
|
g_type_ensure (CC_TYPE_MICROPHONE_PAGE);
|
|
g_type_ensure (CC_TYPE_SCREEN_PAGE);
|
|
g_type_ensure (CC_TYPE_USAGE_PAGE);
|
|
}
|
|
|
|
static void
|
|
cc_privacy_panel_init (CcPrivacyPanel *self)
|
|
{
|
|
g_resources_register (cc_privacy_get_resource ());
|
|
|
|
gtk_widget_init_template (GTK_WIDGET (self));
|
|
|
|
#ifdef BUILD_THUNDERBOLT
|
|
CcBoltPage* bolt_page = cc_bolt_page_new ();
|
|
|
|
adw_navigation_view_add (self->navigation, ADW_NAVIGATION_PAGE (bolt_page));
|
|
|
|
g_object_bind_property (bolt_page, "visible",
|
|
self->bolt_row, "visible", G_BINDING_SYNC_CREATE);
|
|
#endif
|
|
}
|