mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-08 02:33:37 +00:00
15 lines
494 B
Nim
15 lines
494 B
Nim
import tables
|
|
|
|
type
|
|
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
|
|
name*: string
|
|
data*: pointer
|
|
slots*: Table[string, cint]
|
|
signals*: Table[string, cint]
|
|
properties*: Table[string, cint]
|
|
QQuickView* = distinct pointer ## A QQuickView
|