summaryrefslogtreecommitdiff
path: root/src/totem-main-toolbar.h
blob: 3b6fe158a358139b1350cfe215e312285348a61f (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
/* GTK - The GIMP Toolkit
 * Copyright (C) 2013-2014 Red Hat, Inc.
 *
 * Authors:
 * - Bastien Nocera <bnocera@redhat.com>
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

/*
 * 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 <gtk/gtkbox.h>

#define TOTEM_TYPE_MAIN_TOOLBAR                 (totem_main_toolbar_get_type ())
G_DECLARE_FINAL_TYPE (TotemMainToolbar, totem_main_toolbar, TOTEM, MAIN_TOOLBAR, GtkHeaderBar)

GType           totem_main_toolbar_get_type              (void) G_GNUC_CONST;
GtkWidget*      totem_main_toolbar_new                   (void);
void            totem_main_toolbar_set_search_mode       (TotemMainToolbar *bar,
							  gboolean          search_mode);
gboolean        totem_main_toolbar_get_search_mode       (TotemMainToolbar *bar);
void            totem_main_toolbar_set_select_mode       (TotemMainToolbar *bar,
							  gboolean          select_mode);
gboolean        totem_main_toolbar_get_select_mode       (TotemMainToolbar *bar);
void            totem_main_toolbar_set_title             (TotemMainToolbar *bar,
							  const char       *title);
const char *    totem_main_toolbar_get_title             (TotemMainToolbar *bar);
void            totem_main_toolbar_set_subtitle          (TotemMainToolbar *bar,
							  const char       *subtitle);
const char *    totem_main_toolbar_get_subtitle          (TotemMainToolbar *bar);
void            totem_main_toolbar_set_search_string     (TotemMainToolbar *bar,
						          const char       *search_string);
const char *    totem_main_toolbar_get_search_string     (TotemMainToolbar *bar);
void            totem_main_toolbar_set_n_selected        (TotemMainToolbar *bar,
							  guint             n_selected);
guint           totem_main_toolbar_get_n_selected        (TotemMainToolbar *bar);
void            totem_main_toolbar_set_custom_title      (TotemMainToolbar *bar,
							  GtkWidget        *title_widget);
GtkWidget *     totem_main_toolbar_get_custom_title      (TotemMainToolbar *bar);
void            totem_main_toolbar_set_select_menu_model (TotemMainToolbar *bar,
							  GMenuModel       *model);
GMenuModel *    totem_main_toolbar_get_select_menu_model (TotemMainToolbar *bar);
void            totem_main_toolbar_pack_start            (TotemMainToolbar *bar,
							  GtkWidget        *child);
void            totem_main_toolbar_pack_end              (TotemMainToolbar *bar,
							  GtkWidget        *child);