PDRCoreWindowManager.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // PDRCore.h
  3. // Pandora
  4. //
  5. // Created by Mac Pro on 12-12-22.
  6. // Copyright 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. #import "PDRCoreDefs.h"
  11. @interface PDRCoreAppDefalutLoadView : UIImageView {
  12. UIImage *_iPadLandscapeImg;
  13. UIImage *_iPadPortraitImg;
  14. UIImageView *_appIconImg;
  15. UILabel *_appNameLable;
  16. }
  17. - (void)setLoadingPage;
  18. - (void)setStoryBoardLaunchScreen;
  19. @end
  20. @class PDRCoreAppWindow;
  21. @class DCUAppBarView;
  22. @class H5CoreAppSafearea;
  23. @interface PDRCoreWindowManager : UIView
  24. @property(nonatomic, readonly)UIGestureRecognizer *edgeGestureRecognizer;
  25. @property(nonatomic, readonly)UIGestureRecognizer *touchEventRecognizer;
  26. @property(nonatomic, readonly)DCUAppBarView *appBarView;
  27. @property(nonatomic, retain)DCUAppBarView* appOutBarView;
  28. @property(nonatomic, readonly)UIView *contentView;
  29. - (void)bringAppWindowToFont:(PDRCoreAppWindow*)window;
  30. - (void)addAppWindow:(PDRCoreAppWindow*)window;
  31. - (void)removeAppWindow:(PDRCoreAppWindow*)window;
  32. - (void)setBarVisble:(BOOL)visable;
  33. - (BOOL)getBarVisble;
  34. - (void)showLoadingPage:(UIView*)view forKey:(NSString*)key;
  35. - (void)endLoadingPageForKey:(NSString*)key;
  36. - (void)startLoadingPage;
  37. - (void)endLoadingPage;
  38. - (void)showIndicatorView;
  39. - (void)hiddenIndicatorView;
  40. - (void)showView:(UIView*)view;
  41. - (void)closeView:(UIView*)view;
  42. - (void)setParentView:(UIView*)pView;
  43. - (void)makeHiddenNavBar;
  44. - (void)tiggerDelayLayout;
  45. //- (void)SetDebugRunMode:(BOOL)bDebug;
  46. @end