mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 05:57:04 +00:00
30 lines
726 B
Objective-C
30 lines
726 B
Objective-C
//
|
|
// XCCErrorsViewController.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 XCCErrorsViewController : NSViewController <NSOutlineViewDataSource, NSOutlineViewDelegate>
|
|
{
|
|
IBOutlet NSOutlineView *errorOutlineView;
|
|
IBOutlet NSBox *maskingView;
|
|
}
|
|
|
|
@property XCCCappuccinoProjectController *cappuccinoProjectController;
|
|
@property BOOL selected;
|
|
|
|
- (void)selectItem:(id)anItem;
|
|
- (void)reload;
|
|
|
|
- (IBAction)openErroredFileInEditor:(id)sender;
|
|
- (IBAction)cleanProjectErrors:(id)aSender;
|
|
|
|
@end
|