/* GTK - The GIMP Toolkit * Copyright (C) 2013-2014 Red Hat, Inc. * * Authors: * - Bastien Nocera * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . */ /* * Modified by the GTK+ Team and others 2013. See the AUTHORS * file for a list of people on the GTK+ Team. See the ChangeLog * files for a list of changes. These files are distributed with * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ #pragma once #include G_BEGIN_DECLS #define TOTEM_TYPE_SELECTION_TOOLBAR (totem_selection_toolbar_get_type ()) G_DECLARE_FINAL_TYPE (TotemSelectionToolbar, totem_selection_toolbar, TOTEM, SELECTION_TOOLBAR, GtkActionBar) GType totem_selection_toolbar_get_type (void) G_GNUC_CONST; GtkWidget* totem_selection_toolbar_new (void); void totem_selection_toolbar_set_n_selected (TotemSelectionToolbar *bar, guint n_selected); guint totem_selection_toolbar_get_n_selected (TotemSelectionToolbar *bar); void totem_selection_toolbar_set_show_delete_button (TotemSelectionToolbar *bar, gboolean show_delete_button); gboolean totem_selection_toolbar_get_show_delete_button (TotemSelectionToolbar *bar); void totem_selection_toolbar_set_delete_button_sensitive (TotemSelectionToolbar *bar, gboolean sensitive); gboolean totem_selection_toolbar_get_delete_button_sensitive (TotemSelectionToolbar *bar);