/BakerView/BakerBook.h

http://github.com/Simbul/baker · C Header · 107 lines · 56 code · 21 blank · 30 comment · 0 complexity · 63a585fee00b086084d4268679fc196e MD5 · raw file

  1. //
  2. // BakerBook.h
  3. // Baker
  4. //
  5. // ==========================================================================================
  6. //
  7. // Copyright (c) 2010-2013, Davide Casali, Marco Colombo, Alessandro Morandi
  8. // All rights reserved.
  9. //
  10. // Redistribution and use in source and binary forms, with or without modification, are
  11. // permitted provided that the following conditions are met:
  12. //
  13. // Redistributions of source code must retain the above copyright notice, this list of
  14. // conditions and the following disclaimer.
  15. // Redistributions in binary form must reproduce the above copyright notice, this list of
  16. // conditions and the following disclaimer in the documentation and/or other materials
  17. // provided with the distribution.
  18. // Neither the name of the Baker Framework nor the names of its contributors may be used to
  19. // endorse or promote products derived from this software without specific prior written
  20. // permission.
  21. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  22. // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  23. // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  24. // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27. // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. //
  31. #import <Foundation/Foundation.h>
  32. @interface BakerBook : NSObject
  33. #pragma mark - HPub Parameters Properties
  34. @property (copy, nonatomic) NSNumber *hpub;
  35. @property (copy, nonatomic) NSString *title;
  36. @property (copy, nonatomic) NSString *date;
  37. @property (copy, nonatomic) NSArray *author;
  38. @property (copy, nonatomic) NSArray *creator;
  39. @property (copy, nonatomic) NSString *publisher;
  40. @property (copy, nonatomic) NSString *url;
  41. @property (copy, nonatomic) NSString *cover;
  42. @property (copy, nonatomic) NSString *orientation;
  43. @property (copy, nonatomic) NSNumber *zoomable;
  44. @property (strong, nonatomic) NSMutableArray *contents;
  45. #pragma mark - Baker HPub Extensions Properties
  46. @property (copy, nonatomic) NSString *bakerBackground;
  47. @property (copy, nonatomic) NSString *bakerBackgroundImagePortrait;
  48. @property (copy, nonatomic) NSString *bakerBackgroundImageLandscape;
  49. @property (copy, nonatomic) NSString *bakerPageNumbersColor;
  50. @property (copy, nonatomic) NSNumber *bakerPageNumbersAlpha;
  51. @property (copy, nonatomic) NSString *bakerPageScreenshots;
  52. @property (copy, nonatomic) NSString *bakerRendering;
  53. @property (copy, nonatomic) NSNumber *bakerVerticalBounce;
  54. @property (copy, nonatomic) NSNumber *bakerVerticalPagination;
  55. @property (copy, nonatomic) NSNumber *bakerPageTurnTap;
  56. @property (copy, nonatomic) NSNumber *bakerPageTurnSwipe;
  57. @property (copy, nonatomic) NSNumber *bakerMediaAutoplay;
  58. @property (copy, nonatomic) NSNumber *bakerIndexWidth;
  59. @property (copy, nonatomic) NSNumber *bakerIndexHeight;
  60. @property (copy, nonatomic) NSNumber *bakerIndexBounce;
  61. @property (copy, nonatomic) NSNumber *bakerStartAtPage;
  62. #pragma mark - Book Status Properties
  63. @property (copy, nonatomic) NSString *ID;
  64. @property (copy, nonatomic) NSString *path;
  65. @property (copy, nonatomic) NSNumber *isBundled;
  66. @property (copy, nonatomic) NSString *screenshotsPath;
  67. @property (copy, nonatomic) NSNumber *screenshotsWritable;
  68. @property (copy, nonatomic) NSNumber *currentPage;
  69. @property (copy, nonatomic) NSNumber *lastScrollIndex;
  70. @property (copy, nonatomic) NSDate *lastOpenedDate;
  71. #pragma mark - Init
  72. - (id)initWithBookPath:(NSString *)bookPath bundled:(BOOL)bundled;
  73. - (id)initWithBookJSONPath:(NSString *)bookJSONPath;
  74. - (id)initWithBookData:(NSDictionary *)bookData;
  75. - (BOOL)loadBookData:(NSDictionary *)bookData;
  76. #pragma mark - HPub validation
  77. - (BOOL)validateBookJSON:(NSDictionary *)bookData withRequirements:(NSArray *)requirements;
  78. - (BOOL)validateArray:(NSArray *)array forParam:(NSString *)param;
  79. - (BOOL)validateString:(NSString *)string forParam:(NSString *)param;
  80. - (BOOL)validateNumber:(NSNumber *)number forParam:(NSString *)param;
  81. - (BOOL)matchParam:(NSString *)param againstParamsArray:(NSArray *)paramsArray;
  82. #pragma mark - Book status management
  83. - (BOOL)updateBookPath:(NSString *)bookPath bundled:(BOOL)bundled;
  84. - (void)openBook;
  85. - (void)closeBook;
  86. @end