summaryrefslogtreecommitdiffstats
path: root/panels/common/cc-permission-infobar.c
blob: 78e2b07118750cff23ae608c5eaf193ef6a16321 (plain)
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
/* cc-permission-infobar.c
 *
 * Copyright (C) 2020 Red Hat, Inc
 *
 * 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 3 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/>.
 *
 * Author(s):
 *   Felipe Borges <felipeborges@gnome.org>
 *
 */

#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "cc-permission-infobar"

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <glib/gi18n.h>

#include "cc-permission-infobar.h"

struct _CcPermissionInfobar
{
  AdwBin         parent_instance;

  GtkRevealer   *revealer;
  GtkLabel      *title;
  GtkLockButton *lock_button;
};

G_DEFINE_TYPE (CcPermissionInfobar, cc_permission_infobar, ADW_TYPE_BIN)

static void
on_permission_changed (CcPermissionInfobar *self)
{
  GPermission *permission;
  gboolean is_authorized;

  permission = gtk_lock_button_get_permission (self->lock_button);
  is_authorized = g_permission_get_allowed (permission);

  gtk_revealer_set_reveal_child (self->revealer, !is_authorized);
}

static void
cc_permission_infobar_class_init (CcPermissionInfobarClass *klass)
{
  GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);

  gtk_widget_class_set_template_from_resource (widget_class,
                                               "/org/gnome/control-center/"
                                               "common/cc-permission-infobar.ui");

  gtk_widget_class_bind_template_child (widget_class, CcPermissionInfobar, revealer);
  gtk_widget_class_bind_template_child (widget_class, CcPermissionInfobar, title);
  gtk_widget_class_bind_template_child (widget_class, CcPermissionInfobar, lock_button);
}

static void
cc_permission_infobar_init (CcPermissionInfobar *self)
{
  gtk_widget_init_template (GTK_WIDGET (self));

  /* Set the default title. */
  cc_permission_infobar_set_title (self, NULL);
}

void
cc_permission_infobar_set_permission (CcPermissionInfobar *self,
                                      GPermission         *permission)
{
  g_return_if_fail (CC_IS_PERMISSION_INFOBAR (self));

  gtk_lock_button_set_permission (self->lock_button, permission);

  g_signal_connect_object (permission, "notify",
                           G_CALLBACK (on_permission_changed),
                           self,
                           G_CONNECT_SWAPPED);
  on_permission_changed (self);
}

/**
 * cc_permission_infobar_set_title:
 * @self: a #CcPermissionInfobar
 * @title: (nullable): title to display in the infobar, or %NULL for the default
 *
 * Set the title text to display in the infobar.
 */
void
cc_permission_infobar_set_title (CcPermissionInfobar *self,
                                 const gchar         *title)
{
  g_return_if_fail (CC_IS_PERMISSION_INFOBAR (self));

  if (title == NULL)
    title = _("Unlock to Change Settings");

  gtk_label_set_text (self->title, title);
}