cocoaTouch/TeamSettingsViewController.m
author koda
Sat, 10 Apr 2010 01:09:29 +0000
changeset 3330 987ec27b6042
parent 3328 fe87c2242984
child 3335 2520ee7a5484
permissions -rw-r--r--
add support for modifying the name of the team nicer presentation of hog+hat
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  TeamSettingsViewController.m
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 02/04/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import "TeamSettingsViewController.h"
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
#import "SingleTeamViewController.h"
3325
652a8ebdf667 moved around team creation
koda
parents: 3323
diff changeset
    11
#import "CommodityFunctions.h"
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    13
@implementation TeamSettingsViewController
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    14
@synthesize listOfTeams;
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    15
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    16
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    17
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    18
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    19
}
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    20
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    21
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    22
#pragma mark View lifecycle
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    23
// add an edit button
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    24
-(void) viewDidLoad {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    25
    [super viewDidLoad];
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    26
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    27
    UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Edit",@"from the team navigation")
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    28
                                                                   style:UIBarButtonItemStyleBordered
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    29
                                                                  target:self
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    30
                                                                  action:@selector(toggleEdit:)];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    31
    self.navigationItem.rightBarButtonItem = editButton;
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    32
    [editButton release];
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    33
}
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    34
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    35
// load the list of teams in the teams directory
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    36
-(void) viewWillAppear:(BOOL)animated {
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    37
    [super viewWillAppear:animated];
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    38
    
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    39
    NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:TEAMS_DIRECTORY() error:NULL];
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    40
    NSMutableArray *array = [[NSMutableArray alloc] initWithArray: contentsOfDir copyItems:YES];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    41
    self.listOfTeams = array;
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    42
    [array release];
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    43
    
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
    44
    [self.tableView reloadData];
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    45
    NSLog(@"files: %@", self.listOfTeams);
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    46
}
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    47
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    48
// modifies the navigation bar to add the "Add" and "Done" buttons
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    49
-(void) toggleEdit:(id) sender {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    50
    BOOL isEditing = self.tableView.editing;
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    51
    [self.tableView setEditing:!isEditing animated:YES];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    52
    
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    53
    if (isEditing) {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    54
        [self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Edit",@"from the team navigation")];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    55
        [self.navigationItem.rightBarButtonItem setStyle: UIBarButtonItemStyleBordered];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    56
        self.navigationItem.leftBarButtonItem = self.navigationItem.backBarButtonItem;
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    57
    } else {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    58
        [self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Done",@"from the team navigation")];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    59
        [self.navigationItem.rightBarButtonItem setStyle:UIBarButtonItemStyleDone];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    60
        UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Add",@"from the team navigation")
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    61
                                                                      style:UIBarButtonItemStyleBordered
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    62
                                                                     target:self
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    63
                                                                     action:@selector(addTeam:)];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    64
        self.navigationItem.leftBarButtonItem = addButton;
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    65
        [addButton release];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    66
    }
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    67
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    68
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    69
// add a team file with default values and updates the table
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    70
-(void) addTeam:(id) sender {
3325
652a8ebdf667 moved around team creation
koda
parents: 3323
diff changeset
    71
    NSString *fileName = [[NSString alloc] initWithFormat:@"Default Team %u.plist", [self.listOfTeams count]];
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    72
    
3325
652a8ebdf667 moved around team creation
koda
parents: 3323
diff changeset
    73
    createTeamNamed([fileName stringByDeletingPathExtension]);
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    74
    
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    75
    [self.listOfTeams addObject:fileName];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    76
    [fileName release];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    77
    
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    78
    [self.tableView reloadData];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    79
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    80
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    81
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    82
#pragma mark Table view data source
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    83
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    84
    return 1;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    85
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    86
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    87
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    88
    return [listOfTeams count];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    89
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    90
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    91
// Customize the appearance of table view cells.
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
    92
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    93
    static NSString *CellIdentifier = @"Cell";
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    94
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    95
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    96
    if (cell == nil) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    97
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    98
    }
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    99
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   100
    NSUInteger row = [indexPath row]; 
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   101
    NSString *rowString = [[listOfTeams objectAtIndex:row] stringByDeletingPathExtension]; 
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   102
    cell.textLabel.text = rowString; 
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   103
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   104
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   105
    return cell;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   106
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   107
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   108
// delete the row and the file
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   109
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   110
    NSUInteger row = [indexPath row];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   111
    
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
   112
    NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@",TEAMS_DIRECTORY(),[self.listOfTeams objectAtIndex:row]];
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   113
    [[NSFileManager defaultManager] removeItemAtPath:teamFile error:NULL];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   114
    [teamFile release];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   115
    
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   116
    [self.listOfTeams removeObjectAtIndex:row];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   117
    [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   118
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   119
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   120
/*
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   121
// Override to support editing the table view.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   122
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   123
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   124
    if (editingStyle == UITableViewCellEditingStyleDelete) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   125
        // Delete the row from the data source
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   126
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   127
    }   
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   128
    else if (editingStyle == UITableViewCellEditingStyleInsert) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   129
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   130
    }   
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   131
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   132
*/
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   133
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   134
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   135
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   136
#pragma mark Table view delegate
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
   137
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   138
    if (childController == nil) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   139
        childController = [[SingleTeamViewController alloc] initWithStyle:UITableViewStyleGrouped];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   140
    }
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   141
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   142
    NSInteger row = [indexPath row];
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   143
    NSString *selectedTeamFile = [listOfTeams objectAtIndex:row];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   144
    NSLog(@"%@",selectedTeamFile);
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   145
    
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
   146
    // this must be set so childController can load the correct plist
3328
fe87c2242984 fix the save of the team and rearrange hat/name modification
koda
parents: 3325
diff changeset
   147
    childController.title = [selectedTeamFile stringByDeletingPathExtension];
3325
652a8ebdf667 moved around team creation
koda
parents: 3323
diff changeset
   148
    [childController.tableView setContentOffset:CGPointMake(0,0) animated:NO];
652a8ebdf667 moved around team creation
koda
parents: 3323
diff changeset
   149
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   150
    [self.navigationController pushViewController:childController animated:YES];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   151
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   152
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   153
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   154
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   155
#pragma mark Memory management
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   156
-(void) didReceiveMemoryWarning {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   157
    // Releases the view if it doesn't have a superview.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   158
    [super didReceiveMemoryWarning];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   159
    // Relinquish ownership any cached data, images, etc that aren't in use.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   160
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   161
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   162
-(void) viewDidUnload {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   163
    self.listOfTeams = nil;
3330
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
   164
    childController = nil;
987ec27b6042 add support for modifying the name of the team
koda
parents: 3328
diff changeset
   165
    [super viewDidUnload];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   166
}
3315
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
   167
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   168
-(void) dealloc {
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   169
    [listOfTeams release];
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3315
diff changeset
   170
    [childController release];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   171
    [super dealloc];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   172
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   173
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   174
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   175
@end
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   176