mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
29 lines
777 B
Objective-C
29 lines
777 B
Objective-C
//
|
|
// XCCOperationsViewController.h
|
|
// XcodeCapp
|
|
//
|
|
// Created by Antoine Mercadal on 6/4/15.
|
|
// Copyright (c) 2015 cappuccino-project. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class XCCCappuccinoProjectController;
|
|
|
|
|
|
@interface XCCOperationsViewController : NSViewController <NSTableViewDataSource, NSTableViewDelegate>
|
|
{
|
|
IBOutlet NSTableView *operationTableView;
|
|
IBOutlet NSBox *maskingView;
|
|
NSOperationQueue *operationQueue;
|
|
NSArray *operationsSnaphsot;
|
|
}
|
|
|
|
@property XCCCappuccinoProjectController *cappuccinoProjectController;
|
|
@property BOOL selected;
|
|
|
|
- (void)reload;
|
|
- (IBAction)cancelAllOperations:(id)sender;
|
|
|
|
@end
|