forked from AuroraMiddleware/gtk
75fd7f09af
2001-06-25 Alexander Larsson <alexl@redhat.com> * configure.in: Added --enable-fbmanager. This is some experimental code that lets several GtkFB apps coordinate their access to the framebuffer. * acconfig.h: Added ENABLE_FB_MANAGER. * gdk/linux-fb/Makefile.am: Added gdkfbmanager and gdkfbswitch. * gdk/linux-fb/gdkkeyboard-fb.c: * gdk/linux-fb/gdkmouse-fb.c: * gdk/linux-fb/gdkprivate-fb.h: Split device init and open so that they can be opened and closed while switched away. * gdk/linux-fb/gdkmain-fb.c: Add the basic manager communication. * gdk/linux-fb/gdkrender-fb.c: Don't update to the shadow fb if we're blocked by the fb manager.
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/* GDK - The GIMP Drawing Kit
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
*
|
|
* 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., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
#ifndef __GDK_FB_MANAGER_H__
|
|
#define __GDK_FB_MANAGER_H__
|
|
|
|
enum FBManagerMessageType {
|
|
/* manager -> client */
|
|
FB_MANAGER_SWITCH_TO,
|
|
FB_MANAGER_SWITCH_FROM, /* requires ack */
|
|
|
|
/* client -> manager */
|
|
FB_MANAGER_NEW_CLIENT,
|
|
FB_MANAGER_REQUEST_SWITCH_TO_PID,
|
|
FB_MANAGER_ACK,
|
|
};
|
|
|
|
struct FBManagerMessage {
|
|
enum FBManagerMessageType msg_type;
|
|
int data;
|
|
};
|
|
#endif /* __GDK_FB_MANAGER_H__ */
|