-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBCCitationDialogController.m
318 lines (214 loc) · 9.32 KB
/
BCCitationDialogController.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
//
// BCCitationDialogController.m
// Caravan
//
// Created by Tom Houpt on 15/3/16.
// Copyright (c) 2015 Tom Houpt. All rights reserved.
//
#import "BCCitationDialogController.h"
#import "BCCitation.h"
#import "BCCitationAuthor.h"
@interface BCCitationDialogController (Private)
-(void)populateDialog;
-(void)retrieveFromDialog;
-(IBAction)cancelPressed:(id)sender;
-(IBAction)okPressed:(id)sender;
@end
@implementation BCCitationDialogController
@synthesize theCitation;
@synthesize dialog;
@synthesize returnFlag;
@synthesize tabView;
@synthesize authors; /// array of BCCitationAuthors...
@synthesize title;
@synthesize databaseIDs;
@synthesize citeKey;
// journal article fields
@synthesize journal;
@synthesize journalAbbreviation;
@synthesize volume;
@synthesize number;
@synthesize pages;
@synthesize year;
// book chapter fields
@synthesize bookTitleChapter;
@synthesize bookLengthChapter;
@synthesize editorsChapter; // array of BCCitationAuthors
@synthesize publisherChapter;
@synthesize publicationPlaceChapter;
@synthesize volumeChapter;
@synthesize numberChapter;
@synthesize pagesChapter;
@synthesize yearChapter;
// book fields
@synthesize bookTitle;
@synthesize bookLength;
@synthesize editors; // array of BCCitationAuthors
@synthesize publisher;
@synthesize publicationPlace;
@synthesize volumeBook;
@synthesize numberBook;
@synthesize yearBook;
-(id)initWithCitation:(BCCitation *)c; {
self = [super init];
if (self) {
theCitation = c;
if (!dialog) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
[NSBundle loadNibNamed:@"CitationDialog" owner:self];
#pragma clang diagnostic pop
}
}
return self;
}
-(BOOL)dialogForWindow:(NSWindow *)ownerWindow; {
[self populateDialog];
[NSApp beginSheet: dialog
modalForWindow: ownerWindow
modalDelegate: nil
didEndSelector: nil
contextInfo: nil];
[NSApp runModalForWindow: dialog];
// See NSApplication Class Reference/runModalSession
[NSApp endSheet: dialog];
[dialog orderOut: self];
return returnFlag;
}
-(void)populateDialog; {
// common fields
// set author tokens
NSMutableString *authorList = [NSMutableString string];
for (BCCitationAuthor *anAuthor in theCitation.authors) {
[authorList appendString:anAuthor.indexName];
[authorList appendString:@", "];
[authorList appendString:anAuthor.initials];
[authorList appendString:@";"];
}
[authors setTokenizingCharacterSet:[NSCharacterSet characterSetWithCharactersInString:@";"]];
[authors setStringValue:authorList];
[title setStringValue:theCitation.title];
// set databaseIDs
//@property IBOutlet NSTokenField *databaseIDs setStringValue:theCitation.];
NSMutableString *databaseList = [NSMutableString string];
for (NSString *aKey in theCitation.databaseIDs) {
[databaseList appendString:aKey];
[databaseList appendString:@": "];
[databaseList appendString:[theCitation.databaseIDs objectForKey:aKey]];
[databaseList appendString:@","];
}
[databaseIDs setStringValue:databaseList];
[citeKey setStringValue:theCitation.citeKey ];
// journal article fields
[journal setStringValue:theCitation.journal];
[journalAbbreviation setStringValue:theCitation.journalAbbreviation];
[volume setStringValue:theCitation.volume];
[number setStringValue:theCitation.number];
[pages setStringValue:theCitation.pages];
[year setStringValue:[NSString stringWithFormat:@"%ld",theCitation.publicationYear] ];
// book chapter fields
[bookTitleChapter setStringValue:theCitation.booktitle];
[bookLengthChapter setStringValue:theCitation.bookLength];
// @property IBOutlet NSTokenField *editorsChapter setStringValue:theCitation.];
[publisherChapter setStringValue:theCitation.publisher];
[publicationPlaceChapter setStringValue:theCitation.publicationPlace];
[volumeChapter setStringValue:theCitation.volume];
[numberChapter setStringValue:theCitation.number];
[pagesChapter setStringValue:theCitation.pages];
[yearChapter setStringValue:[NSString stringWithFormat:@"%ld",theCitation.publicationYear]];
// book fields
[bookTitle setStringValue:theCitation.booktitle];
[bookLength setStringValue:theCitation.bookLength];
//@property IBOutlet NSTokenField *editors setStringValue:theCitation.]; // array of BCCitationAuthors
[publisher setStringValue:theCitation.publisher];
[publicationPlace setStringValue:theCitation.publicationPlace];
[volumeBook setStringValue:theCitation.volume];
[numberBook setStringValue:theCitation.number];
[yearBook setStringValue:[NSString stringWithFormat:@"%ld",theCitation.publicationYear]];
[tabView selectTabViewItemAtIndex:theCitation.citationType];
}
-(void)retrieveFromDialog; {
// common fields
// clear pre-existing authors
NSMutableArray *newAuthors = [NSMutableArray array];
NSArray *enteredAuthors = [authors objectValue];
for (NSString *authorName in enteredAuthors) {
BCCitationAuthor *theAuthor = [[BCCitationAuthor alloc] initWithLastNameAndInitialsString:authorName];
[newAuthors addObject:theAuthor];
}
[theCitation setAuthors:newAuthors];
theCitation.title = [title stringValue];
// clear pre-existing database values
[theCitation setDatabaseIDs: [NSMutableDictionary dictionary]];
NSArray *enteredIDs = [databaseIDs objectValue];
for (NSString *anID in enteredIDs) {
NSArray *parts = [anID componentsSeparatedByString:@":"];
NSString *ascension = [[parts firstObject] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
NSString *database = [[parts lastObject] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
[theCitation setAscension:ascension forDatabase:database];
}
// citekey is read only
theCitation.citationType = [tabView indexOfTabViewItem:[tabView selectedTabViewItem]];
if ( kArticle == theCitation.citationType) {
// journal article fields
theCitation.journal = [journal stringValue]; theCitation.journal =
theCitation.journalAbbreviation = [journalAbbreviation stringValue];
theCitation.volume = [volume stringValue];
theCitation.number = [number stringValue];
theCitation.pages = [pages stringValue];
theCitation.publicationYear = [year integerValue];
[theCitation setFirstAuthor:[[[theCitation authors] firstObject] indexName]];
}
else if (kInBook == theCitation.citationType) {
theCitation.booktitle = [bookTitleChapter stringValue];
theCitation.bookLength = [bookLengthChapter stringValue];
NSMutableArray *newEditors = [NSMutableArray array];
NSArray *enteredEditors = [editorsChapter objectValue];
for (NSString *authorName in enteredEditors) {
BCCitationAuthor *theAuthor = [[BCCitationAuthor alloc] initWithLastNameAndInitialsString:authorName];
[newEditors addObject:theAuthor];
}
[theCitation setEditors:newEditors];
theCitation.publisher = [publisherChapter stringValue];
theCitation.publicationPlace = [publicationPlaceChapter stringValue];
theCitation.volume =[volumeChapter stringValue];
theCitation.number = [numberChapter stringValue];
theCitation.pages = [pagesChapter stringValue];
theCitation.publicationYear = [yearChapter integerValue];
[theCitation setFirstAuthor:[[[theCitation authors] firstObject] indexName]];
}
else if (kBook == theCitation.citationType) {
theCitation.booktitle = [bookTitle stringValue];
theCitation.bookLength = [bookLength stringValue];
NSMutableArray *newEditors = [NSMutableArray array];
NSArray *enteredEditors = [editors objectValue];
for (NSString *authorName in enteredEditors) {
BCCitationAuthor *theAuthor = [[BCCitationAuthor alloc] initWithLastNameAndInitialsString:authorName];
[newEditors addObject:theAuthor];
}
[theCitation setEditors:newEditors];
theCitation.publisher = [publisher stringValue];
theCitation.publicationPlace = [publicationPlace stringValue];
theCitation.volume = [volumeBook stringValue];
theCitation.number = [numberBook stringValue];
theCitation.publicationYear = [yearBook integerValue];
if ([[theCitation authors] count] > 0) {
[theCitation setFirstAuthor:[[[theCitation authors] firstObject] indexName]];
}
else if ([[theCitation editors] count] > 0) {
[theCitation setFirstAuthor:[[[theCitation editors] firstObject] indexName]];
}
}
}
-(IBAction)cancelPressed:(id)sender; {
[NSApp stopModal];
// return canceled
self.returnFlag = NO;
}
-(IBAction)okPressed:(id)sender; {
[NSApp stopModal];
// return OK
[self retrieveFromDialog];
self.returnFlag = YES;
}
@end