2014-12-08 12:55:09 +01:00
|
|
|
import tables
|
|
|
|
|
|
|
|
type
|
2015-01-08 23:34:17 +01:00
|
|
|
RawQVariant* = distinct pointer ## A QVariant
|
|
|
|
QVariant* = ref object of RootObj
|
|
|
|
data*: RawQVariant
|
|
|
|
deleted*: bool
|
|
|
|
|
2015-01-03 15:46:39 +01:00
|
|
|
QQmlApplicationEngine* = distinct pointer ## A QQmlApplicationEngine
|
|
|
|
QQmlContext* = distinct pointer ## A QQmlContext
|
|
|
|
QApplication* = distinct pointer ## A QApplication
|
2015-01-06 20:56:43 +00:00
|
|
|
DynamicQObject* = distinct pointer
|
2015-01-08 23:34:17 +01:00
|
|
|
|
2015-01-06 23:16:26 +00:00
|
|
|
QObjectObj* = object of RootObj ## A QObject
|
2014-12-10 22:50:56 +01:00
|
|
|
name*: string
|
2015-01-06 20:56:43 +00:00
|
|
|
data*: DynamicQObject
|
2014-12-08 12:55:09 +01:00
|
|
|
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-08 23:34:17 +01:00
|
|
|
deleted*: bool
|
2015-01-06 23:16:26 +00:00
|
|
|
QObject* = ref QObjectObj
|
2015-01-08 23:34:17 +01:00
|
|
|
|
2015-01-03 15:46:39 +01:00
|
|
|
QQuickView* = distinct pointer ## A QQuickView
|