Split up in qt.gui & cleanup name prefix.
Annotate for file src/ownership.lisp
2010-01-10 tobias 1 (in-package :cl-smoke.qt.gui)
2009-05-31 tobias 2
2009-06-10 tobias 3 ;; undo-stack
2009-06-11 tobias 4 (define-takes-ownership cxx:push ((undo-stack qt:undo-stack) undo-command)
2009-05-31 tobias 5 undo-command)
2009-06-10 tobias 6
12:14:34 ' 7
' 8 #|
' 9 ;; FIXME TODO
' 10 ;; application
' 11 (define-takes-ownership cxx:set-style ((application application) (style style))
' 12 ;; NOT QString style
' 13 style) ;; STATIC
' 14
' 15
' 16 ;; core-application
' 17 (define-takes-ownership cxx:post-event ((app core-application) receiver (event event))
' 18 event) ;; STATIC
' 19 (define-takes-ownership cxx:post-event ((app core-application) receiver event priority)
' 20 event) ;; STATIC
' 21 |#
' 22
' 23 ;; AbstractFileEngine::beginEntryList return value
' 24
' 25 ;; grid-layout
2009-06-11 tobias 26 (define-takes-ownership cxx:add-item ((layout qt:grid-layout) (item qt:layout-item)
2009-06-10 tobias 27 row column)
12:14:34 ' 28 item)
2009-06-11 tobias 29 (define-takes-ownership cxx:add-item ((layout qt:grid-layout) (item qt:layout-item)
2009-06-10 tobias 30 row column row-span)
12:14:34 ' 31 item)
2009-06-11 tobias 32 (define-takes-ownership cxx:add-item ((layout qt:grid-layout) (item qt:layout-item)
2009-06-10 tobias 33 row column row-span colum-span)
12:14:34 ' 34 item)
2009-06-11 tobias 35 (define-takes-ownership cxx:add-item ((layout qt:grid-layout) (item qt:layout-item)
2009-06-10 tobias 36 row column row-span colum-span aligment)
12:14:34 ' 37 item)
' 38
2009-06-11 tobias 39 (define-takes-ownership cxx:add-item ((layout qt:layout) (item qt:layout-item))
2009-06-10 tobias 40 item)
12:14:34 ' 41
' 42 ;; QIcon::QIcon(QIconEngine* engine)
' 43
2009-06-11 tobias 44 (define-takes-ownership cxx:register-editor ((factory qt:item-editor-factory)
2009-06-10 tobias 45 type creator)
12:14:34 ' 46 creator)
' 47
' 48
2009-06-11 tobias 49 (define-takes-ownership cxx:set-child ((this qt:standard-item) row colum item)
2009-06-10 tobias 50 item)
2009-06-11 tobias 51 (define-takes-ownership cxx:set-child ((this qt:standard-item) row item)
2009-06-10 tobias 52 item)
2009-06-11 tobias 53 (define-takes-ownership cxx:set-horizontal-header-item ((this qt:standard-item-model)
2009-06-10 tobias 54 column item)
12:14:34 ' 55 item)
2009-06-11 tobias 56 (define-takes-ownership cxx:set-vertical-header-item ((this qt:standard-item-model)
2009-06-10 tobias 57 row item)
12:14:34 ' 58 item)
2009-06-11 tobias 59 (define-takes-ownership cxx:set-item ((this qt:standard-item-model)
2009-06-10 tobias 60 row column item)
12:14:34 ' 61 item)
2009-06-11 tobias 62 (define-takes-ownership cxx:set-item ((this qt:standard-item-model)
2009-06-10 tobias 63 row item)
12:14:34 ' 64 item)
2009-06-11 tobias 65 (define-takes-ownership cxx:set-item-prototype ((this qt:standard-item-model)
2009-06-10 tobias 66 item)
12:14:34 ' 67 item)
' 68
' 69
' 70 ;; Allocates return value
' 71 ;; QLineEdit::createStandardContextMenu()
' 72
' 73 ;; parent
' 74 ;; QListwidgetitem
' 75
' 76
2009-07-01 tobias 77 ;; Releases ownership
2009-06-10 tobias 78 ;;QList<QStandardItem *> QStandardItemModel::takeColumn ( int column )
12:14:34 ' 79 ;; etc