-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
144 additions
and
280 deletions.
There are no files selected for viewing
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
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
Binary file modified
BIN
-2.02 KB
(96%)
...deproj/project.xcworkspace/xcuserdata/lindahai.xcuserdatad/UserInterfaceState.xcuserstate
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// DJLayerView.h | ||
// Playground | ||
// | ||
// Created by fancymax on 16/10/24. | ||
// Copyright © 2016年 Daniel Jackson. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
@interface DJLayerView : NSView | ||
|
||
+(void)showStatus:(NSString*)status FromView:(NSView *)view; | ||
+(void)dismiss; | ||
|
||
// Customization | ||
#define pMaxWidth1 250 | ||
#define pMaxHeight1 200 | ||
|
||
//General Popup Values | ||
@property (nonatomic) CGVector pOffset; | ||
@property (nonatomic) CGFloat pAlpha; | ||
|
||
//Padding | ||
@property (nonatomic) CGFloat pPadding; | ||
|
||
@property (nonatomic) CGSize indicatorSize; | ||
@property (nonatomic) CGVector indicatorOffset; | ||
@property (nonatomic) CGSize labelSize; | ||
@property (nonatomic) CGVector labelOffset; | ||
|
||
@end |
Oops, something went wrong.