]> git.sesse.net Git - vlc/blob - bindings/java/vlc-graphics-jni.cc
another attempt to make java bindings win32 friendly.
[vlc] / bindings / java / vlc-graphics-jni.cc
1 /*****************************************************************************
2  * JVLC.java: JNI interface for vlc Java Bindings
3  *****************************************************************************
4  * Copyright (C) 1998-2005 the VideoLAN team
5  *
6  * Authors: Filippo Carone <filippo@carone.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
21  *****************************************************************************/
22
23 /* These are a must*/
24 #include <jni.h>
25 #include <vlc/vlc.h>
26 #include <jawt.h>
27 #include <jawt_md.h>
28
29 #ifndef WIN32
30 #include <X11/Xlib.h> // for Xlibs graphics functions
31 #endif
32
33 #include <stdio.h>    // for printf
34
35 /* JVLC internal imports, generated by gcjh */
36 #include "org_videolan_jvlc_JVLCCanvas.h"
37
38 /*
39  * This will only work on X11 at the moment
40  */
41
42 JNIEXPORT void JNICALL Java_org_videolan_jvlc_JVLCCanvas_paint (JNIEnv *env, jobject canvas, jobject graphics) {
43
44   JAWT awt;
45   JAWT_DrawingSurface* ds;
46   JAWT_DrawingSurfaceInfo* dsi;
47
48 #ifdef WIN32
49   JAWT_Win32DrawingSurfaceInfo* dsi_win;
50 #else
51   JAWT_X11DrawingSurfaceInfo* dsi_x11;
52   GC gc;
53 #endif
54
55   jint lock;
56
57     
58   vlc_value_t value;
59
60   /* Get the AWT */
61   awt.version = JAWT_VERSION_1_3;
62   if (JAWT_GetAWT(env, &awt) == JNI_FALSE) {
63     printf("AWT Not found\n");
64     return;
65   }
66
67   /* Get the drawing surface */
68   ds = awt.GetDrawingSurface(env, canvas);
69   if (ds == NULL) {
70     printf("NULL drawing surface\n");
71     return;
72   }
73
74   /* Lock the drawing surface */
75   lock = ds->Lock(ds);
76   if((lock & JAWT_LOCK_ERROR) != 0) {
77     printf("Error locking surface\n");
78     awt.FreeDrawingSurface(ds);
79     return;
80   }
81
82   /* Get the drawing surface info */
83   dsi = ds->GetDrawingSurfaceInfo(ds);
84   if (dsi == NULL) {
85     printf("Error getting surface info\n");
86     ds->Unlock(ds);
87     awt.FreeDrawingSurface(ds);
88     return;
89   }
90
91
92 #ifdef WIN32
93   /* Get the platform-specific drawing info */
94   dsi_win = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo;
95
96   /* Now paint */
97   value.i_int = reinterpret_cast<int>(dsi_win->hwnd); 
98   VLC_VariableSet( 1, "drawable", value );
99
100 #else // UNIX
101   /* Get the platform-specific drawing info */
102   dsi_x11 = (JAWT_X11DrawingSurfaceInfo*)dsi->platformInfo;
103
104   /* Now paint */
105   gc = XCreateGC(dsi_x11->display, dsi_x11->drawable, 0, 0);
106   XSetBackground(dsi_x11->display, gc, 0);
107
108   value.i_int = dsi_x11->drawable;
109   VLC_VariableSet( 0, "drawable", value );
110   XFreeGC(dsi_x11->display, gc);
111
112 #endif
113
114   /* Free the drawing surface info */
115   ds->FreeDrawingSurfaceInfo(dsi);
116
117   /* Unlock the drawing surface */
118   ds->Unlock(ds);
119
120   /* Free the drawing surface */
121   awt.FreeDrawingSurface(ds);
122 }