mirror of
https://github.com/Airr/nim-cocoa.git
synced 2024-11-24 09:45:30 +00:00
Added 'setDelegate' method
This commit is contained in:
parent
2ce602f403
commit
82ab438219
@ -104,6 +104,7 @@ proc clear*(widget: ID) {.cdecl, importc: "LB_Clear".}
|
||||
proc `item=`(widget: ID; pos: cint) {.cdecl, importc: "SetItem".}
|
||||
proc remove*(widget: ID; pos: cint) {.cdecl, importc: "RemoveItem".}
|
||||
proc link*( widget: ID, widgetIvar: cstring, target: ID, targetIvar: cstring) {.cdecl, importc:"bindWidget".}
|
||||
proc setDelegate*(widget: ID) {.cdecl, importc: "setDelegate".}
|
||||
proc `tooltip=`*(widget: ID, tip: cstring) {.cdecl, importc: "setToolTip".}
|
||||
|
||||
# TableView Functions
|
||||
|
@ -79,6 +79,7 @@ proc newMenu*(Title: cstring): id {.cdecl, importc: "createMenu".}
|
||||
proc newMenuItem*(parent: id; caption: cstring; key: cstring; callback: ACTION) {.cdecl, importc: "createMenuItem".}
|
||||
proc newMenuSeparator*(parent: id) {.cdecl, importc: "createMenuSeparator".}
|
||||
proc newSlider*(parent: id; left: cint; top: cint; width: cint; height: cint; callback: ACTION): id {.cdecl, importc: "createSlider".}
|
||||
proc setDelegate*(widget: ID) {.cdecl, importc: "setDelegate".}
|
||||
|
||||
proc `text=`*(widget: id; txt: cstring) =
|
||||
widget.SetText(txt)
|
||||
|
Loading…
Reference in New Issue
Block a user