1/*
2 * Copyright © 2019 Red Hat, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the licence, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Author: Matthias Clasen
18 */
19
20#ifndef __GTK_TREE_POPOVER_PRIVATE_H__
21#define __GTK_TREE_POPOVER_PRIVATE_H__
22
23#include <gtk/gtk.h>
24
25G_BEGIN_DECLS
26
27#define GTK_TYPE_TREE_POPOVER (gtk_tree_popover_get_type ())
28G_DECLARE_FINAL_TYPE (GtkTreePopover, gtk_tree_popover, GTK, TREE_POPOVER, GtkPopover)
29
30void gtk_tree_popover_set_model (GtkTreePopover *popover,
31 GtkTreeModel *model);
32void gtk_tree_popover_set_row_separator_func (GtkTreePopover *popover,
33 GtkTreeViewRowSeparatorFunc func,
34 gpointer data,
35 GDestroyNotify destroy);
36void gtk_tree_popover_set_active (GtkTreePopover *popover,
37 int item);
38void gtk_tree_popover_open_submenu (GtkTreePopover *popover,
39 const char *name);
40
41G_END_DECLS
42
43#endif /* __GTK_TREE_POPOVER_PRIVATE_H__ */
44

source code of gtk/gtk/gtktreepopoverprivate.h