Add:graphics_qt_qpainter:Added qt event system for older qt versions
[navit-package] / navit / event.h
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program 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
12  * GNU Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 struct event_idle;
25 struct event_timeout;
26 struct event_watch;
27 struct callback;
28
29 struct event_methods {
30         void (*main_loop_run)(void);
31         void (*main_loop_quit)(void);
32         struct event_watch *(*add_watch)(int fd, int w, struct callback *cb);
33         void (*remove_watch)(struct event_watch *ev);
34         struct event_timeout *(*add_timeout)(int timeout, int multi, struct callback *cb);
35         void (*remove_timeout)(struct event_timeout *ev);
36         struct event_idle *(*add_idle)(struct callback *cb);
37         void (*remove_idle)(struct event_idle *ev);
38 };
39
40 /* prototypes */
41 void event_main_loop_run(void);
42 void event_main_loop_quit(void);
43 struct event_watch *event_add_watch(int fd, int w, struct callback *cb);
44 void event_remove_watch(struct event_watch *ev);
45 struct event_timeout *event_add_timeout(int timeout, int multi, struct callback *cb);
46 void event_remove_timeout(struct event_timeout *ev);
47 struct event_idle *event_add_idle(struct callback *cb);
48 void event_remove_idle(struct event_idle *ev);
49 int event_request_system(char *system, char *requestor);
50 /* end of prototypes */
51 #ifdef __cplusplus
52 }
53 #endif