aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/InputTableViewController.h
diff options
context:
space:
mode:
authormatthew <matthew>2008-10-02 16:32:27 +0000
committermatthew <matthew>2008-10-02 16:32:27 +0000
commit1e276f5555ca52c43b62954327cc44f40b8b0f58 (patch)
treedf3b7807016ace0e1e0d3e781fba3cf287324a4d /iphone/FixMyStreet/Classes/InputTableViewController.h
parent37f57cc8b8332ba5a19e39657d388d3cc7a5b656 (diff)
Initial revision
Diffstat (limited to 'iphone/FixMyStreet/Classes/InputTableViewController.h')
-rw-r--r--iphone/FixMyStreet/Classes/InputTableViewController.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.h b/iphone/FixMyStreet/Classes/InputTableViewController.h
new file mode 100644
index 000000000..959d3ae97
--- /dev/null
+++ b/iphone/FixMyStreet/Classes/InputTableViewController.h
@@ -0,0 +1,37 @@
+//
+// InputTableViewController.h
+// FixMyStreet
+//
+// Created by Matthew on 26/09/2008.
+// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "imageCell.h"
+#import "MyCLController.h"
+
+@interface InputTableViewController : UIViewController <UINavigationControllerDelegate,UIImagePickerControllerDelegate,MyCLControllerDelegate> {
+ IBOutlet UIImageView* imageView;
+ IBOutlet UITableView* actionsToDoView;
+ IBOutlet UIButton* settingsButton;
+
+ // Not sure what I made these for
+ UITableViewCell* actionTakePhotoCell;
+ UITableViewCell* actionFetchLocationCell;
+ UITableViewCell* actionSummaryCell;
+}
+
+-(void)enableSubmissionButton;
+
+-(IBAction)addPhoto:(id) sender;
+-(IBAction)gotoSettings:(id)sender;
+
+// UIImagePickerControllerDelegate
+- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo;
+- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker;
+
+//MyCLControllerDelegate
+-(void)newLocationUpdate:(NSString *)text;
+-(void)newError:(NSString *)text;
+
+@end