mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
87 lines
2.5 KiB
Objective-C
Executable file
87 lines
2.5 KiB
Objective-C
Executable file
//
|
|
// SHKItem.h
|
|
// ShareKit
|
|
//
|
|
// Created by Nathan Weiner on 6/18/10.
|
|
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef enum
|
|
{
|
|
SHKShareTypeUndefined,
|
|
SHKShareTypeURL,
|
|
SHKShareTypeText,
|
|
SHKShareTypeImage,
|
|
SHKShareTypeFile,
|
|
SHKShareTypeUserInfo
|
|
} SHKShareType;
|
|
|
|
|
|
@interface SHKItem : NSObject
|
|
{
|
|
SHKShareType shareType;
|
|
|
|
NSURL *URL;
|
|
|
|
UIImage *image;
|
|
|
|
NSString *title;
|
|
NSString *text;
|
|
NSString *tags;
|
|
|
|
NSData *data;
|
|
NSString *mimeType;
|
|
NSString *filename;
|
|
|
|
@private
|
|
NSMutableDictionary *custom;
|
|
}
|
|
|
|
@property (nonatomic) SHKShareType shareType;
|
|
|
|
@property (nonatomic, retain) NSURL *URL;
|
|
|
|
@property (nonatomic, retain) UIImage *image;
|
|
|
|
@property (nonatomic, retain) NSString *title;
|
|
@property (nonatomic, retain) NSString *text;
|
|
@property (nonatomic, retain) NSString *tags;
|
|
|
|
@property (nonatomic, retain) NSData *data;
|
|
@property (nonatomic, retain) NSString *mimeType;
|
|
@property (nonatomic, retain) NSString *filename;
|
|
|
|
+ (id)URL:(NSURL *)url title:(NSString *)title;
|
|
+ (id)image:(UIImage *)image title:(NSString *)title;
|
|
+ (id)text:(NSString *)text;
|
|
+ (id)file:(NSData *)data filename:(NSString *)filename mimeType:(NSString *)mimeType title:(NSString *)title;
|
|
|
|
- (void)setCustomValue:(NSString *)value forKey:(NSString *)key;
|
|
- (NSString *)customValueForKey:(NSString *)key;
|
|
- (BOOL)customBoolForSwitchKey:(NSString *)key;
|
|
|
|
- (NSDictionary *)dictionaryRepresentation;
|
|
+ (id)itemFromDictionary:(NSDictionary *)dictionary;
|
|
|
|
@end
|