EditProjectWC.h 643 B

123456789101112131415161718192021222324252627
  1. //
  2. // EditProjectWC.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/23.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import "DropImageView.h"
  10. @class ProjectInfo;
  11. @interface EditProjectWC : NSWindowController<DropImageViewDelegate>
  12. @property (strong) ProjectInfo *projectInfo;
  13. @property (strong) NSObjectController *ocBean;
  14. @property BOOL isHttp;
  15. @property (weak) IBOutlet DropImageView *iconDropView;
  16. @property (weak) IBOutlet DropImageView *topDropView;
  17. @property (weak) IBOutlet DropImageView *screenShotDropView;
  18. - (void)setHttpState:(BOOL) isHttp;
  19. + (void)alertWithError:(NSString*) mes;
  20. @end