gcc/libjava/classpath/native/jni/qt-peer/qtcomponent.h
Tom Tromey 9b044d1951 Initial revision
From-SVN: r104578
2005-09-23 19:36:46 +00:00

16 lines
313 B
C

#ifndef QTCOMPONENT_H
#define QTCOMPONENT_H
#include <QSize>
#include <QPoint>
//#include <cassert.h>
#include <jni.h>
#include "nativewrapper.h"
void *getParentWidget( JNIEnv *env, jobject qtcomponentpeer );
jobject makeDimension(JNIEnv *env, QSize *size);
jobject makePoint(JNIEnv *env, QPoint &p);
#endif