2011-11-27 03:02:15 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Canonical Ltd.
|
|
|
|
*
|
2022-06-01 13:44:23 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*
|
2017-05-27 18:21:30 +02:00
|
|
|
* 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.1 of the License, or (at your option) any later version.
|
2011-11-27 03:02:15 +01:00
|
|
|
*
|
|
|
|
* 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
|
2014-01-23 12:58:29 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2011-11-27 03:02:15 +01:00
|
|
|
*
|
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_MENU_EXPORTER_H__
|
|
|
|
#define __G_MENU_EXPORTER_H__
|
|
|
|
|
|
|
|
#include <gio/gdbusconnection.h>
|
|
|
|
#include <gio/gmenumodel.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2022-12-14 12:29:10 +01:00
|
|
|
/**
|
|
|
|
* G_MENU_EXPORTER_MAX_SECTION_SIZE:
|
|
|
|
*
|
|
|
|
* The maximum number of entries in a menu section supported by
|
|
|
|
* g_dbus_connection_export_menu_model().
|
|
|
|
*
|
|
|
|
* The exact value of the limit may change in future GLib versions.
|
|
|
|
*
|
|
|
|
* Since: 2.76
|
|
|
|
*/
|
|
|
|
#define G_MENU_EXPORTER_MAX_SECTION_SIZE 1000 \
|
|
|
|
GIO_AVAILABLE_MACRO_IN_2_76
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_32
|
2011-12-02 21:36:15 +01:00
|
|
|
guint g_dbus_connection_export_menu_model (GDBusConnection *connection,
|
|
|
|
const gchar *object_path,
|
|
|
|
GMenuModel *menu,
|
|
|
|
GError **error);
|
2011-11-27 03:02:15 +01:00
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_32
|
2011-12-02 22:50:09 +01:00
|
|
|
void g_dbus_connection_unexport_menu_model (GDBusConnection *connection,
|
2011-12-02 21:36:15 +01:00
|
|
|
guint export_id);
|
2011-11-27 03:02:15 +01:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __G_MENU_EXPORTER_H__ */
|