diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2009-11-21 15:28:59 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2009-11-21 15:28:59 +0000 |
commit | 872870b29a846cc8e27d53d05147eb3e0beb7c50 (patch) | |
tree | 5bf7121650264015843c2111e98a0d26ededc358 /src/xgselect.h | |
parent | 62a6e103dd7b9d940565639d6a47c8bdee3f24ce (diff) | |
download | emacs-872870b29a846cc8e27d53d05147eb3e0beb7c50.tar.gz |
Use a select wrapper around the GLib event loop, thus taking into account GLib
timeouts and event sources. This simplifies Gtk+-code a lot, and is needed
for handling GConf death/restart.
* xterm.c: #include xgselect.h.
(x_initialize): Call xgselect_initialize.
* xsettings.c (something_changedCB): C++ comments => C comments.
(init_gconf): Do not deal with any GLib file descriptors, xg_select
does that now.
* gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
(xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
(scroll_bar_button_cb): Remove.
(create_menus): C++ comments => C comments. Don't bind grab-notify
event.
(xg_create_scroll_bar): Don't bind button-press-event and
button-release-event.
* process.c: Include xgselect.h if defined (USE_GTK) ||
defined (HAVE_GCONF).
(wait_reading_process_output): Call xg_select for the same condition.
* xgselect.c (xg_select): New function to better integrate with
GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
* xgselect.h: New file, declare xg_select, xgselect_initialize.
* Makefile.in (XOBJ): Add xgselect.o.
Diffstat (limited to 'src/xgselect.h')
-rw-r--r-- | src/xgselect.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/xgselect.h b/src/xgselect.h new file mode 100644 index 00000000000..537f3471fb3 --- /dev/null +++ b/src/xgselect.h @@ -0,0 +1,35 @@ +/* Header for xg_select. + Copyright (C) 2009 + Free Software Foundation, Inc. + +This file is part of GNU Emacs. + +GNU Emacs is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +GNU Emacs 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ + +#ifndef XGSELECT_H +#define XGSELECT_H + +#include "lisp.h" +#include "systime.h" +#include "sysselect.h" + +extern int xg_select P_ ((int max_fds, + SELECT_TYPE *rfds, + SELECT_TYPE *wfds, + SELECT_TYPE *efds, + EMACS_TIME *timeout)); + +extern void xgselect_initialize P_ ((void)); + +#endif /* XGSELECT_H */ |