-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Huge audit of ITKit, mostly everything has been updated to current co…
…ding style and I've removed things that we don't need/that don't belong in ITKit anymore. The only things really left untouched are the class files for anything related to ITTSW.
- Loading branch information
Showing
91 changed files
with
1,434 additions
and
2,722 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,24 @@ | ||
/* | ||
* ITKit | ||
* ITBevelView | ||
* NSView subclass which draws a bevel. | ||
* ITBevelView.h | ||
* | ||
* Original Author : Matthew Judy <[email protected]> | ||
* Responsibility : Matthew Judy <[email protected]> | ||
* NSView subclass which draws a bevel of specified thickness, and resizes its | ||
* first subview to fill the remaining space. | ||
* | ||
* Copyright (c) 2003 iThink Software. | ||
* All Rights Reserved | ||
* Copyright (c) 2005 by iThink Software. | ||
* All Rights Reserved. | ||
* | ||
* $Id$ | ||
* | ||
*/ | ||
|
||
/* | ||
* Draws a bevel of specified thickness, and resizes | ||
* its first subview to fill the remaining space. | ||
*/ | ||
|
||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
|
||
@interface ITBevelView : NSView { | ||
int _bevelDepth; | ||
int _bevelDepth; | ||
} | ||
|
||
- (int)bevelDepth; | ||
- (void)setBevelDepth:(int)newDepth; | ||
|
||
|
||
@end | ||
@end |
Oops, something went wrong.