qtools
qtools copied to clipboard
Qtools is a collection of utilities to aid development with CommonQt
Hello This question is kind of similar to #35 which I've commented on, but I think it deserves a new issue. I have this problem when using latest 64bit SBCL...
Hello, I am trying to make an application with QTools on NixOS. After following the instructions of a basic ASDF system on [http://shinmera.github.io/qtools/](url), After running `(ql:quickload :learning-qtools)` I get some...
Today I was trying to check out how deployment worked but I ran into some issues. When I moved the deployment files over to a new windows computer it was...
I wrote something like this ``` (define-widget main-window (QWidget) ()) (define-subwidget (main-window writing-desk) (q+:make-qtextedit main-window)) (defun start () (with-main-window (window 'main-window))) ``` then in the text edit I got, I...
Testcase is `(defclass data-item () ((slot-1 :initarg :slot1 :initform "" :accessor slot1) (slot-2 :initarg :slot2 :initform "" :accessor slot2))) (defparameter *data* (coerce (list (make-instance 'data-item :slot1 "slot1-1" :slot2 21) (make-instance...
On Windows, running a deployed application results in: ``` $ DEPLOY_DEBUG_BOOT=true ./raptor-splitter.exe ==> Performing warm boot. -> Runtime directory is C:/Users/Raptor/Downloads/bin/ -> Resource directory is C:/Users/Raptor/Downloads/bin/ ==> Running boot hooks....
The documentation at https://shinmera.github.io/qtools/ lists all symbols for package `CL+QT` (`ORG.SHIRAKUMO.QTOOLS+COMMON-LISP`), meaning that it lists all of the CL symbols. I think that's superfluous.
After updating and clearing SBCL & quicklisp, I don't have the previously reported issue with SLIME (#16), now I have an error of loading foreign library ## To reproduce Load...
I'm using SBCL 1.3.20 (on Ubuntu 16.04) and I sporadically get the following error when using with-main-window A simple application lsuch as following: ``` (define-widget notepad (QWidget) ()) (define-subwidget (notepad...
Execute the following in the REPL: ```common-lisp (ql:quickload :qtools) (named-readtables:in-readtable :qtools) (asdf:load-system :esrap :force t) ``` Result on SBCL: ``` ; file: /home/phoe/.roswell/lisp/quicklisp/dists/quicklisp/software/esrap-20190107-git/src/expressions.lisp ; in: DEFUN EXPRESSION-EQUAL-P ; (DYNAMIC-EXTENT (CL+QT:FUNCTION...