mirror of
https://github.com/Airr/nim-cocoa.git
synced 2024-11-24 09:45:30 +00:00
8 lines
333 B
Nim
8 lines
333 B
Nim
{.compile: "widgets/tabview.m".}
|
|
|
|
import NSFunctions
|
|
|
|
proc newTabBox*(parent: ID, label: cstring; left: cint; top: cint; width: cint; height: cint): ID {.cdecl, importc: "createTabView".}
|
|
|
|
proc addTab*(parent: ID, label: cstring) {.cdecl, importc: "addTab".}
|
|
proc getTab*(parent: ID, label: cstring): ID {.cdecl, importc: "getTab".} |