project_files/HedgewarsMobile/Classes/WeaponCellView.m
changeset 3697 d5b30d6373fc
parent 3667 9359a70df013
child 3766 36b625111609
--- a/project_files/HedgewarsMobile/Classes/WeaponCellView.m	Sat Jul 31 10:52:43 2010 +0200
+++ b/project_files/HedgewarsMobile/Classes/WeaponCellView.m	Sat Jul 31 11:24:53 2010 +0200
@@ -16,32 +16,32 @@
 -(id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
     if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
         delegate = nil;
-        
+
         weaponName = [[UILabel alloc] init];
         weaponName.backgroundColor = [UIColor clearColor];
         weaponName.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]];
         weaponIcon = [[UIImageView alloc] init];
-    
+
         initialQt = [[UISlider alloc] init];
         [initialQt addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
         initialQt.maximumValue = 9;
         initialQt.minimumValue = 0;
-        
+
         probabilityQt = [[UISlider alloc] init];
         [probabilityQt addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
         probabilityQt.maximumValue = 9;
         probabilityQt.minimumValue = 0;
-        
+
         delayQt = [[UISlider alloc] init];
         [delayQt addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
         delayQt.maximumValue = 9;
         delayQt.minimumValue = 0;
-        
+
         crateQt = [[UISlider alloc] init];
         [crateQt addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
         crateQt.maximumValue = 9;
         crateQt.minimumValue = 0;
-    
+
         NSString *imgAmmoStr = [NSString stringWithFormat:@"%@/iconAmmo.png",BTN_DIRECTORY()];
         NSString *imgDamageStr = [NSString stringWithFormat:@"%@/iconDamage.png",BTN_DIRECTORY()];
         NSString *imgTimeStr = [NSString stringWithFormat:@"%@/iconTime.png",BTN_DIRECTORY()];
@@ -51,35 +51,35 @@
         probabImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgDamageStr]];
         delayImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgTimeStr]];
         crateImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgBoxStr]];
-        
+
         initialLab = [[UILabel alloc] init];
         initialLab.backgroundColor = [UIColor clearColor];
         initialLab.textColor = [UIColor grayColor];
         initialLab.textAlignment = UITextAlignmentCenter;
-        
+
         probLab = [[UILabel alloc] init];
         probLab.backgroundColor = [UIColor clearColor];
         probLab.textColor = [UIColor grayColor];
         probLab.textAlignment = UITextAlignmentCenter;
-        
+
         delLab = [[UILabel alloc] init];
         delLab.backgroundColor = [UIColor clearColor];
         delLab.textColor = [UIColor grayColor];
         delLab.textAlignment = UITextAlignmentCenter;
-        
+
         craLab = [[UILabel alloc] init];
         craLab.backgroundColor = [UIColor clearColor];
         craLab.textColor = [UIColor grayColor];
         craLab.textAlignment = UITextAlignmentCenter;
-        
+
         [self.contentView addSubview:weaponName]; // [weaponName release];
         [self.contentView addSubview:weaponIcon]; // [weaponIcon release];
-        
+
         [self.contentView addSubview:initialQt];  // [initialQt release];
         [self.contentView addSubview:probabilityQt]; // [probabilityQt release];
         [self.contentView addSubview:delayQt];    // [delayQt release];
         [self.contentView addSubview:crateQt];    // [crateQt release];
-        
+
         [self.contentView addSubview:initialImg]; // [initialImg release];
         [self.contentView addSubview:probabImg];  // [probabImg release];
         [self.contentView addSubview:delayImg];   // [delayImg release];
@@ -98,7 +98,7 @@
 
     CGRect contentRect = self.contentView.bounds;
     CGFloat boundsX = contentRect.origin.x;
-    
+
     if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
         boundsX += 65;
     else
@@ -106,24 +106,24 @@
 
     weaponIcon.frame = CGRectMake(5, 5, 32, 32);
     weaponName.frame = CGRectMake(45, 8, 200, 25);
-    
+
     // second line
     initialImg.frame = CGRectMake(boundsX+20, 40, 32, 32);
     initialLab.frame = CGRectMake(boundsX+56, 40, 20, 32);
     initialLab.text = ((int)initialQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)initialQt.value];
     initialQt.frame = CGRectMake(boundsX+80, 40, 150, 32);
-    
+
     probabImg.frame = CGRectMake(boundsX+255, 40, 32, 32);
     probLab.frame = CGRectMake(boundsX+291, 40, 20, 32);
     probLab.text = ((int)probabilityQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)probabilityQt.value];
     probabilityQt.frame = CGRectMake(boundsX+314, 40, 150, 32);
-    
+
     // third line
     delayImg.frame = CGRectMake(boundsX+20, 80, 32, 32);
     delLab.frame = CGRectMake(boundsX+56, 80, 20, 32);
     delLab.text = ((int)delayQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)delayQt.value];
     delayQt.frame = CGRectMake(boundsX+80, 80, 150, 32);
-    
+
     crateImg.frame = CGRectMake(boundsX+255, 80, 32, 32);
     craLab.frame = CGRectMake(boundsX+291, 80, 20, 32);
     craLab.text = ((int)crateQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)crateQt.value];
@@ -143,12 +143,12 @@
         probLab.text = ((int)probabilityQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)probabilityQt.value];
         delLab.text = ((int)delayQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)delayQt.value];
         craLab.text = ((int)crateQt.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)crateQt.value];
-        
+
         [delegate updateValues:[NSArray arrayWithObjects:
                                 [NSNumber numberWithInt:(int)initialQt.value],
                                 [NSNumber numberWithInt:(int)probabilityQt.value],
                                 [NSNumber numberWithInt:(int)delayQt.value],
-                                [NSNumber numberWithInt:(int)crateQt.value], nil] 
+                                [NSNumber numberWithInt:(int)crateQt.value], nil]
                        atIndex:self.tag];
     } else
         DLog(@"error - delegate = nil!");