mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
29 lines
664 B
Objective-C
Executable file
29 lines
664 B
Objective-C
Executable file
//
|
|
// OSKMicrobloggingActivity.h
|
|
// Overshare
|
|
//
|
|
//
|
|
// Copyright (c) 2013 Overshare Kit. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
#import "OSKSyntaxHighlighting.h"
|
|
|
|
@class OSKMicroblogPostContentItem;
|
|
|
|
@protocol OSKMicrobloggingActivity <NSObject>
|
|
|
|
@property (assign, nonatomic) NSInteger remainingCharacterCount;
|
|
|
|
- (NSInteger)maximumCharacterCount;
|
|
- (NSInteger)maximumImageCount;
|
|
- (NSInteger)maximumUsernameLength;
|
|
- (NSInteger)updateRemainingCharacterCount:(OSKMicroblogPostContentItem *)contentItem urlEntities:(NSArray *)urlEntities;
|
|
- (OSKSyntaxHighlighting)syntaxHighlighting;
|
|
|
|
@optional
|
|
|
|
- (BOOL)allowLinkShortening; // OSK assumes YES.
|
|
|
|
@end
|