btstack/PrefsBundle/BluetoothTableViewAdapter.m
2011-04-30 19:53:39 +00:00

187 lines
6.3 KiB
Objective-C

/*
* Copyright (C) 2011 by Matthias Ringwald
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holders nor the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
* RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#import "BluetoothTableViewAdapter.h"
@implementation BluetoothTableViewAdapter
-(id) initWithTableView:(UITableView *) tableView {
bluetoothActivity = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
[bluetoothActivity startAnimating];
_tableView = tableView;
return self;
}
-(void)bluetoothStateChanged{
if ([_tableView respondsToSelector:@selector(allowsSelection)]){
_tableView.allowsSelection = [[BluetoothController sharedInstance] canChange];
}
[_tableView reloadData];
}
#pragma mark Table view delegate methods
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_3_0
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
#else
cell = [[[UITableViewCell alloc] initWithFrame:CGRectNull reuseIdentifier:(NSString *)CellIdentifier] autorelease];
#endif
}
// Set up the cell...
NSString *theLabel = nil;
cell.accessoryType = UITableViewCellAccessoryNone;
cell.accessoryView = nil;
BOOL hasAccessory;
BluetoothType_t bluetoothType = [[BluetoothController sharedInstance] targetType];
BOOL activity = [[BluetoothController sharedInstance] isActive];
NSLog(@"tableView update: type %u, active %u", bluetoothType, activity);
switch ([indexPath section]) {
case 0:
switch ([indexPath row]) {
case 0:
theLabel = @"BTstack";
hasAccessory = bluetoothType == BluetoothTypeBTstack;
break;
case 1:
theLabel = @"iOS";
hasAccessory = bluetoothType == BluetoothTypeApple;
break;
default:
theLabel = @"None";
hasAccessory = bluetoothType == BluetoothTypeNone;
break;
}
if (hasAccessory) {
if (activity){
cell.accessoryView = bluetoothActivity;
} else {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
}
break;
case 1:
theLabel = @"Discoverable";
cell.accessoryView = discoverableSwitch;
break;
default:
break;
}
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_3_0
if (theLabel) cell.textLabel.text = theLabel;
#else
if (theLabel) cell.text = theLabel;
#endif
return cell;
}
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if([indexPath section] != 0) return nil;
BluetoothType_t newType;
switch ([indexPath row]) {
case 0:
newType = BluetoothTypeBTstack;
break;
case 1:
newType = BluetoothTypeApple;
break;
default:
newType = BluetoothTypeNone;
break;
}
[[BluetoothController sharedInstance] requestType:newType];
[_tableView reloadData];
return nil;
}
#pragma mark Table view data source methods
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
switch (section){
case 0:
if (![[BluetoothController sharedInstance] isConnected]){
return @"Internal BTstack Error";
}
return @"Active Bluetooth Stack";
default:
return @"BTstack Config";
}
}
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
switch (section) {
case 0:
if (![[BluetoothController sharedInstance] isConnected]){
return @"Cannot connect to BTstack daemon.\n\nPlease re-install BTstack package and/or make "
"sure that /Library/LaunchDaemons/ is owned by user 'root' and group 'wheel' (root:wheel)!";
}
return @"Enabling iOS Bluetooth after BTstack was used can take up to 30 seconds. Please be patient.";
default:
return nil;
}
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1; // without discoverable
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
switch (section){
case 0:
if (![[BluetoothController sharedInstance] isConnected]){
return 0;
}
return 3;
default:
return 1;
}
}
@end