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
|
//
// InputTableViewController.m
// FixMyStreet
//
// Created by Matthew on 26/09/2008.
// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//
#import "InputTableViewController.h"
#import "subjectTableViewCell.h"
#import "imageCell.h"
#import "FixMyStreetAppDelegate.h"
#import "EditSubjectViewController.h"
#import "Report.h"
@implementation InputTableViewController
//@synthesize image;
//@synthesize imagCell;
//@synthesize reportSummary;
- (id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)nibBundle {
if (self = [super initWithNibName:nibName bundle:nibBundle]) {
self.title = @"FixMyStreet";
// These seem to work better in viewDidLoad
// actionsToDoView.sectionHeaderHeight = 0.0;
// self.navigationItem.backBarButtonItem.title = @"Foo";
}
return self;
}
/*
- (id)initWithStyle:(UITableViewStyle)style {
// Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
if (self = [super initWithStyle:style]) {
}
return self;
}
*/
- (void)viewWillAppear:(BOOL)animated {
//[super viewWillAppear:animated];
[self enableSubmissionButton];
}
// Implement viewDidLoad to do additional setup after loading the view.
- (void)viewDidLoad {
[super viewDidLoad];
actionsToDoView.sectionFooterHeight = 0;
UIBarButtonItem* backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Cancel" style:UIBarButtonSystemItemCancel target:nil action:nil];
self.navigationItem.backBarButtonItem = backBarButtonItem;
[backBarButtonItem release];
UIBarButtonItem* rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Report" style:UIBarButtonSystemItemSave target:nil action:nil];
rightBarButtonItem.enabled = NO;
self.navigationItem.rightBarButtonItem = rightBarButtonItem;
[rightBarButtonItem release];
// Let's start trying to find our location...
[MyCLController sharedInstance].delegate = self;
[[MyCLController sharedInstance] startUpdatingLocation];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 3;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
// Possible section==1 heading to make summary clearer once entered?
return nil;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}
//- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
// return 44.0f;
//}
-(void)enableSubmissionButton {
[actionsToDoView reloadData];
FixMyStreetAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
if (delegate.image && delegate.location && delegate.subject) {
self.navigationItem.rightBarButtonItem.enabled = YES;
} else {
self.navigationItem.rightBarButtonItem.enabled = NO;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier;
UITableViewCell *cell;
FixMyStreetAppDelegate* delegate = [[UIApplication sharedApplication] delegate];
// Possible editing of subject within main view (I think I prefer it as is, though need to make display clearer somehow)
// And possible display of selected image within cell somewhere/somehow (I like how Contacts does it, but haven't
// managed that so far
if (indexPath.section == 1) {
CellIdentifier = @"CellText";
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
//CGRect frame = CGRectMake(0, 0, 250, 44);
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
//cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
//UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(1.0, 1.0, 250, 44)];
//textField.placeholder = @"Subject";
// [textField addTarget:self action:nil forControlEvents:UIControlEventValueChanged];
//cell.accessoryView = textField;
//[textField release];
}
} else {
/* if (indexPath.section == 0) {
CellIdentifier = @"CellImage";
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[imageCell alloc] initWithFrame:CGRectMake(0, 0, 400, 44) reuseIdentifier:CellIdentifier] autorelease];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
} else { */
CellIdentifier = @"Cell";
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
}
if (indexPath.section == 0) {
if (delegate.image) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
cell.text = @"Take photo";
actionTakePhotoCell = cell;
} else if (indexPath.section == 2) {
if (delegate.location) {
cell.accessoryView = nil;
cell.accessoryType = UITableViewCellAccessoryCheckmark;
} else if ([MyCLController sharedInstance].updating) {
UIActivityIndicatorView* activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
[activityView startAnimating];
cell.accessoryView = activityView;
[activityView release];
}
cell.text = @"Fetch location";
actionFetchLocationCell = cell;
} else if (indexPath.section == 1) {
if (delegate.subject) {
if (!titleLabelLabel) {
titleLabelLabel = [[UILabel alloc] initWithFrame:CGRectMake(10,0,70,40)];
titleLabelLabel.font = [UIFont boldSystemFontOfSize:17];
titleLabelLabel.text = @"Subject:";
[cell.contentView addSubview:titleLabelLabel];
}
titleLabelLabel.hidden = NO;
if (!titleLabel) {
titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(80,0,190,40)];
titleLabel.font = [UIFont systemFontOfSize:17];
[cell.contentView addSubview:titleLabel];
}
cell.text = nil;
titleLabel.text = delegate.subject;
titleLabel.hidden = NO;
cell.accessoryType = UITableViewCellAccessoryCheckmark;
} else {
titleLabel.hidden = YES;
titleLabelLabel.hidden = YES;
cell.text = @"Short summary of problem";
cell.textColor = [UIColor grayColor];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
actionSummaryCell = cell;
} else {
cell.text = @"Eh?";
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
if (indexPath.section == 0) {
[self addPhoto:nil];
} else if (indexPath.section == 2) {
[[MyCLController sharedInstance].locationManager startUpdatingLocation];
} else if (indexPath.section == 1) {
UIViewController* editSubjectViewController = [[EditSubjectViewController alloc] initWithNibName:@"EditSubjectView" bundle:nil];
[self.navigationController pushViewController:editSubjectViewController animated:YES];
[editSubjectViewController release];
}
}
-(IBAction)addPhoto:(id) sender {
BOOL cameraAvailable = [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera];
BOOL photosAvailable = [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary];
if (!cameraAvailable && !photosAvailable) {
UITableViewCell *cell = [actionsToDoView cellForRowAtIndexPath:0]; // XXX
cell.text = @"No photo mechanism available";
return;
}
UIImagePickerController* picker = [[UIImagePickerController alloc] init];
if (cameraAvailable) {
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
} else {
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
}
picker.delegate = self;
picker.allowsImageEditing = YES;
[self presentModalViewController:picker animated:YES];
}
/*
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
}
*/
/*
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
}
*/
/*
- (void)viewWillDisappear:(BOOL)animated {
}
*/
/*
- (void)viewDidDisappear:(BOOL)animated {
}
*/
/*
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
*/
// Check this, I can't remember if you need to release nib things.
- (void)dealloc {
[imageView release];
[actionTakePhotoCell release];
[actionFetchLocationCell release];
[actionSummaryCell release];
[actionsToDoView release];
[settingsButton release];
[titleLabelLabel release];
[titleLabel release];
[super dealloc];
}
// UIImagePickerControllerDelegate prototype
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)newImage editingInfo:(NSDictionary *)editingInfo {
FixMyStreetAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
delegate.image = newImage;
imageView.image = newImage;
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
[picker release];
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
[picker release];
}
// MyCLControllerDelegate
-(void)newLocationUpdate:(NSString *)text {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hey" message:text delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
//[alert show];
[alert release];
FixMyStreetAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
delegate.location = text;
[self enableSubmissionButton];
}
-(void)newError:(NSString *)text {
}
// Settings
-(IBAction)gotoSettings:(id)sender {
}
@end
|