2 // SUAutomaticUpdateAlert.h
5 // Created by Andy Matuschak on 3/18/06.
6 // Copyright 2006 Andy Matuschak. All rights reserved.
9 #ifndef SUAUTOMATICUPDATEALERT_H
10 #define SUAUTOMATICUPDATEALERT_H
12 #import "SUWindowController.h"
19 } SUAutomaticInstallationChoice
;
22 @interface SUAutomaticUpdateAlert
: SUWindowController
{
23 SUAppcastItem
*updateItem
;
28 - (id
)initWithAppcastItem
:(SUAppcastItem
*)item hostBundle
:(NSBundle
*)hostBundle delegate
:delegate
;
29 - (IBAction
)installNow
:sender
;
30 - (IBAction
)installLater
:sender
;
31 - (IBAction
)doNotInstall
:sender
;
35 @interface
NSObject (SUAutomaticUpdateAlertDelegateProtocol
)
36 - (void)automaticUpdateAlert
:(SUAutomaticUpdateAlert
*)aua finishedWithChoice
:(SUAutomaticInstallationChoice
)choice
;