forked from karelia/ConnectionKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCKController.m
141 lines (127 loc) · 1.44 KB
/
CKController.m
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
//
// CKController.m
// Connection
//
// Created by Greg Hulands on 20/11/06.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import "CKController.h"
@implementation CKController
- (id)init
{
[super init];
return self;
}
- (void)setHost:(CKHost *)host
{
;
}
- (CKHost *)host
{
return nil;
}
- (id <CKConnection>)connection
{
return nil;
}
- (void)setCanUpload:(BOOL)flag
{
;
}
- (void)setCanDownload:(BOOL)flag
{
;
}
- (void)setCanDeleteFiles:(BOOL)flag
{
;
}
- (void)setCancelDeleteDirectories:(BOOL)flag
{
;
}
- (BOOL)canConnect
{
return NO;
}
- (BOOL)canDisconnect
{
return NO;
}
- (BOOL)canRefresh
{
return NO;
}
- (BOOL)hasSelection
{
return NO;
}
- (BOOL)canEdit
{
return NO;
}
- (IBAction)connect:(id)sender
{
;
}
- (IBAction)disconnect:(id)sender
{
;
}
- (IBAction)refresh:(id)sender
{
;
}
- (IBAction)newRemoteFolder:(id)sender
{
;
}
- (IBAction)newLocalFolder:(id)sender
{
;
}
- (IBAction)editRemoteFile:(id)sender
{
;
}
- (IBAction)editLocalFile:(id)sender
{
;
}
- (IBAction)localFileSelected:(id)sender
{
;
}
- (IBAction)localFileDoubleClicked:(id)sender
{
;
}
- (IBAction)localDirectoryChanged:(id)sender
{
;
}
- (IBAction)remoteFileSelected:(id)sender
{
;
}
- (IBAction)remoteFileDoubleClicked:(id)sender
{
;
}
- (IBAction)remoteDirectoryChanged:(id)sender
{
;
}
- (IBAction)transferSelected:(id)sender
{
;
}
- (IBAction)cancelTransfer:(id)sender
{
;
}
- (IBAction)editPermissions:(id)sender
{
;
}
@end