mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
- CPView and subclasses support multiple-value hidden bindings. - CPControl and subclasses support multiple-value enabled bindings. - CPWindow and CPBox support multiple-value title with pattern bindings. - CPButton supports multiple argument + target bindings. - CPImageView and CPTextField support multiple-value editable bindings. - CPMenuItem supports multiple-value enabled bindings. - Fixed bugs in CPObjectController with simple collection operators. - CPColorWell uses black as the placeholder color. - Runtime object attributes from a cib are applied as they are read, not deferred. - NSNumberFormatter now reads the number style from the xib. - Normalized some parameter names. - Formatting. - Test app for all binding types.
19 lines
294 B
Plaintext
19 lines
294 B
Plaintext
/*
|
|
* AppController.j
|
|
* menu
|
|
*
|
|
* Created by You on January 31, 2013.
|
|
* Copyright 2013, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|