JAWT (Java Abstract Window Toolkit) is Java's original platform-independent windowing, graphics, and user-interface widget toolkit.
Questions tagged [jawt]
9 questions
2
votes
1 answer
Could not get the JAWT interface error on mac
I'm trying to run the Basic Demo of the JBullet library. However it's giving saying JAWT interface couldn't be found. It works fine on Windows 8 Pro and Ubuntu 13.10 (I've tested them on my laptop) but not on my mac running OS X 10.8.5 with Oracle…

Sri Harsha Chilakapati
- 11,744
- 6
- 50
- 91
2
votes
0 answers
Native JNI/JAWT Swing application runs successfully on Java 6, but fails on Java 7 (64-bit Windows 7 OS)
I think I have a decent sense of the problem I'm having, but I was wondering if anyone had any more insight into what's going on. This may be related to trying-to-use-jawt-on-64-bit-windows-7-os.
I have a fairly simple Java GUI application and I'm…

Brent Writes Code
- 19,075
- 7
- 52
- 56
1
vote
2 answers
How do I get the HWND of a Canvas using Panama?
I'm porting a program that uses JNI to use Panama instead. This program uses OpenGL to draw onto a Canvas object. I can port the Windows and OpenGL calls to use Panama, but the problem is I need to get the HWND of the Canvas I want to draw to. The C…

James
- 13
- 3
1
vote
1 answer
How to draw in two different JFrames
My goal is to implement a space filling curve in one frame, and in the other the number of each pixel in the frame. In the future, I will need to draw some coordinates in the third frame. My question now is how do I draw the curve in one frame and…

Ian Tupiara
- 15
- 5
1
vote
1 answer
Java JNI JAWT error unresolved external symbol __imp__JAWT_GetAWT@8
Well I am currently working on a project kind of like JOGL just I want to remake it so I can do the same with DirectX. I came across this error right in the begining and have been researching this for about 2 days now.
Here is the full error:
Error…

user2929143
- 11
- 2
1
vote
1 answer
JAWT Application using MinGW64 doesn't run
Trying to run JAWT/JNI application.
I'm using jdk1.6.0_31 and MinGW64 on Windows 7 x64. Compilation goes smoothly, but still couldn't run application. There is no problem till I add JAWT_GetAWT() function.
The problem is that I'm new at C/C++…

ChShakenov
- 11
- 2
0
votes
1 answer
Losing AWT DrawingSurface when Canvas is hidden
I am writing 3d rendering module for an AWT/Swing application.
To provide good FPS, I can't draw using Swing/AWT methods and graphics. Instead, I obtain the Drawing Surface from the Canvas element, and then render directly to it. Something like…

Vlad Vyatkin
- 544
- 5
- 16
0
votes
1 answer
What does AWT.GetDrawingSurface do?
I'm on a project where I need to use vtk with Java and JavaFX. And to give VTK the correct canvas where it can draw, I was wondering what does the function GetDrawingSurface() do in the code below. awt is a JAWT object described in jawt.h from the…

user3657247
- 80
- 7
0
votes
0 answers
Information regarding libjawt.so GetComponent on linux
I am trying to find out what exactly the second argument of GetComponent method of libjawt.so expects in order to return the component. It would be very helpful if somebody could point me to documentation for this method.
Thanks

Prakash
- 742
- 7
- 19