mirror of
https://github.com/macports/pallet.git
synced 2026-03-31 14:39:01 -07:00
git-svn-id: https://svn.macports.org/repository/macports/contrib/Pallet@65496 d073be05-634f-4543-b044-5fe20cf6d1d6
29 lines
666 B
Objective-C
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
|