-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathACCodeSnippetRepositoryConfigurationWindowController.h
More file actions
35 lines (22 loc) · 1.21 KB
/
ACCodeSnippetRepositoryConfigurationWindowController.h
File metadata and controls
35 lines (22 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// ACCodeSnippetRepositoryConfigurationWindowController.h
// ACCodeSnippetRepository
//
// Created by Arnaud Coomans on 06/02/14.
// Copyright (c) 2014 Arnaud Coomans. All rights reserved.
//
#import <Cocoa/Cocoa.h>
extern NSString * const ACCodeSnippetRepositoryUpdateRegularlyKey;
@class ACCodeSnippetRepositoryConfigurationWindowController;
@protocol ACCodeSnippetRepositoryConfigurationWindowControllerDelegate <NSObject>
- (NSArray*)dataStoresForCodeSnippetConfigurationWindowController:(ACCodeSnippetRepositoryConfigurationWindowController*)configurationWindowController;
@end
@interface ACCodeSnippetRepositoryConfigurationWindowController : NSWindowController <NSTextFieldDelegate>
@property (nonatomic, weak) id<ACCodeSnippetRepositoryConfigurationWindowControllerDelegate> delegate;
@property (nonatomic, weak) IBOutlet NSTextField *remoteRepositoryTextfield;
@property (nonatomic, weak) IBOutlet NSButton *cloneRemoteRepositoryButton;
@property (nonatomic, weak) IBOutlet NSButton *importButton;
@property (nonatomic, weak) IBOutlet NSPanel *progressPanel;
@property (nonatomic, weak) IBOutlet NSProgressIndicator *progressIndicator;
@property (nonatomic, weak) IBOutlet NSButton *updateRegularlyCheckbox;
@end