123456789101112131415161718192021222324252627 |
- //
- // EditProjectWC.h
- // UUTUtils
- //
- // Created by zhuge on 2017/12/23.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- #import "DropImageView.h"
- @class ProjectInfo;
- @interface EditProjectWC : NSWindowController<DropImageViewDelegate>
- @property (strong) ProjectInfo *projectInfo;
- @property (strong) NSObjectController *ocBean;
- @property BOOL isHttp;
- @property (weak) IBOutlet DropImageView *iconDropView;
- @property (weak) IBOutlet DropImageView *topDropView;
- @property (weak) IBOutlet DropImageView *screenShotDropView;
- - (void)setHttpState:(BOOL) isHttp;
- + (void)alertWithError:(NSString*) mes;
- @end
|