Committing in .

VMS/GTK compile support

 Modified Files:
 	wxWindows/descrip.mms wxWindows/setup.h_vms
 	wxWindows/samples/minimal/descrip.mms
 	wxWindows/src/common/descrip.mms
 	wxWindows/src/common/resource.cpp
 	wxWindows/src/generic/descrip.mms
 	wxWindows/src/gtk/dcclient.cpp wxWindows/src/gtk/filedlg.cpp
 	wxWindows/src/gtk/fontdlg.cpp wxWindows/src/gtk/listbox.cpp
 	wxWindows/src/gtk/tbargtk.cpp wxWindows/src/gtk/win_gtk.c
 	wxWindows/src/unix/descrip.mms wxWindows/src/unix/fontenum.cpp
 Added Files:
 	wxWindows/lib/vms_gtk.opt
 	wxWindows/src/gtk/wx_gtk_vmsjackets.c
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2000-03-07 09:00:27 +00:00
parent 19701d22df
commit 3fa056ab78
23 changed files with 242 additions and 31 deletions

View File

@@ -0,0 +1,40 @@
#include <gdk/gdk.h>
void GDK_BEEP (void)
{
gdk_beep();
}
GdkBitmap* GDK_BITMAP_CREATE_FROM_DATA (GdkWindow *window,
const gchar *data,
gint width,
gint height)
{
return gdk_bitmap_create_from_data (window,
data,
width,
height);
}
void GDK_BITMAP_UNREF (GdkBitmap *pixmap)
{
gdk_bitmap_unref (pixmap);
}
gint GDK_CHAR_HEIGHT (GdkFont *font,
gchar character)
{
return gdk_char_height (font,
character);
}
GdkColormap* GDK_COLORMAP_GET_SYSTEM (void)
{
return gdk_colormap_get_system();
}
GdkVisual* GDK_COLORMAP_GET_VISUAL (GdkColormap *colormap)
{
return gdk_colormap_get_visual (colormap);
}