]> git.saurik.com Git - cydia.git/blame - Cydia/ProgressEvent.h
Do not pass our disk cache path up to NSURLCache.
[cydia.git] / Cydia / ProgressEvent.h
CommitLineData
cb218676 1/* Cydia - iPhone UIKit Front-End for Debian APT
6fa0bb60 2 * Copyright (C) 2008-2014 Jay Freeman (saurik)
cb218676
JF
3*/
4
6d9696a5 5/* GNU General Public License, Version 3 {{{ */
cb218676 6/*
6d9696a5
JF
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
cb218676 11 *
6d9696a5
JF
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
cb218676 16 *
6d9696a5
JF
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
19**/
cb218676
JF
20/* }}} */
21
22#ifndef Cydia_ProgressEvent_H
23#define Cydia_ProgressEvent_H
24
25#include <Foundation/Foundation.h>
26
27#include <CydiaSubstrate/CydiaSubstrate.h>
28
29#include <apt-pkg/acquire.h>
30
31@interface CydiaProgressEvent : NSObject {
32 _H<NSString> message_;
33 _H<NSString> type_;
34
35 _H<NSArray> item_;
36 _H<NSString> package_;
37 _H<NSString> url_;
38 _H<NSString> version_;
39}
40
41+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type;
42+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package;
10387810 43+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItemDesc:(pkgAcquire::ItemDesc &)desc;
cb218676
JF
44
45- (id) initWithMessage:(NSString *)message ofType:(NSString *)type;
46
47- (NSString *) message;
48- (NSString *) type;
49
50- (NSArray *) item;
51- (NSString *) package;
52- (NSString *) url;
53- (NSString *) version;
54
55- (void) setItem:(NSArray *)item;
56- (void) setPackage:(NSString *)package;
57- (void) setURL:(NSString *)url;
58- (void) setVersion:(NSString *)version;
59
60- (NSString *) compound:(NSString *)value;
61- (NSString *) compoundMessage;
62- (NSString *) compoundTitle;
63
64@end
65
66@protocol ProgressDelegate
67- (void) addProgressEvent:(CydiaProgressEvent *)event;
68- (void) setProgressPercent:(NSNumber *)percent;
69- (void) setProgressStatus:(NSDictionary *)status;
70- (void) setProgressCancellable:(NSNumber *)cancellable;
71- (bool) isProgressCancelled;
72- (void) setTitle:(NSString *)title;
73@end
74
75#endif//Cydia_ProgressEvent_H