X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/d53cf0ec9ee3dc48b13ff1048953d6d365fc3203..953030a3519ecb9d66d9f55d46f8c8b6906094ed:/gtk/gtktree.lisp diff --git a/gtk/gtktree.lisp b/gtk/gtktree.lisp index 8469b04..19eb0d4 100644 --- a/gtk/gtktree.lisp +++ b/gtk/gtktree.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: gtktree.lisp,v 1.28 2007-08-20 10:33:05 espen Exp $ +;; $Id: gtktree.lisp,v 1.33 2008-02-27 21:48:53 espen Exp $ (in-package "GTK") @@ -255,11 +255,12 @@ location)) (defun %tree-path-to-vector (location) - (let ((indices (%tree-path-get-indices location)) - (depth (%tree-path-get-depth location))) - (if (null-pointer-p indices) - #() - (map-c-vector 'vector #'identity indices 'int depth)))) + (unless (null-pointer-p location) + (let ((indices (%tree-path-get-indices location)) + (depth (%tree-path-get-depth location))) + (if (null-pointer-p indices) + #() + (map-c-vector 'vector #'identity indices 'int depth))))) (defmacro %with-tree-path ((var path) &body body) (let* ((pointer-offset (adjust-offset (size-of 'int) 'pointer)) @@ -383,6 +384,12 @@ (model tree-model) (iter tree-iter :in/return) (path tree-path)) + +#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.12.0") +(defmethod allocate-foreign ((tree-iter tree-iter) &rest initargs) + (declare (ignore initargs)) + (let ((size (foreign-size (class-of tree-iter)))) + (slice-alloc size))) (defun ensure-tree-iter (model row) (etypecase row @@ -417,7 +424,7 @@ (coerce (loop with iter = (ensure-tree-iter model row) - for index from 0 to (tree-model-n-columns model) + for index from 0 below (tree-model-n-columns model) collect (tree-model-value model iter index)) 'vector)) @@ -568,15 +575,15 @@ (defbinding %tree-selection-select-iter () nil (tree-selection tree-selection) - (tree-path tree-path)) + (tree-iter tree-iter)) (defbinding %tree-selection-unselect-iter () nil (tree-selection tree-selection) - (tree-path tree-path)) + (tree-iter tree-iter)) (defbinding %tree-selection-iter-is-selected () boolean (tree-selection tree-selection) - (tree-path tree-path)) + (tree-iter tree-iter)) (defun tree-selection-select (selection row) (etypecase row