//
//  UIControls.h
//  PhoneGap
//
//  Created by Michael Nachbaur on 13/04/09.
//  Copyright 2009 Decaf Ninja Software. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <UIKit/UITabBar.h>
#import <UIKit/UIToolbar.h>

#import "PhoneGapCommand.h"

@interface UIControls : PhoneGapCommand <UITabBarDelegate> {
    UITabBar* tabBar;
    NSMutableDictionary* tabBarItems;
    
    UIToolbar* toolBar;
    UIBarButtonItem* toolBarTitle;
    NSMutableDictionary* toolBarItems;
	CGRect	originalWebViewBounds;
}

/* Tab Bar methods 
 */
- (void)createTabBar:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)showTabBar:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)hideTabBar:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)showTabBarItems:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)createTabBarItem:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)updateTabBarItem:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)selectTabBarItem:(NSArray*)arguments withDict:(NSDictionary*)options;

/* Tool Bar methods
 */
- (void)createToolBar:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)setToolBarTitle:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)toolBarTitleClicked;

/*
- (void)createToolBarButton:(NSArray*)arguments withDict:(NSDictionary*)options;
- (void)createToolBarTitle:(NSArray*)arguments withDict:(NSDictionary*)options;
*/

//- (void)setToolBarTitle:(NSArray*)arguments withDict:(NSDictionary*)options;
//- (void)setToolBarButtons:(NSArray*)arguments withDict:(NSDictionary*)options;

@end
