X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/5d7ab8e936e5f667483efbf0f0dc947ae33e415e..8f49b7a10a9717890ca98dff2b01799b80ce2761:/gtk/gtktree.lisp diff --git a/gtk/gtktree.lisp b/gtk/gtktree.lisp index 89e103b..4d11b83 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.29 2007-08-20 11:20:21 espen Exp $ +;; $Id: gtktree.lisp,v 1.34 2008-04-11 20:53:32 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)) @@ -368,7 +369,7 @@ (defmethod allocate-foreign ((reference tree-row-reference) &key model path) (%tree-row-reference-new model path)) -(defbinding tree-row-reference-get-path () tree-path +(defbinding tree-row-reference-get-path () (or null tree-path) (reference tree-row-reference)) (defbinding (tree-row-reference-valid-p "gtk_tree_row_reference_valid") () boolean @@ -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 @@ -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