source: trunk/Cocoa/DockCam/DockCamStatus.h@ 126

Last change on this file since 126 was 5, checked in by Nicholas Riley, 22 years ago

Initial import.

File size: 717 bytes
Line 
1//
2// DockCamStatus.h
3// DockCam
4//
5// Created by Nicholas Riley on Thu Jun 27 2002.
6// Copyright (c) 2002 Nicholas Riley. All rights reserved.
7//
8
9#import <AppKit/AppKit.h>
10
11
12@interface DockCamStatus : NSWindowController {
13 IBOutlet NSForm *statusForm;
14 IBOutlet NSFormCell *locationCell;
15 IBOutlet NSFormCell *actualSize;
16 IBOutlet NSFormCell *retrievedDate;
17 IBOutlet NSFormCell *failedDate;
18 IBOutlet NSFormCell *failedReason;
19 IBOutlet NSFormCell *statusCell;
20 IBOutlet id<NSMenuItem> showHideStatusItem;
21}
22
23- (void)setLocation:(NSURL *)aLocation;
24- (void)setStatus:(NSString *)aStatus;
25- (void)setRetrievedWithSize:(NSSize)size;
26- (void)setFailedWithReason:(NSString *)reason;
27
28@end
Note: See TracBrowser for help on using the repository browser.