/* UICallBar.h * * Copyright (C) 2012 Belledonne Comunications, Grenoble, France * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #import #import "UIMicroButton.h" #import "UIPauseButton.h" #import "UISpeakerButton.h" #import "UIVideoButton.h" #import "UIHangUpButton.h" #import "UIDigitButton.h" #import "TPMultiLayoutViewController.h" @interface UICallBar: TPMultiLayoutViewController { UIPauseButton* pauseButton; UIButton* conferenceButton; UIVideoButton* videoButton; UIMicroButton* microButton; UISpeakerButton* speakerButton; UIToggleButton* optionsButton; UIHangUpButton* hangupButton; UIView* padView; UIView* optionsView; UIButton* optionsAddButton; UIButton* optionsTransferButton; UIToggleButton* dialerButton; //Key pad UIDigitButton* oneButton; UIDigitButton* twoButton; UIDigitButton* threeButton; UIDigitButton* fourButton; UIDigitButton* fiveButton; UIDigitButton* sixButton; UIDigitButton* sevenButton; UIDigitButton* eightButton; UIDigitButton* nineButton; UIDigitButton* starButton; UIDigitButton* zeroButton; UIDigitButton* sharpButton; UIButton* option1Button; UIButton* option2Button; UIButton* option3Button; } @property (nonatomic, retain) IBOutlet UIPauseButton* pauseButton; @property (nonatomic, retain) IBOutlet UIButton* conferenceButton; @property (nonatomic, retain) IBOutlet UIVideoButton* videoButton; @property (nonatomic, retain) IBOutlet UIMicroButton* microButton; @property (nonatomic, retain) IBOutlet UISpeakerButton* speakerButton; @property (nonatomic, retain) IBOutlet UIToggleButton* optionsButton; @property (nonatomic, retain) IBOutlet UIHangUpButton* hangupButton; @property (nonatomic, retain) IBOutlet UIView* padView; @property (nonatomic, retain) IBOutlet UIView* optionsView; @property (nonatomic, retain) IBOutlet UIButton* optionsAddButton; @property (nonatomic, retain) IBOutlet UIButton* optionsTransferButton; @property (nonatomic, retain) IBOutlet UIToggleButton* dialerButton; @property (nonatomic, retain) IBOutlet UIButton* oneButton; @property (nonatomic, retain) IBOutlet UIButton* twoButton; @property (nonatomic, retain) IBOutlet UIButton* threeButton; @property (nonatomic, retain) IBOutlet UIButton* fourButton; @property (nonatomic, retain) IBOutlet UIButton* fiveButton; @property (nonatomic, retain) IBOutlet UIButton* sixButton; @property (nonatomic, retain) IBOutlet UIButton* sevenButton; @property (nonatomic, retain) IBOutlet UIButton* eightButton; @property (nonatomic, retain) IBOutlet UIButton* nineButton; @property (nonatomic, retain) IBOutlet UIButton* starButton; @property (nonatomic, retain) IBOutlet UIButton* zeroButton; @property (nonatomic, retain) IBOutlet UIButton* sharpButton; @property (nonatomic, retain) IBOutlet UIButton* option1Button; @property (nonatomic, retain) IBOutlet UIButton* option2Button; @property (nonatomic, retain) IBOutlet UIButton* option3Button; - (IBAction)onOptionsClick:(id)sender; - (IBAction)onOptionsTransferClick:(id)sender; - (IBAction)onOptionsAddClick:(id)sender; - (IBAction)onConferenceClick:(id)sender; - (IBAction)onPadClick:(id)sender; - (IBAction)onOption1Click:(id)sender; - (IBAction)onOption2Click:(id)sender; - (IBAction)onOption3Click:(id)sender; @end