Changeset 537
- Timestamp:
- 07/14/08 17:51:56 (3 months ago)
- Files:
-
- trunk/wrap/APILookupGtk.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wrap/APILookupGtk.txt
r536 r537 2978 2978 * TRUE if a row exists at that coordinate. 2979 2979 */ 2980 intgetPathAtPos(gint x, gint y, inout TreePath path, inout TreeViewColumn column, out gint cellX, out gint cellY)2980 bool getPathAtPos(gint x, gint y, inout TreePath path, inout TreeViewColumn column, out gint cellX, out gint cellY) 2981 2981 { 2982 2982 GtkTreePath* p = (path is null) ? null : path.getTreePathStruct(); 2983 2983 GtkTreeViewColumn* c = (column is null) ? null : column.getTreeViewColumnStruct(); 2984 2984 2985 intresult = gtk_tree_view_get_path_at_pos(gtkTreeView, x, y, &p, &c, &cellX, &cellY)2985 bool result = gtk_tree_view_get_path_at_pos(gtkTreeView, x, y, &p, &c, &cellX, &cellY) 2986 2986 == 0 ? false : true; 2987 2987
