WKBackForwardList.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (C) 2013 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
  14. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
  17. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  23. * THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #import <WebKit/WKFoundation.h>
  26. #import <WebKit/WKBackForwardListItem.h>
  27. /*! @abstract A WKBackForwardList object is a list of webpages previously
  28. visited in a web view that can be reached by going back or forward.
  29. */
  30. NS_ASSUME_NONNULL_BEGIN
  31. WK_EXTERN API_AVAILABLE(macos(10.10), ios(8.0))
  32. @interface WKBackForwardList : NSObject
  33. /*! @abstract The current item.
  34. */
  35. @property (nullable, nonatomic, readonly, strong) WKBackForwardListItem *currentItem;
  36. /*! @abstract The item immediately preceding the current item, or nil
  37. if there isn't one.
  38. */
  39. @property (nullable, nonatomic, readonly, strong) WKBackForwardListItem *backItem;
  40. /*! @abstract The item immediately following the current item, or nil
  41. if there isn't one.
  42. */
  43. @property (nullable, nonatomic, readonly, strong) WKBackForwardListItem *forwardItem;
  44. /*! @abstract Returns the item at a specified distance from the current
  45. item.
  46. @param index Index of the desired list item relative to the current item:
  47. 0 for the current item, -1 for the immediately preceding item, 1 for the
  48. immediately following item, and so on.
  49. @result The item at the specified distance from the current item, or nil
  50. if the index parameter exceeds the limits of the list.
  51. */
  52. - (nullable WKBackForwardListItem *)itemAtIndex:(NSInteger)index;
  53. /*! @abstract The portion of the list preceding the current item.
  54. @discussion The items are in the order in which they were originally
  55. visited.
  56. */
  57. @property (nonatomic, readonly, copy) NSArray<WKBackForwardListItem *> *backList;
  58. /*! @abstract The portion of the list following the current item.
  59. @discussion The items are in the order in which they were originally
  60. visited.
  61. */
  62. @property (nonatomic, readonly, copy) NSArray<WKBackForwardListItem *> *forwardList;
  63. @end
  64. NS_ASSUME_NONNULL_END