X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/80e2389990082500d76eb566d4946be3e786c3ef..d8f41ccd20de16f8ebe2ccc84d47bf1cb2b26bbb:/Keychain/SyncViewController.h?ds=sidebyside diff --git a/Keychain/SyncViewController.h b/Keychain/SyncViewController.h new file mode 100644 index 00000000..3bbaa14f --- /dev/null +++ b/Keychain/SyncViewController.h @@ -0,0 +1,34 @@ +// +// SyncViewController.h +// Keychain +// +// Created by john on 10/22/12. +// + +#import +#import +#import "CircleStatusView.h" + +@interface SyncViewController : UIViewController { + int notificationToken; + int notificationCount; +} +@property (weak, nonatomic) IBOutlet UILabel *statusMessage; +@property (weak, nonatomic) IBOutlet UISwitch *syncingEnabled; +@property (weak, nonatomic) IBOutlet UIProgressView *circleProgress; +@property (weak, nonatomic) IBOutlet UILabel *circleStatus; +@property (weak, nonatomic) IBOutlet UILabel *updateCount; +@property (weak, nonatomic) IBOutlet UILabel *peerCount; +@property (weak, nonatomic) IBOutlet UILabel *applicantCount; +@property (weak, nonatomic) IBOutlet UITableView *peerList; +@property (weak, nonatomic) IBOutlet UITableView *applicantList; +@property (weak, nonatomic) IBOutlet UILabel *stateChanged; +@property (weak, nonatomic) IBOutlet UIButton *acceptButton; +@property (weak, nonatomic) IBOutlet CircleStatusView *stateChangedC; + +- (void)flashChangeLight; +- (void)setStatus:(NSString *)message; +- (void)updateSyncingEnabledSwitch; ++ (void)requestToJoinCircle; + +@end