diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
commit | 9b6d8e63db85c30007b463e91f91a791969fa83f (patch) | |
tree | 0899af51d73c1bf986f73ae39a03c4436083018a /shell/cc-panel-list.h | |
parent | Initial commit. (diff) | |
download | gnome-control-center-9b6d8e63db85c30007b463e91f91a791969fa83f.tar.xz gnome-control-center-9b6d8e63db85c30007b463e91f91a791969fa83f.zip |
Adding upstream version 1:3.38.4.upstream/1%3.38.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'shell/cc-panel-list.h')
-rw-r--r-- | shell/cc-panel-list.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/shell/cc-panel-list.h b/shell/cc-panel-list.h new file mode 100644 index 0000000..8d7324d --- /dev/null +++ b/shell/cc-panel-list.h @@ -0,0 +1,78 @@ +/* cc-panel-list.c + * + * Copyright (C) 2016 Endless, 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 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/>. + * + * Author: Georges Basile Stavracas Neto <gbsneto@gnome.org> + */ + +#pragma once + +#include <glib-object.h> + +#include "cc-panel.h" +#include "cc-shell-model.h" + +G_BEGIN_DECLS + +typedef enum +{ + CC_PANEL_LIST_MAIN, + CC_PANEL_LIST_PRIVACY, + CC_PANEL_LIST_WIDGET, + CC_PANEL_LIST_SEARCH +} CcPanelListView; + +#define CC_TYPE_PANEL_LIST (cc_panel_list_get_type()) + +G_DECLARE_FINAL_TYPE (CcPanelList, cc_panel_list, CC, PANEL_LIST, GtkStack) + +GtkWidget* cc_panel_list_new (void); + +gboolean cc_panel_list_activate (CcPanelList *self); + +const gchar* cc_panel_list_get_search_query (CcPanelList *self); + +void cc_panel_list_set_search_query (CcPanelList *self, + const gchar *search); + +CcPanelListView cc_panel_list_get_view (CcPanelList *self); + +void cc_panel_list_go_previous (CcPanelList *self); + +void cc_panel_list_add_panel (CcPanelList *self, + CcPanelCategory category, + const gchar *id, + const gchar *title, + const gchar *description, + const GStrv keywords, + const gchar *icon, + CcPanelVisibility visibility, + gboolean has_sidebar); + +void cc_panel_list_set_active_panel (CcPanelList *self, + const gchar *id); + +void cc_panel_list_set_panel_visibility (CcPanelList *self, + const gchar *id, + CcPanelVisibility visibility); + +void cc_panel_list_add_sidebar_widget (CcPanelList *self, + GtkWidget *widget); + +void cc_panel_list_set_selection_mode (CcPanelList *self, + GtkSelectionMode selection_mode); + +G_END_DECLS |