X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/db85b082ab89c5dcc5debd7b706548ab8e3ea623..93e0d5bc5e81fbb1db15e30dee592364a986be41:/gtk/gtk.lisp?ds=sidebyside diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index 0d0c8f5..f054449 100644 --- a/gtk/gtk.lisp +++ b/gtk/gtk.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gtk.lisp,v 1.59 2006-02-28 16:29:45 espen Exp $ +;; $Id: gtk.lisp,v 1.61 2006-04-25 13:37:29 espen Exp $ (in-package "GTK") @@ -45,7 +45,7 @@ (format nil "Gtk+ v~A.~A.~A" major minor micro)))) (defun clg-version () - "clg 0.92") + "clg 0.92.1") ;;;; Initalization @@ -73,6 +73,21 @@ (setq *max-event-to-sec* 0) (setq *max-event-to-usec* 1000)))) +#+sbcl +(defun clg-init-with-threading (&optional display) + "Initializes the system and starts the event handling" + (unless (gdk:display-get-default) + (gdk:gdk-init) + (gdk:threads-set-lock-functions) + (unless (gtk-init) + (error "Initialization of GTK+ failed.")) + (sb-thread:make-thread + #'(lambda () + (gdk:display-open display) + (gdk:with-global-lock (main))) + :name "gtk event loop"))) + + ;;; Generic functions (defgeneric add-to-radio-group (item1 item2))