]> git.saurik.com Git - cydia.git/blob - Cydia/ProgressEvent.h
New Cydia style no longer requires legacy metrics.
[cydia.git] / Cydia / ProgressEvent.h
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2013 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
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.
11 *
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.
16 *
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 **/
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;
43 + (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item;
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