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
65
66
67
68
69
70
|
/*
* Copyright (C) 2005 Red Hat, Inc.
* Copyright (C) 2011 Perberos
*
* 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, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __MENU_MONITOR_H__
#define __MENU_MONITOR_H__
#include <glib.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct MenuMonitor MenuMonitor;
typedef enum {
MENU_MONITOR_EVENT_INVALID = 0,
MENU_MONITOR_EVENT_CREATED = 1,
MENU_MONITOR_EVENT_DELETED = 2,
MENU_MONITOR_EVENT_CHANGED = 3
} MenuMonitorEvent;
typedef void (*MenuMonitorNotifyFunc) (MenuMonitor* monitor, MenuMonitorEvent event, const char* path, gpointer user_data);
MenuMonitor* menu_get_file_monitor(const char* path);
MenuMonitor* menu_get_directory_monitor(const char* path);
MenuMonitor* menu_monitor_ref(MenuMonitor* monitor);
void menu_monitor_unref(MenuMonitor* monitor);
void menu_monitor_add_notify(MenuMonitor* monitor, MenuMonitorNotifyFunc notify_func, gpointer user_data);
void menu_monitor_remove_notify(MenuMonitor* monitor, MenuMonitorNotifyFunc notify_func, gpointer user_data);
/* Izquierda a derecha
*/
#define mate_menu_monitor_file_get menu_get_file_monitor
#define mate_menu_monitor_directory_get menu_get_directory_monitor
#define mate_menu_monitor_ref menu_monitor_ref
#define mate_menu_monitor_unref menu_monitor_unref
#define mate_menu_monitor_notify_add menu_monitor_add_notify
#define mate_menu_monitor_notify_remove menu_monitor_remove_notify
#define mate_menu_monitor_notify_ref menu_monitor_notify_ref /* private */
#define mate_menu_monitor_notify_unref menu_monitor_notify_unref /* private */
#ifdef __cplusplus
}
#endif
#endif /* __MENU_MONITOR_H__ */
|