gnome-control-center/panels/privacy/cc-privacy-panel.c
Automeris naranja f00dc11f38 privacy: Separate subpages files in their respective folders
Accessibility and System panel folders also
have this folder structure, which is way more organized.
2024-03-25 14:43:32 +01:00

118 lines
3.6 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 "bolt/cc-bolt-page.h"
#endif
#include "camera/cc-camera-page.h"
#include "diagnostics/cc-diagnostics-page.h"
#include "firmware-security/cc-firmware-security-page.h"
#include "cc-list-row.h"
#include "location/cc-location-page.h"
#include "microphone/cc-microphone-page.h"
#include "cc-privacy-resources.h"
#include "screen/cc-screen-page.h"
#include "usage/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
on_subpage_set (CcPrivacyPanel *self)
{
AdwNavigationPage *subpage;
g_autofree gchar *tag = NULL;
g_object_get (self, "subpage", &tag, NULL);
if (!tag)
return;
subpage = adw_navigation_view_find_page (self->navigation, tag);
if (subpage)
adw_navigation_view_push (self->navigation, subpage);
}
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
g_signal_connect_object (self, "notify::subpage", G_CALLBACK (on_subpage_set), self, G_CONNECT_SWAPPED);
}