2014-12-08 12:55:09 +01:00
|
|
|
import tables
|
|
|
|
|
|
|
|
type
|
2015-01-03 15:46:39 +01:00
|
|
|
QVariant* = distinct pointer ## A QVariant
|
|
|
|
QQmlApplicationEngine* = distinct pointer ## A QQmlApplicationEngine
|
|
|
|
QQmlContext* = distinct pointer ## A QQmlContext
|
|
|
|
QApplication* = distinct pointer ## A QApplication
|
|
|
|
QObject* {.inheritable.} = ref object of RootObj ## A QObject
|
2014-12-10 22:50:56 +01:00
|
|
|
name*: string
|
2014-12-08 12:55:09 +01:00
|
|
|
data*: pointer
|
|
|
|
slots*: Table[string, cint]
|
2014-12-10 22:50:56 +01:00
|
|
|
signals*: Table[string, cint]
|
2014-12-24 14:30:41 +01:00
|
|
|
properties*: Table[string, cint]
|
2015-01-03 15:46:39 +01:00
|
|
|
QQuickView* = distinct pointer ## A QQuickView
|