mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
Copying previous constants Removing unnecessary constants Borrowing initialization from my old implementation. Refactoring the initialization method and adding setBackgroundColor: override. Removing +initialize (no theming support yet) and -viewDidMoveToWindow (not sure why this was there?) Implement the bulk of the new CPTabView Adding delegate selectors. Don't think this is complete, though. What about when a user clicks on a segmented tab control?! Adding delegate Think I may have fixed the delegate blocking for selected segment control items Adding tests. Fixing a bug by reverting to old way. Delegates still broken. Cleaning up the test. Resolving delegate issues (thanks Saikat!). Switching tab appearance based on type enum. Updating tests to slightly test this. Conflicts: AppKit/CPTabView2.j
19 lines
299 B
Plaintext
19 lines
299 B
Plaintext
/*
|
|
* AppController.j
|
|
* CPTabView2
|
|
*
|
|
* Created by You on August 27, 2010.
|
|
* Copyright 2010, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|