]> git.karo-electronics.de Git - gbdfed.git/blob - gtkcompat.h
Fixup several compile faults due to changes in recent distributions,
[gbdfed.git] / gtkcompat.h
1 /*
2  * Copyright 2010 Department of Mathematical Sciences, New Mexico State University
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * DEPARTMENT OF MATHEMATICAL SCIENCES OR NEW MEXICO STATE UNIVERSITY BE
18  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
19  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  */
22 #ifndef _h_gtkcompat
23 #define _h_gtkcompat
24
25 #include <gtk/gtkversion.h>
26
27 #if 0 && GTK_MAJOR_VERSION >= (2) && GTK_MINOR_VERSION >= (20)
28 #define GTK_WIDGET_REALIZED gtk_widget_get_realized
29 #define GTK_WIDGET_STATE gtk_widget_get_state
30 #define GTK_WIDGET_HAS_FOCUS gtk_widget_has_focus
31 #define GTK_WIDGET_DRAWABLE gtk_widget_is_drawable
32 #define GTK_WIDGET_IS_SENSITIVE gtk_widget_is_sensitive
33 #define GTK_WIDGET_SENSITIVE gtk_widget_get_sensitive
34 #define GTK_WIDGET_VISIBLE gtk_widget_get_visible
35 #endif
36
37 #endif /* _h_gtkcompat */