dotherside/Nim/NimQmlTypes.nim

13 lines
351 B
Nim
Raw Normal View History

2014-12-08 12:55:09 +01:00
import tables
type
QVariant* = distinct pointer
QQmlApplicationEngine* = distinct pointer
QQmlContext* = distinct pointer
QApplication* = distinct pointer
QObject* {.inheritable.} = ref object of RootObj
name*: string
2014-12-08 12:55:09 +01:00
data*: pointer
slots*: Table[string, cint]
signals*: Table[string, cint]
2014-12-08 12:55:09 +01:00
QQuickView* = distinct pointer