ImageNameTestDelegates.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. Licensed to the Apache Software Foundation (ASF) under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. The ASF licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing,
  11. software distributed under the License is distributed on an
  12. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  13. KIND, either express or implied. See the License for the
  14. specific language governing permissions and limitations
  15. under the License.
  16. */
  17. #import <Foundation/Foundation.h>
  18. #import <Cordova/CDVScreenOrientationDelegate.h>
  19. @interface PortraitOnly : NSObject <CDVScreenOrientationDelegate>
  20. @end
  21. @interface PortraitUpsideDownOnly : NSObject <CDVScreenOrientationDelegate>
  22. @end
  23. @interface AllPortraitOnly : NSObject <CDVScreenOrientationDelegate>
  24. @end
  25. @interface LandscapeLeftOnly : NSObject <CDVScreenOrientationDelegate>
  26. @end
  27. @interface LandscapeRightOnly : NSObject <CDVScreenOrientationDelegate>
  28. @end
  29. @interface AllLandscapeOnly : NSObject <CDVScreenOrientationDelegate>
  30. @end
  31. @interface AllOrientations : NSObject <CDVScreenOrientationDelegate>
  32. @end
  33. @interface PortraitAndLandscapeLeftOnly : NSObject <CDVScreenOrientationDelegate>
  34. @end
  35. @interface PortraitAndLandscapeRightOnly : NSObject <CDVScreenOrientationDelegate>
  36. @end
  37. @interface PortraitUpsideDownAndLandscapeLeftOnly : NSObject <CDVScreenOrientationDelegate>
  38. @end
  39. @interface PortraitUpsideDownAndLandscapeRightOnly : NSObject <CDVScreenOrientationDelegate>
  40. @end