2014-12-08 12:55:09 +01:00
|
|
|
import tables
|
|
|
|
|
|
|
|
type
|
2015-01-10 11:58:24 +01:00
|
|
|
RawQVariant = distinct pointer
|
|
|
|
QVariant* = ref object of RootObj ## A QVariant
|
2015-01-10 11:29:32 +01:00
|
|
|
data: RawQVariant
|
|
|
|
deleted: bool
|
2015-01-08 23:34:17 +01:00
|
|
|
|
2015-01-10 11:58:24 +01:00
|
|
|
RawQQmlApplicationEngine = distinct pointer
|
|
|
|
QQmlApplicationEngine* = ref object of RootObj ## A QQmlApplicationEngine
|
|
|
|
data: RawQQmlApplicationEngine
|
|
|
|
deleted: bool
|
|
|
|
|
|
|
|
QApplication* = ref object of RootObj ## A QApplication
|
|
|
|
deleted: bool
|
2015-01-11 13:29:44 +01:00
|
|
|
|
|
|
|
QGuiApplication* = ref object of RootObj ## A QGuiApplication
|
|
|
|
deleted: bool
|
2015-01-10 11:58:24 +01:00
|
|
|
|
|
|
|
RawQObject = distinct pointer
|
|
|
|
QObjectObj = object of RootObj
|
|
|
|
data: RawQObject
|
2015-01-10 11:29:32 +01:00
|
|
|
slots: Table[string, cint]
|
|
|
|
signals: Table[string, cint]
|
|
|
|
properties: Table[string, cint]
|
|
|
|
deleted: bool
|
2015-01-10 11:58:24 +01:00
|
|
|
QObject* = ref QObjectObj ## A QObject
|
|
|
|
|
|
|
|
RawQQuickView = distinct pointer
|
|
|
|
QQuickView = ref object of RootObj ## A QQuickView
|
|
|
|
data: RawQQuickView
|
|
|
|
deleted: bool
|
|
|
|
|
|
|
|
QQmlContext* = distinct pointer ## A QQmlContext
|
2015-01-08 23:34:17 +01:00
|
|
|
|
2015-01-18 12:26:51 +01:00
|
|
|
RawQModelIndex = distinct pointer
|
2015-01-26 19:43:25 +01:00
|
|
|
QModelIndex* = ref object of RootObj ## A QModelIndex
|
2015-01-18 12:26:51 +01:00
|
|
|
data: RawQModelIndex
|
|
|
|
deleted: bool
|
2015-01-19 22:23:18 +01:00
|
|
|
|
|
|
|
RawQAbstractListModel = distinct pointer
|
2015-01-20 21:18:58 +01:00
|
|
|
QAbstractListModelObj = object of RootObj
|
2015-01-19 22:23:18 +01:00
|
|
|
data: RawQAbstractListModel
|
|
|
|
deleted: bool
|
2015-01-26 19:11:50 +01:00
|
|
|
QAbstractListModel* = ref QAbstractListModelObj ## A QAbstractListModel
|
2015-01-31 12:50:14 +01:00
|
|
|
|
|
|
|
RawQHashIntByteArray = distinct pointer
|
|
|
|
QHashIntByteArrayObj = object of RootObj
|
|
|
|
data: RawQHashIntByteArray
|
|
|
|
deleted: bool
|
2015-01-31 14:20:36 +01:00
|
|
|
QHashIntByteArray* = ref QHashIntByteArrayObj ## A QHash<int,QByteArray>
|