;; 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.2 2004/10/31 12:05:52 espen Exp $
+;; $Id: gtkutils.lisp,v 1.4 2004/12/04 18:24:01 espen Exp $
(in-package "GTK")
-
-(defun v-box-new (&optional homogeneous (spacing 0))
- (make-instance 'v-box :homogeneous homogeneous :spacing spacing))
-
-(defun create-button (specs &optional callback &rest args)
+(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
- #'(lambda ()
- (apply (funcallable callback) args)))
+ (signal-connect button 'clicked callback :object object)
(setf (widget-sensitive-p button) nil))
button)))
-(defun button-new (label &optional callback)
- (let ((button (make-instance 'button :label label)))
- (when callback
- (signal-connect button 'clicked callback))
- button))
-(defun label-new (label)
- (make-instance 'label :label label))
+(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
button)))
specs)))
-(defun create-option-menu (specs active &optional callback &rest initargs)
- (let ((menu (make-instance 'menu))
- (group nil)
- (i 0))
- (dolist (spec specs)
- (destructuring-bind (label &optional item-callback) (mklist spec)
- (let ((menu-item
- (apply
- #'make-instance 'radio-menu-item
- :label label :active (= i active) initargs)))
- (when group (%radio-menu-item-set-group menu-item group))
- (setq group (%radio-menu-item-get-group menu-item))
- (cond
- (callback
- (signal-connect menu-item 'activated callback :object t))
- (item-callback
- (signal-connect menu-item 'toggled item-callback :object t)))
- (incf i)
- (menu-shell-append menu menu-item))))
-
- (make-instance 'option-menu :history active :menu menu)))
-
-;; (defun sf (n)
-;; (coerce n 'single-float))
(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 create-action (name &optional stock-id label accelerator tooltip
+ callback &rest initargs)
+ (let ((action (apply #'make-instance 'action
+ :name (string name) :stock-id stock-id :label label
+ :tooltip tooltip :accelerator accelerator initargs)))
+ (when callback
+ (signal-connect action 'activate callback))
+ action))
+
+(defun create-toggle-action (name &optional stock-id label accelerator
+ tooltip active callback &rest initargs)
+ (let ((action (apply #'make-instance 'toggle-action
+ :name (string name) :stock-id stock-id :label label
+ :tooltip tooltip :active active :accelerator accelerator
+ initargs)))
+ (when callback
+ (signal-connect action 'activate
+ #'(lambda ()
+ (funcall callback (toggle-action-active-p action))))
+ (funcall callback active))
+ action))
+
+(defun create-radio-actions (specs &optional active callback &rest initargs)
+ (loop
+ with group = nil
+ for spec in specs
+ collect (destructuring-bind (name &optional stock-id label accelerator
+ tooltip (value name))
+ (mklist spec)
+ (let ((action (apply #'make-instance 'radio-action
+ :name (string name) :stock-id stock-id
+ :label label :tooltip tooltip
+ :accelerator accelerator initargs)))
+ (when (equal active value)
+ (setf (toggle-action-active-p action) t)
+ (when callback
+ (funcall callback value)))
+
+ (if (not group)
+ (setq group action)
+ (radio-action-add-to-group action group))
+ (when callback
+ (signal-connect action 'activate
+ #'(lambda ()
+ (funcall callback value))))
+ action))))