git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Updating ITKit to be an Xcode project.
[ITKit.git]
/
Showcase
/
Controller.m
diff --git
a/Showcase/Controller.m
b/Showcase/Controller.m
index
71463aa
..
5b655a6
100755
(executable)
--- a/
Showcase/Controller.m
+++ b/
Showcase/Controller.m
@@
-27,6
+27,11
@@
- (void)awakeFromNib
{
[self createStatusItem];
- (void)awakeFromNib
{
[self createStatusItem];
+ [button setBezelStyle:1001];
+ [button setFont:[NSFont fontWithName:@"Lucida Grande Bold" size:14]];
+ [button setTitle:@"Launch Manually"];
+ [button sizeToFit];
+ [button setFrameSize:NSMakeSize([button frame].size.width + 8, 24)];
[testTextField setCastsShadow:YES];
[tabView setAllowsDragging:YES];
[bevelView setBevelDepth:10];
[testTextField setCastsShadow:YES];
[tabView setAllowsDragging:YES];
[bevelView setBevelDepth:10];
@@
-180,7
+185,7
@@
// Add 4.0 to the final textHeight to accomodate the shadow.
textHeight += 4.0;
// Add 4.0 to the final textHeight to accomodate the shadow.
textHeight += 4.0;
-
+ NSLog(@"%f", textHeight);
// Set the content height to the greater of the text and image heights.
contentHeight = ( ( imageHeight > textHeight ) ? imageHeight : textHeight );
// Set the content height to the greater of the text and image heights.
contentHeight = ( ( imageHeight > textHeight ) ? imageHeight : textHeight );
@@
-213,6
+218,7
@@
[textField setTextColor:[NSColor whiteColor]];
[textField setCastsShadow:YES];
[textField setStringValue:text];
[textField setTextColor:[NSColor whiteColor]];
[textField setCastsShadow:YES];
[textField setStringValue:text];
+ [textField setShadowSaturation:[swShadowSaturation floatValue]];
[[statusWindow contentView] addSubview:textField];
[[statusWindow contentView] setNeedsDisplay:YES];
[[statusWindow contentView] addSubview:textField];
[[statusWindow contentView] setNeedsDisplay:YES];
@@
-332,6
+338,13
@@
[bevelView setBevelDepth:[sender intValue]];
}
[bevelView setBevelDepth:[sender intValue]];
}
+
+/*************************************************************************/
+#pragma mark -
+#pragma mark ITButton SUPPORT
+/*************************************************************************/
+
+
/*************************************************************************/
#pragma mark -
#pragma mark NSWindow DELEGATE METHODS
/*************************************************************************/
#pragma mark -
#pragma mark NSWindow DELEGATE METHODS