mirror of
https://github.com/Airr/nim-cocoa.git
synced 2024-11-24 09:45:30 +00:00
Updated tabbox example
This commit is contained in:
parent
101e9a991a
commit
410d019541
@ -3,7 +3,7 @@ import Cocoa
|
||||
const
|
||||
winStyle = NSWindowStyleMaskTitled or NSWindowStyleMaskClosable
|
||||
|
||||
var win, radio1, radio2, radio3, radioContainer, tab, lbl1: ID
|
||||
var win, radio1, radio2, radio3, tab, lbl1: ID
|
||||
var cbo: ID
|
||||
|
||||
proc radioCB(sender: ID) {.cdecl.} =
|
||||
@ -13,23 +13,21 @@ proc comboCB(sender: ID) {.cdecl.} =
|
||||
lbl1.text = "Selected: " & $sender.text
|
||||
|
||||
Cocoa_Init()
|
||||
win = newWindow("NimCocoa Group Box Demo", 400, 200, winStyle)
|
||||
tab = newTabBox(win,"First|Second|Third", 10, 10, 380, 160)
|
||||
# # for x in ["Second", "Third"]: tab.addTab(x)
|
||||
# tab.addTab("Fourth")
|
||||
|
||||
# radioContainer = newContainer(win, "Radio Buttons",20,20,200,120)
|
||||
var tvitem = tab.getTab("First")
|
||||
radio1 = newRadioButton(tvitem,"Radio 1",10,10,100,24,radioCB)
|
||||
radio2 = newRadioButton(tvitem,"Radio 2",10,35,100,24,radioCB)
|
||||
radio3 = newRadioButton(tvitem,"Radio 3",10,60,100,24,radioCB)
|
||||
win = newWindow("NimCocoa Tab Box Demo", 400, 200, winStyle)
|
||||
tab = newTabBox(win,"First|Second", 10, 10, 380, 160)
|
||||
# for x in ["Third","Fourth"]: tab.addTab(x)
|
||||
|
||||
var tabitem = tab.getTab("First")
|
||||
radio1 = newRadioButton(tabitem,"Radio 1",10,10,100,24,radioCB)
|
||||
radio2 = newRadioButton(tabitem,"Radio 2",10,35,100,24,radioCB)
|
||||
radio3 = newRadioButton(tabitem,"Radio 3",10,60,100,24,radioCB)
|
||||
|
||||
lbl1 = newLabel(win, "Selected: None", 20, 170, 200,24)
|
||||
|
||||
tvitem = tab.getTab("Second")
|
||||
cbo = newComboBox(tvitem,10,10,200,26, comboCB)
|
||||
tabitem = tab.getTab("Second")
|
||||
cbo = newComboBox(tabitem,10,10,200,26, comboCB)
|
||||
for x in ["Apples","Oranges","Peaches"]: cbo.add(x)
|
||||
cbo.text = "Apples"
|
||||
cbo.text = "Peaches"
|
||||
|
||||
|
||||
Cocoa_Run(win)
|
||||
Cocoa_Run(win)
|
||||
|
Loading…
Reference in New Issue
Block a user