diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-01 14:30:15 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:34 -0800 |
commit | cb218676ad71acafbac454288dfa46390f90e6f9 (patch) | |
tree | 7b529b9b79af7fdf50e63877c99ca754b64a18bd /MobileCydia.mm | |
parent | 7e865c1eff80b94da6b2b14eac66ed977288f4b2 (diff) |
Separate out Cydia/ProgressEvent.h.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 49 |
1 files changed, 3 insertions, 46 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 7e31233..e26cd87 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -120,12 +120,14 @@ extern "C" { #include <Cytore.hpp> +#include "Menes/Menes.h" + #include "CyteKit/PerlCompatibleRegEx.hpp" #include "CyteKit/WebScriptObject-Cyte.h" #include "CyteKit/WebViewController.h" #include "CyteKit/stringWithUTF8Bytes.h" -#include "Menes/Menes.h" +#include "Cydia/ProgressEvent.h" #include "SDURLCache/SDURLCache.h" @@ -990,51 +992,6 @@ bool isSectionVisible(NSString *section) { @end /* }}} */ -/* ProgressEvent Interface/Delegate {{{ */ -@interface CydiaProgressEvent : NSObject { - _H<NSString> message_; - _H<NSString> type_; - - _H<NSArray> item_; - _H<NSString> package_; - _H<NSString> url_; - _H<NSString> version_; -} - -+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type; -+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package; -+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItem:(pkgAcquire::ItemDesc &)item; - -- (id) initWithMessage:(NSString *)message ofType:(NSString *)type; - -- (NSString *) message; -- (NSString *) type; - -- (NSArray *) item; -- (NSString *) package; -- (NSString *) url; -- (NSString *) version; - -- (void) setItem:(NSArray *)item; -- (void) setPackage:(NSString *)package; -- (void) setURL:(NSString *)url; -- (void) setVersion:(NSString *)version; - -- (NSString *) compound:(NSString *)value; -- (NSString *) compoundMessage; -- (NSString *) compoundTitle; - -@end - -@protocol ProgressDelegate -- (void) addProgressEvent:(CydiaProgressEvent *)event; -- (void) setProgressPercent:(NSNumber *)percent; -- (void) setProgressStatus:(NSDictionary *)status; -- (void) setProgressCancellable:(NSNumber *)cancellable; -- (bool) isProgressCancelled; -- (void) setTitle:(NSString *)title; -@end -/* }}} */ /* Status Delegation {{{ */ class Status : public pkgAcquireStatus |