You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to eql-...@googlegroups.com
I've added generation of wrapper functions for all (more than 4000) Qt methods (see "src/lisp/define-all-wrappers.lisp").
After loading "src/lisp/all-wrappers.lisp", Qt function calls can be written like this:
(|show| widget)
(|toString| (|currentTime.QTime|)) ; static function
(|begin(QWidget*)| painter) ; type list where needed
The advantages are:
- tab completion in Emacs (more than 4000 functions) - ambiguous type lists: tab completion will show all options - no more casts needed (see note in Sokoban example)
See also new "README-OPTIONAL.txt" (for integrating wrappers permanently).