Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <gtk/gtk.h>
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_MENU_STACK (valent_menu_stack_get_type())
11 : :
12 [ + - + - : 3 : G_DECLARE_FINAL_TYPE (ValentMenuStack, valent_menu_stack, VALENT, MENU_STACK, GtkWidget)
- + ]
13 : :
14 : : GtkWidget * valent_menu_stack_new (GMenuModel *menu_model);
15 : : GMenuModel * valent_menu_stack_get_menu_model (ValentMenuStack *stack);
16 : : void valent_menu_stack_set_menu_model (ValentMenuStack *stack,
17 : : GMenuModel *menu_model);
18 : :
19 : : G_END_DECLS
|