;; Common Lisp bindings for GTK+ v2.0 ;; Copyright (C) 1999-2000 Espen S. Johnsen ;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public ;; License as published by the Free Software Foundation; either ;; version 2 of the License, or (at your option) any later version. ;; ;; This library is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Lesser General Public License for more details. ;; ;; You should have received a copy of the GNU Lesser General Public ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ;; $Id: gtkutils.lisp,v 1.7 2005-04-19 08:12:58 espen Exp $ (in-package "GTK") (defun create-button (specs &optional callback &key object) (destructuring-bind (label &rest initargs) (mklist specs) (let ((button (apply #'make-instance 'button :label label :visible t initargs))) (if callback (signal-connect button 'clicked callback :object object) (setf (widget-sensitive-p button) nil)) button))) (defun create-label (label &rest args) (apply #'make-instance 'label :label label args)) ;; TODO: same syntax as create-button (defun %create-toggleable-button (class label callback initstate initargs) (let ((button (apply #'make-instance class :label label :active initstate :visible t initargs))) (signal-connect button 'toggled #'(lambda () (funcall (funcallable callback) (toggle-button-active-p button)))) (funcall (funcallable callback) initstate) button)) (defun create-toggle-button (label callback &optional initstate &rest initargs) (%create-toggleable-button 'toggle-button label callback initstate initargs)) (defun create-check-button (label callback &optional initstate &rest initargs) (%create-toggleable-button 'check-button label callback initstate initargs)) (defun adjustment-new (value lower upper step-increment page-increment page-size) (make-instance 'adjustment :value value :lower lower :upper upper :step-increment step-increment :page-increment page-increment :page-size page-size)) (defun make-radio-group (type specs callback &rest initargs) (let* ((active ()) (widgets (loop for spec in specs as widget = (apply #'make-instance type (append spec initargs)) do (when callback (apply #'add-activate-callback widget (mklist callback))) (when (and (not active) (getf spec :active)) (setq active widget)) collect widget))) (let ((active (or active (first widgets)))) (loop for widget in widgets unless (eq widget active) do (add-to-radio-group widget active)) (activate-radio-widget active)) widgets))