X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/8725ec3490701c585ab922ae874e000e34e02db0..9176d3016a7e5a30d32cbbb68ba4cfbac6ef4394:/gtk/gtktree.lisp diff --git a/gtk/gtktree.lisp b/gtk/gtktree.lisp index b65bc52..81c6896 100644 --- a/gtk/gtktree.lisp +++ b/gtk/gtktree.lisp @@ -1,21 +1,26 @@ -;; Common Lisp bindings for GTK+ v2.0 -;; Copyright (C) 1999-2005 Espen S. Johnsen +;; Common Lisp bindings for GTK+ v2.x +;; Copyright 2004-2005 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. +;; Permission is hereby granted, free of charge, to any person obtaining +;; a copy of this software and associated documentation files (the +;; "Software"), to deal in the Software without restriction, including +;; without limitation the rights to use, copy, modify, merge, publish, +;; distribute, sublicense, and/or sell copies of the Software, and to +;; permit persons to whom the Software is furnished to do so, subject to +;; the following conditions: ;; -;; 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. +;; The above copyright notice and this permission notice shall be +;; included in all copies or substantial portions of the Software. ;; -;; 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 +;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gtktree.lisp,v 1.7 2005-02-27 19:56:06 espen Exp $ +;; $Id: gtktree.lisp,v 1.14 2006-02-09 22:32:47 espen Exp $ (in-package "GTK") @@ -47,12 +52,11 @@ (defbinding cell-layout-reorder () nil (defbinding cell-layout-clear () nil (cell-layout cell-layout)) -(defbinding cell-layout-add-attribute - (cell-layout cell attribute column &optional model) nil +(defbinding cell-layout-add-attribute (cell-layout cell attribute column) nil (cell-layout cell-layout) (cell cell-renderer) ((string-downcase attribute) string) - ((if model (column-index model column) column) int)) + (column int)) (def-callback-marshal %cell-layout-data-func (nil cell-layout cell-renderer tree-model (copy-of tree-iter))) @@ -60,9 +64,9 @@ (def-callback-marshal %cell-layout-data-func (defbinding cell-layout-set-cell-data-func (cell-layout cell function) nil (cell-layout cell-layout) (cell cell-renderer) - ((callback %cell-layout-data-func) pointer) + (%cell-layout-data-func callback) ((register-callback-function function) unsigned-int) - ((callback user-data-destroy-func) pointer)) + (user-data-destroy-func callback)) (defbinding cell-layout-clear-attributes () nil (cell-layout cell-layout) @@ -106,7 +110,7 @@ (defun list-store-remove (store row) (multiple-value-bind (valid iter) (tree-model-get-iter store row) (if valid (%list-store-remove store iter) - (error "~A not poiniting to av valid iterator in ~A" row store)))) + (error "~A not poiniting to a valid iterator in ~A" row store)))) (tree-row-reference (let ((path (tree-row-reference-get-path row))) (if path @@ -272,19 +276,23 @@ (defmethod writer-function ((type (eql 'tree-path)) &rest args) (defmethod reader-function ((type (eql 'tree-path)) &rest args) (declare (ignore type args)) (let ((reader (reader-function 'pointer))) - #'(lambda (location &optional (offset 0)) + #'(lambda (location &optional (offset 0) weak-p) + (declare (ignore weak-p)) (%tree-path-to-vector (funcall reader location offset))))) +(defmethod destroy-function ((type (eql 'tree-path)) &rest args) + (declare (ignore type args)) + (let ((reader (reader-function 'pointer))) + #'(lambda (location &optional (offset 0)) + (%tree-path-free (funcall reader location offset))))) + (defbinding %tree-row-reference-new () pointer (model tree-model) (path tree-path)) -(defmethod initialize-instance ((reference tree-row-reference) &key model path) - (setf - (slot-value reference 'location) - (%tree-row-reference-new model path)) - (call-next-method)) +(defmethod allocate-foreign ((reference tree-row-reference) &key model path) + (%tree-row-reference-new model path)) (defbinding tree-row-reference-get-path () tree-path (reference tree-row-reference)) @@ -313,8 +321,15 @@ (defbinding %tree-model-get-value () nil (column int) (gvalue gvalue)) -(defun tree-model-column-value (model iter column) - (let ((index (column-index model column))) +(defun tree-model-value (model row column) + (let ((index (column-index model column)) + (iter (etypecase row + (tree-iter row) + (tree-path (multiple-value-bind (valid iter) + (tree-model-get-iter model row) + (if valid + iter + (error "Invalid tree path: ~A" row))))))) (with-gvalue (gvalue) (%tree-model-get-value model iter index gvalue)))) @@ -355,7 +370,7 @@ (def-callback-marshal %tree-model-foreach-func (defbinding %tree-model-foreach () nil (tree-model tree-model) - ((callback %tree-model-foreach-func) pointer) + ((progn %tree-model-foreach-func) callback) (callback-id unsigned-int)) (defun tree-model-foreach (model function) @@ -404,6 +419,9 @@ (defun column-index (model column) :test #'string=))) (error "~A has no column ~S" model column))) +(defun column-name (model index) + (svref (object-data model 'column-names) index)) + (defun tree-model-column-value-setter (model column) (let ((setters (or (object-data model 'column-setters) @@ -441,9 +459,16 @@ (defun tree-model-row-setter (model) (funcall setter value iter)) row setters))))))) -(defun (setf tree-model-column-value) (value model iter column) - (funcall (tree-model-column-value-setter model column) value iter) - value) +(defun (setf tree-model-value) (value model row column) + (let ((iter (etypecase row + (tree-iter row) + (tree-path (multiple-value-bind (valid iter) + (tree-model-get-iter model row) + (if valid + iter + (error "Invalid tree path: ~A" row))))))) + (funcall (tree-model-column-value-setter model column) value iter) + value)) (defun (setf tree-model-row-data) (data model iter) (funcall (tree-model-row-setter model) data iter) @@ -455,7 +480,7 @@ (defun %tree-model-set (model iter data) (cons (loop as (column value . rest) = data then rest - do (setf (tree-model-column-value model iter column) value) + do (setf (tree-model-value model iter column) value) while rest)))) @@ -465,9 +490,9 @@ (def-callback-marshal %tree-selection-func (boolean tree-selection tree-model (p (defbinding tree-selection-set-select-function (selection function) nil (selection tree-selection) - ((callback %tree-selection-func) pointer) + (%tree-selection-func callback) ((register-callback-function function) unsigned-int) - ((callback user-data-destroy-func) pointer)) + (user-data-destroy-func callback)) (defbinding tree-selection-get-selected (selection &optional (iter (make-instance 'tree-iter))) boolean @@ -479,7 +504,7 @@ (def-callback-marshal %tree-selection-foreach-func (nil tree-model (path (copy-o (defbinding %tree-selection-selected-foreach () nil (tree-selection tree-selection) - ((callback %tree-selection-foreach-func) pointer) + ((progn %tree-selection-foreach-func) callback) (callback-id unsigned-int)) (defun tree-selection-selected-foreach (selection function) @@ -549,6 +574,73 @@ (defbinding tree-selection-unselect-range () nil (end tree-path)) +;;; Tree Sortable + +(eval-when (:compile-toplevel :load-toplevel :execute) + (define-enum-type sort-column (:default -1) (:unsorted -2)) + (define-enum-type sort-order (:before -1) (:equal 0) (:after 1))) + + +(def-callback-marshal %tree-iter-compare-func + ((or int sort-order) tree-model (a (copy-of tree-iter)) (b (copy-of tree-iter)))) + +(defbinding tree-sortable-sort-column-changed () nil + (sortable tree-sortable)) + +(defbinding %tree-sortable-get-sort-column-id () boolean + (sortable tree-sortable) + (column int :out) + (order sort-type :out)) + +(defun tree-sortable-get-sort-column (sortable) + (multiple-value-bind (special-p column order) + (%tree-sortable-get-sort-column-id sortable) + (values + (if special-p + (int-to-sort-order column) + (column-name sortable column)) + order))) + +(defbinding (tree-sortable-set-sort-column + "gtk_tree_sortable_set_sort_column_id") + (sortable column order) nil + (sortable tree-sortable) + ((etypecase column + ((or integer sort-column) column) + (symbol (column-index sortable column))) + (or sort-column int)) + (order sort-type)) + +(defbinding %tree-sortable-set-sort-func (sortable column function) nil + (sortable tree-sortable) + ((column-index sortable column) int) + (%tree-iter-compare-func callback) + ((register-callback-function function) unsigned-int) + (user-data-destroy-func callback)) + +(defbinding %tree-sortable-set-default-sort-func () nil + (sortable tree-sortable) + (compare-func (or null pointer)) + (callback-id unsigned-int) + (destroy-func (or null pointer))) + +(defun tree-sortable-set-sort-func (sortable column function) + "Sets the comparison function used when sorting to be FUNCTION. If +the current sort column of SORTABLE is the same as COLUMN, +then the model will sort using this function." + (cond + ((and (eq column :default) (not function)) + (%tree-sortable-set-default-sort-func sortable nil 0 nil)) + ((eq column :default) + (%tree-sortable-set-default-sort-func sortable + (callback %tree-iter-compare-func) + (register-callback-function function) + (callback user-data-destroy-func))) + ((%tree-sortable-set-sort-func sortable column function)))) + +(defbinding tree-sortable-has-default-sort-func-p () boolean + (sortable tree-sortable)) + ;;; Tree Store @@ -761,7 +853,7 @@ (def-callback-marshal %tree-view-mapping-func (nil tree-view (path (copy-of tree (defbinding %tree-view-map-expanded-rows () nil (tree-view tree-view) - ((callback %tree-view-mapping-func) pointer) + ((progn %tree-view-mapping-func) callback) (callback-id unsigned-int)) (defun map-expanded-rows (function tree-view) @@ -801,5 +893,127 @@ (defbinding tree-view-get-visible-rect () nil ;; and many more functions which we'll add later -;;; Tree View Column +;;;; Icon View + +#+gtk2.6 +(progn + (defbinding icon-view-get-path-at-pos () tree-path + (icon-view icon-view) + (x int) (y int)) + (def-callback-marshal %icon-view-foreach-func + (nil icon-view (path (copy-of tree-path)))) + + (defbinding %icon-view-selected-foreach () tree-path + (icon-view icon-view) + ((progn %icon-view-foreach-func) callback) + (callback-id unsigned-int)) + + (defun icon-view-foreach (icon-view function) + (with-callback-function (id function) + (%icon-view-selected-foreach icon-view id))) + + (defbinding icon-view-select-path () nil + (icon-view icon-view) + (path tree-path)) + + (defbinding icon-view-unselect-path () nil + (icon-view icon-view) + (path tree-path)) + + (defbinding icon-view-path-is-selected-p () boolean + (icon-view icon-view) + (path tree-path)) + + (defbinding icon-view-get-selected-items () (glist tree-path) + (icon-view icon-view)) + + (defbinding icon-view-select-all () nil + (icon-view icon-view)) + + (defbinding icon-view-unselect-all () nil + (icon-view icon-view)) + + (defbinding icon-view-item-activated () nil + (icon-view icon-view) + (path tree-path)) + + (defbinding %icon-view-set-text-column (column icon-view) nil + (icon-view icon-view) + ((if (integerp column) + column + (column-index (icon-view-model icon-view) column)) int)) + + (defbinding %icon-view-set-markup-column (column icon-view) nil + (icon-view icon-view) + ((if (integerp column) + column + (column-index (icon-view-model icon-view) column)) int)) + + (defbinding %icon-view-set-pixbuf-column (column icon-view) nil + (icon-view icon-view) + ((if (integerp column) + column + (column-index (icon-view-model icon-view) column)) int))) + +#+gtk2.8 +(progn + (defbinding icon-view-get-item-at-pos () boolean + (icon-view icon-view) + (x int) + (y int) + (tree-path tree-path :out) + (cell cell-renderer :out)) + + (defbinding icon-view-set-cursor (icon-view path &key cell start-editing) nil + (icon-view icon-view) + (path tree-path) + (cell (or null cell-renderer)) + (start-editing boolean)) + + (defbinding icon-view-get-cursor () boolean + (icon-view icon-view) + (path tree-path :out) + (cell cell-renderer :out)) + + (defbinding icon-view-get-dest-item-at-pos () boolean + (icon-view icon-view) + (drag-x int) + (drag-y int) + (tree-path tree-path :out) + (pos drop-position :out)) + + (defbinding icon-view-create-drag-icon () gdk:pixmap + (icon-view icon-view) + (tree-path tree-path)) + + (defbinding icon-view-scroll-to-path (icon-view tree-path &key row-align column-align) nil + (icon-view icon-view) + (tree-path tree-path) + ((or row-align column-align) boolean) + (row-align single-float) + (column-align single-float)) + + (defbinding icon-view-get-visible-range () boolean + (icon-view icon-view) + (start-path tree-path :out) + (end-path tree-path :out)) + +;; (defbinding icon-view-enable-model-drag-source () nil +;; (icon-view icon-view) +;; (start-button-mask gdk:modifier-type) +;; (targets (vector target-entry)) +;; ((length targets) unsigned-int) +;; (actions gdk:drag-action)) + +;; (defbinding icon-view-enable-model-drag-dest () nil +;; (icon-view icon-view) +;; (targets (vector target-entry)) +;; ((length targets) unsigned-int) +;; (actions gdk:drag-action)) + + (defbinding icon-view-unset-model-drag-source () nil + (icon-view icon-view)) + + (defbinding icon-view-unset-model-drag-dest () nil + (icon-view icon-view)))