-
Notifications
You must be signed in to change notification settings - Fork 490
/
Copy pathInstagramHeaders.h
268 lines (224 loc) · 8.27 KB
/
InstagramHeaders.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#import <Foundation/Foundation.h>
#include <objc/NSObject.h>
#import <UIKit/UIKit.h>
#import "BHIManager.h"
#import "SettingsViewController.h"
#import "SecurityViewController.h"
#import "BHDownload.h"
#import "JGProgressHUD/JGProgressHUD.h"
#import "DeletedMessagesManager.h"
#import "Vibration.h"
@interface IGViewController: UIViewController
- (void)_superPresentViewController:(UIViewController *)viewController animated:(BOOL)animated completion:(id)completion;
@end
@interface IGProfileMenuSheetViewController: IGViewController
@end
@interface IGTableViewCell: UITableViewCell
- (id)initWithReuseIdentifier:(NSString *)identifier;
@end
@interface IGProfileSheetTableViewCell: IGTableViewCell
@end
@interface IGTallNavigationBarView: UIView
@end
@interface UIView (RCTViewUnmounting)
@property(retain, nonatomic) UIViewController *viewController;
- (UIView *)_rootView;
@end
@interface IGImageSpecifier : NSObject
@property(readonly, nonatomic) NSURL *url;
@end
@interface IGVideo : NSObject {
NSSet *_allVideoURLs;
NSArray *_videoVersionDictionaries;
}
@property(readonly, nonatomic) NSSet *allVideoURLs;
@end
@interface IGImageURL: NSObject
@property (nonatomic, assign, readonly) NSURL *url;
@property (nonatomic, assign, readonly) CGFloat width;
@property (nonatomic, assign, readonly) CGFloat height;
@end
@interface IGPhoto: NSObject
{
NSArray *_originalImageVersions; // [IGImageURL]
}
@end
@interface IGPostItem: NSObject
@property(atomic, assign, readonly) IGVideo *video;
@property (atomic, assign, readonly) IGPhoto *photo;
@property (nonatomic, assign, readonly) NSInteger mediaType; // 1: photo, 2: video
@end
@interface IGMedia : NSObject
@property(atomic, assign, readonly) IGVideo *video;
@property (atomic, assign, readonly) IGPhoto *photo;
@property (atomic, strong, readwrite) NSArray *items; // [IGPostItem]
@property long long likeCount;
- (BOOL)isPhotoMedia;
@end
@interface IGSundialViewerUFIViewModel: NSObject
@property (nonatomic, copy, readonly) IGMedia *media;
@end
@interface IGSundialViewerControlsOverlayController: NSObject
{
IGMedia *_media;
}
@end
@interface IGSundialViewerControlsOverlayView: UIView
@property (nonatomic, weak, readwrite) id delegate; // IGSundialViewerControlsOverlayController
@property (nonatomic, assign, readonly) IGMedia *media;
@end
@interface IGSundialViewerVerticalUFI: UIView
@property (nonatomic, weak, readwrite) id delegate; // IGSundialViewerControlsOverlayView
@property (nonatomic, assign, readonly) UIButton *ufiLikeButton;
- (void)setupBHInsta;
- (void)downloadProgress:(float)progress;
- (void)downloadDidFinish:(NSURL *)filePath Filename:(NSString *)fileName;
- (void)downloadDidFailureWithError:(NSError *)error;
@end
@interface IGSundialViewerVerticalUFI () <BHDownloadDelegate>
@end
@interface IGFeedItemUFICellConfigurableDelegateImpl: NSObject
@end
@interface IGFeedItemUFICell: UICollectionViewCell
@property (nonatomic, weak, readwrite) id delegate; // IGFeedItemUFICellConfigurableDelegateImpl
@property (nonatomic, assign, readonly) NSInteger pageControlCurrentPage;
@end
@interface IGUFIInteractionCountsView: UIView
@property (nonatomic, assign, readonly) UIButton *sendButton;
@property (nonatomic, weak, readwrite) id delegate; // IGFeedItemUFICell
- (void)setupBHInsta;
- (void)downloadProgress:(float)progress;
- (void)downloadDidFinish:(NSURL *)filePath Filename:(NSString *)fileName;
- (void)downloadDidFailureWithError:(NSError *)error;
@end
@interface IGUFIInteractionCountsView () <BHDownloadDelegate>
@end
@interface IGFeedItem : NSObject
@property long long likeCount;
@property(readonly) IGVideo *video;
- (BOOL)isSponsored;
- (BOOL)isSponsoredApp;
@end
@interface IGSundialViewerVideoCell: UIView
- (void)addHandleLongPress; // new
- (void)handleLongPress:(UILongPressGestureRecognizer *)sender; // new
@property (nonatomic, strong) JGProgressHUD *hud;
@property(readonly, nonatomic) IGMedia *video;
@end
@interface IGSundialViewerVideoCell () <BHDownloadDelegate>
@end
/**
* For download story photo/video
*/
@interface IGStoryViewerViewModel: NSObject
@end
@interface IGStoryViewerViewController : UIViewController
- (void)fullscreenSectionController:(id)arg1 didMarkItemAsSeen:(id)arg2;
@property (nonatomic, assign, readonly) IGStoryViewerViewModel *currentViewModel;
@end
@interface IGStoryFullscreenSectionController: NSObject
@property (nonatomic, strong, readwrite) IGStoryViewerViewModel *viewModel;
@property (nonatomic, strong, readwrite) id currentStoryItem;
@property (nonatomic, readwrite) id delegate; // <IGStoryViewerViewController: 0x10c321e00>
- (void)fullscreenOverlayDidTapNextStoryButton:(id)arg1;
- (void)fullscreenOverlay:(id)arg1 didLongPressWithGesture:(id)arg2;
- (void)fullscreenOverlayDidEndPressing:(id)arg1;
@end
@interface IGStoryFullscreenCell: UICollectionViewCell
@property (nonatomic, readwrite) id delegate; // <IGStoryFullscreenSectionController: 0x10c321e00>
- (void)setupBHInsta; // new
- (void)seenButtonPressed:(UIButton *)sender; // new
- (void)downloadProgress:(float)progress;
- (void)downloadDidFinish:(NSURL *)filePath Filename:(NSString *)fileName;
- (void)downloadDidFailureWithError:(NSError *)error;
@end
@interface IGStoryFullscreenCell () <BHDownloadDelegate>
@end
@interface IGDirectMessageKey: NSObject
@property (nonatomic, copy, readonly) NSString *serverId;
@end
@interface IGDirectUIMessageMetadata: NSObject
@property (nonatomic, assign, readonly) IGDirectMessageKey *key;
@end
@protocol IGDirectMessageViewModelProtocol <NSObject>
@property (nonatomic, readonly) IGDirectUIMessageMetadata *messageMetadata;
@end
@interface IGDirectMessageCell: UICollectionViewCell
@property (nonatomic, assign, readonly) UIView *contentViewForVisualMessageViewerPresentation;
@property (nonatomic, assign, readonly) id<IGDirectMessageViewModelProtocol> viewModel;
@end
@interface IGDirectMessageUpdateMessageKey: NSObject
@end
@interface IGDirectMessageUpdate: NSObject
@end
@interface IGDirectThreadUpdate: NSObject
@end
/**
* For HD profile picture
*/
@interface IGUser : NSObject
@property NSInteger followStatus;
@property(copy) NSString *username;
@property BOOL followsCurrentUser;
@property NSString *biography;
- (NSURL *)HDProfilePicURL;
- (BOOL)isUser;
- (NSURL *)coverImageURL;
@end
@interface IGProfilePictureImageView : UIImageView
@property (nonatomic, assign, readonly) IGUser *user;
- (void)downloadProgress:(float)progress;
- (void)downloadDidFinish:(NSURL *)filePath Filename:(NSString *)fileName;
- (void)downloadDidFailureWithError:(NSError *)error;
- (void)handleLongPress:(UILongPressGestureRecognizer *)sender;
@end
@interface IGProfilePictureImageView () <BHDownloadDelegate>
@end
@interface IGFollowController : NSObject
@property IGUser *user;
@end
@interface IGCoreTextView: UIView
@property(nonatomic, strong) NSString *text;
- (void)addHandleLongPress;
- (void)handleLongPress:(UILongPressGestureRecognizer *)sender;
@end
@interface IGStyledString : NSObject
@property(retain, nonatomic) NSMutableAttributedString *attributedString;
- (void)appendString:(id)arg1;
@end
@interface IGInstagramAppDelegate : NSObject <UIApplicationDelegate>
@end
@interface IGProfileBioView : UIView {
IGCoreTextView *_infoLabelView;
}
@end
@interface IGTabBarController : UIViewController
- (void)_superPresentViewController:(UIViewController *)viewController animated:(BOOL)animated completion:(id)completion;
@end
static BOOL is_iPad() {
if ([(NSString *)[UIDevice currentDevice].model hasPrefix:@"iPad"]) {
return YES;
}
return NO;
}
static UIViewController * _Nullable _topMostController(UIViewController * _Nonnull cont) {
UIViewController *topController = cont;
while (topController.presentedViewController) {
topController = topController.presentedViewController;
}
if ([topController isKindOfClass:[UINavigationController class]]) {
UIViewController *visible = ((UINavigationController *)topController).visibleViewController;
if (visible) {
topController = visible;
}
}
return (topController != cont ? topController : nil);
}
static UIViewController * _Nonnull topMostController() {
UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
UIViewController *next = nil;
while ((next = _topMostController(topController)) != nil) {
topController = next;
}
return topController;
}