mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 05:57:04 +00:00
- Current theme blend is available via CPApplication -themeBlend. - List of themes is available via CPApplication -themes. - CPThemeBlend adds the following methods: themes themeNames - CPTheme adds a number of methods to access theme attributes: classNames attributesForClass: attributeNamesForClass: attributeWithName:forClass: (was _attributeWithName:forClass:) valueForAttributeWithName:forClass valueForAttributeWithName:inState:forClass: - _CPThemeAttribute -values was added to access the dictionary of attribute values. - Theme browser application that demonstrates the API. - In the course of making the test app, added the function CGInsetEqualToInset().
19 lines
316 B
Plaintext
Executable File
19 lines
316 B
Plaintext
Executable File
/*
|
|
* AppController.j
|
|
* TableCibTest
|
|
*
|
|
* Created by Francisco Tolmasky on July 5, 2009.
|
|
* Copyright 2009, 280 North, Inc. All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|