mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 22:17:03 +00:00
This commit adds support for the segment selection bindings: selectedIndex, selectedLabel, and selectedTag. Sample app included.
19 lines
317 B
Plaintext
19 lines
317 B
Plaintext
/*
|
|
* AppController.j
|
|
* CPSegmentedControlBindings
|
|
*
|
|
* Created by You on November 24, 2012.
|
|
* Copyright 2012, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|