mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00: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
|