Files
pallet/Pallet/ActivityController.h
Juan Germán Castañeda Echevarría fcff5ee4e9 Copying Pallet from gsoc09-gui branch to contrib
git-svn-id: https://svn.macports.org/repository/macports/contrib/Pallet@65496 d073be05-634f-4543-b044-5fe20cf6d1d6
2010-03-26 21:20:39 +00:00

29 lines
666 B
Objective-C

//
// NotificationsListener.h
// MPGUI
//
// Created by Juan Germán Castañeda Echevarría on 8/4/09.
// Copyright 2009 UNAM. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <MacPorts/MPNotifications.h>
@interface ActivityController : NSObject {
IBOutlet NSTextField *currentTask;
IBOutlet NSTableView *operations;
IBOutlet NSProgressIndicator *progress;
BOOL busy;
}
@property BOOL busy;
- (void)subscribeToNotifications;
- (void)gotMPMSG:(NSNotification *)notification;
- (void)gotMPINFO:(NSNotification *)notification;
- (void)gotMPDEFAULT:(NSNotification *)notification;
- (void)gotMPERROR:(NSNotification *)notification;
@end