mirror of
https://github.com/2003scape/deep-c-rsc.git
synced 2024-03-22 05:49:51 -04:00
17 lines
313 B
C
17 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
|