arkanoid87

Results 115 comments of arkanoid87

just stumbled upon this, should be reopened!

played a bit around this. Problem seems typedef'd structs vs plain ones. c2nim seems to assume that all are of the former kind. struct.h ```C #ifdef C2NIM # header "struct.h"...

Thanks for the feedback. I was not aware that QSortFilterProxyModel was simply a wrapper. If there's no performance difference in editing QAIM via backend, I agree with you. I'll wrap...

I'm building a desktop app with (wannabe) excel like behavior. Sorry if this is more a Q&A comment, but is there a "curated list of QML resources" that fills this...

I think this should be closed

my fault, I saw this closed https://github.com/filcuc/dotherside/issues/63 and I though it was a dangling issue. Sure thing, it requires proper nim binding I'm not a C++ developer nor expert in...

[I see that dotherside already knows about `QVariantList` ](https://github.com/filcuc/dotherside/blob/ed777c13f3791fc7072cefba9723de5dc31f455f/lib/src/DOtherSide.cpp#L516) maybe it could be the shortest path to add this feature

I've successfully passed a list from nim to qml by adding this to dotherside.nim ```nim proc dos_qvariant_setArray(variant: DosQVariant, size: cint, array: ptr DosQVariantArray) {.cdecl, dynlib: dynLibName, importc.} ``` and this...

position of forward declarations: ```bash $ rg "proc [A-Za-z]+\*?\([: a-zA-Z]+\)\$" examples/connections/main.nim 8: proc delete*(self: Contact) 9: proc setup(self: Contact) examples/contactapp/contactlist.nim 13: proc delete(self: ContactList) 14: proc setup(self: ContactList) examples/slotsandproperties/contact.nim 7:...

do we really have to wait a fix in nim compiler if a working solution seems to exist just by avoiding forward declarations of finalizers? ### Custom finalizer not being...