diff --git a/Classes/ChatViewController.h b/Classes/ChatViewController.h
index 3b30aa446..a6df7bda6 100644
--- a/Classes/ChatViewController.h
+++ b/Classes/ChatViewController.h
@@ -27,7 +27,7 @@
@property (nonatomic, retain) IBOutlet ChatTableViewController* tableController;
-- (IBAction)onNew:(id) event;
+- (IBAction)onAdd:(id) event;
- (IBAction)onEdit:(id) event;
@end
diff --git a/Classes/ChatViewController.m b/Classes/ChatViewController.m
index dd8f609d1..5f52c3bd7 100644
--- a/Classes/ChatViewController.m
+++ b/Classes/ChatViewController.m
@@ -27,7 +27,7 @@
return [super initWithNibName:@"ChatViewController" bundle:[NSBundle mainBundle]];
}
-- (IBAction)onNew: (id) event {
+- (IBAction)onAdd: (id) event {
}
diff --git a/Classes/ChatViewController.xib b/Classes/ChatViewController.xib
index e3944cd49..3145cd267 100644
--- a/Classes/ChatViewController.xib
+++ b/Classes/ChatViewController.xib
@@ -61,18 +61,18 @@
3
MC41AA
-
@@ -339,16 +340,16 @@
ChatViewController
UIViewController
+ id
id
- id
-
- onEdit:
+
+ onAdd:
id
-
- onNew:
+
+ onEdit:
id
@@ -380,11 +381,11 @@
3
{213, 117}
+ {320, 117}
+ {320, 117}
+ {320, 117}
+ {320, 117}
{213, 117}
- {320, 117}
- {320, 117}
- {320, 117}
- {320, 117}
1181
diff --git a/Classes/ContactsViewController.xib b/Classes/ContactsViewController.xib
index 05961c8d6..d95d9e6ab 100644
--- a/Classes/ContactsViewController.xib
+++ b/Classes/ContactsViewController.xib
@@ -61,13 +61,13 @@
3
MC41AA
-
+
NSImage
- all-contacts-selectionne.png
+ contacts_all_selected.png
-
+
NSImage
- all-contacts-actif.png
+ contacts_all_default.png
2
@@ -96,13 +96,13 @@
0
NO
-
+
NSImage
- linphone-selectionne.png
+ contacts_linphone_selected.png
-
+
NSImage
- linphone-actif.png
+ contacts_linphone_default.png
@@ -124,13 +124,13 @@
0
NO
-
+
NSImage
- add-contact-depuis-detail-over.png
+ contacts_add_over.png
-
+
NSImage
- add-contact-depuis-detail-actif.png
+ contacts_add_default.png
@@ -156,6 +156,7 @@
{{0, 58}, {320, 402}}
+
_NS:10
3
@@ -331,19 +332,19 @@
4
- all
+ allButton
5
- linphone
+ linphoneButton
6
- addContact
+ addButton
69
@@ -370,7 +371,7 @@
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
@@ -450,12 +451,12 @@
YES
3
- {214, 117}
- {214, 117}
- {213, 117}
- {213, 117}
- {213, 117}
- {213, 117}
+ {214, 117}
+ {214, 117}
+ {213, 117}
+ {213, 117}
+ {213, 117}
+ {213, 117}
1181
diff --git a/Classes/DialerViewController.h b/Classes/DialerViewController.h
index 6db7ae801..e5436109a 100644
--- a/Classes/DialerViewController.h
+++ b/Classes/DialerViewController.h
@@ -46,7 +46,7 @@
UIDigitButton* nineButton;
UIDigitButton* starButton;
UIDigitButton* zeroButton;
- UIDigitButton* hashButton;
+ UIDigitButton* sharpButton;
}
- (void)setAddress:(NSString*) address;
@@ -69,10 +69,10 @@
@property (nonatomic, retain) IBOutlet UIButton* nineButton;
@property (nonatomic, retain) IBOutlet UIButton* starButton;
@property (nonatomic, retain) IBOutlet UIButton* zeroButton;
-@property (nonatomic, retain) IBOutlet UIButton* hashButton;
+@property (nonatomic, retain) IBOutlet UIButton* sharpButton;
- (IBAction)onAddContactClick: (id) event;
-- (IBAction)onCancelClick: (id) event;
+- (IBAction)onBackClick: (id) event;
- (IBAction)onAddCallClick: (id) event;
- (IBAction)onAddressChange: (id)sender;
diff --git a/Classes/DialerViewController.m b/Classes/DialerViewController.m
index 302f98355..5c2f9269e 100644
--- a/Classes/DialerViewController.m
+++ b/Classes/DialerViewController.m
@@ -48,7 +48,7 @@
@synthesize nineButton;
@synthesize starButton;
@synthesize zeroButton;
-@synthesize hashButton;
+@synthesize sharpButton;
#pragma mark - Lifecycle Functions
@@ -75,7 +75,7 @@
[nineButton release];
[starButton release];
[zeroButton release];
- [hashButton release];
+ [sharpButton release];
[[NSNotificationCenter defaultCenter] removeObserver:self];
@@ -93,21 +93,21 @@
- (void)viewDidLoad {
[super viewDidLoad];
- [zeroButton initWithNumber:'0' addressField:addressField dtmf:false];
- [oneButton initWithNumber:'1' addressField:addressField dtmf:false];
- [twoButton initWithNumber:'2' addressField:addressField dtmf:false];
- [threeButton initWithNumber:'3' addressField:addressField dtmf:false];
- [fourButton initWithNumber:'4' addressField:addressField dtmf:false];
- [fiveButton initWithNumber:'5' addressField:addressField dtmf:false];
- [sixButton initWithNumber:'6' addressField:addressField dtmf:false];
- [sevenButton initWithNumber:'7' addressField:addressField dtmf:false];
- [eightButton initWithNumber:'8' addressField:addressField dtmf:false];
- [nineButton initWithNumber:'9' addressField:addressField dtmf:false];
- [starButton initWithNumber:'*' addressField:addressField dtmf:false];
- [hashButton initWithNumber:'#' addressField:addressField dtmf:false];
- [callButton initWithAddress:addressField];
- [addCallButton initWithAddress:addressField];
- [eraseButton initWithAddressField:addressField];
+ [zeroButton initWithNumber:'0' addressField:addressField dtmf:false];
+ [oneButton initWithNumber:'1' addressField:addressField dtmf:false];
+ [twoButton initWithNumber:'2' addressField:addressField dtmf:false];
+ [threeButton initWithNumber:'3' addressField:addressField dtmf:false];
+ [fourButton initWithNumber:'4' addressField:addressField dtmf:false];
+ [fiveButton initWithNumber:'5' addressField:addressField dtmf:false];
+ [sixButton initWithNumber:'6' addressField:addressField dtmf:false];
+ [sevenButton initWithNumber:'7' addressField:addressField dtmf:false];
+ [eightButton initWithNumber:'8' addressField:addressField dtmf:false];
+ [nineButton initWithNumber:'9' addressField:addressField dtmf:false];
+ [starButton initWithNumber:'*' addressField:addressField dtmf:false];
+ [sharpButton initWithNumber:'#' addressField:addressField dtmf:false];
+ [callButton initWithAddress:addressField];
+ [addCallButton initWithAddress:addressField];
+ [eraseButton initWithAddressField:addressField];
// Set observer
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callUpdate:) name:@"LinphoneCallUpdate" object:nil];
@@ -166,7 +166,7 @@
}
-- (IBAction)onCancelClick: (id) event {
+- (IBAction)onBackClick: (id) event {
[[LinphoneManager instance] changeView:PhoneView_InCall];
}
diff --git a/Classes/DialerViewController.xib b/Classes/DialerViewController.xib
index 26df9878a..371cd5d74 100644
--- a/Classes/DialerViewController.xib
+++ b/Classes/DialerViewController.xib
@@ -61,7 +61,7 @@
IBCocoaTouchFramework
NSImage
- fond-clavier.png
+ numpad_background.png
@@ -80,25 +80,17 @@
IBCocoaTouchFramework
0
0
-
- 3
- MQA
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
3
MC41AA
-
+
NSImage
- 1-over.png
+ numpad_one_over.png
-
+
NSImage
- 1-actif.png
+ numpad_one_default.png
Helvetica-Bold
@@ -124,19 +116,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 2-over.png
+ numpad_two_over.png
-
+
NSImage
- 2-actif.png
+ numpad_two_default.png
@@ -153,15 +140,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 3-actif.png
+ numpad_three_over.png
+
+
+ NSImage
+ numpad_three_default.png
@@ -178,19 +164,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 4-over.png
+ numpad_four_over.png
-
+
NSImage
- 4-actif.png
+ numpad_four_default.png
@@ -207,19 +188,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 5-over.png
+ numpad_five_over.png
-
+
NSImage
- 5-actif.png
+ numpad_five_default.png
@@ -236,19 +212,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 6-over.png
+ numpad_six_over.png
-
+
NSImage
- 6-actif.png
+ numpad_six_default.png
@@ -265,19 +236,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 7-over.png
+ numpad_seven_over.png
-
+
NSImage
- 7-actif.png
+ numpad_seven_default.png
@@ -294,19 +260,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 8-over.png
+ numpad_eight_over.png
-
+
NSImage
- 8-actif.png
+ numpad_eight_default.png
@@ -323,19 +284,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 9-over.png
+ numpad_nine_over.png
-
+
NSImage
- 9-actif.png
+ numpad_nine_default.png
@@ -352,19 +308,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- etoile-over.png
+ numpad_star_over.png
-
+
NSImage
- etoile-actif.png
+ numpad_star_default.png
@@ -381,19 +332,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 0-over.png
+ numpad_zero_over.png
-
+
NSImage
- 0-actif.png
+ numpad_zero_default.png
@@ -410,19 +356,14 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- diese-over.png
+ numpad_sharp_over.png
-
+
NSImage
- diese-actif.png
+ numpad_sharp_default.png
@@ -459,7 +400,7 @@
IBCocoaTouchFramework
NSImage
- champ-saisie-numero.png
+ dialer_address_background.png
@@ -479,7 +420,10 @@
0
sip:
-
+
+ 3
+ MQA
+
YES
15
@@ -534,17 +478,17 @@
NO
NO
-
+
NSImage
- add-contact-over.png
+ add_contact_over.png
-
+
NSImage
- add-contact-inactif.png
+ add_contact_disabled.png
-
+
NSImage
- add-contact-actif.png
+ add_contact_default.png
2
@@ -567,18 +511,18 @@
NO
NO
-
+
NSImage
- cancel_white_bg_over.png
+ back_over.png
+
+
+ NSImage
+ back_default.png
NSImage
cancel_white_bg_disabled.png
-
- NSImage
- cancel_white_bg_default.png
-
@@ -598,17 +542,17 @@
NO
NO
-
+
NSImage
- appeler-over.png
+ call_over.png
-
+
NSImage
- appeler-disabled.png
+ call_disabled.png
-
+
NSImage
- appeler-actif.png
+ call_default.png
@@ -629,17 +573,17 @@
NO
NO
-
+
NSImage
- add_call_more_over.png
+ add_call_over.png
-
+
NSImage
- add_call_more_disable.png
+ add_call_disabled.png
-
+
NSImage
- add_call_more_default.png
+ add_call_default.png
@@ -650,6 +594,7 @@
{{214, 0}, {106, 69}}
+
_NS:9
NO
IBCocoaTouchFramework
@@ -658,23 +603,18 @@
0
NO
NO
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
-
+
NSImage
- backspace-over.png
+ backspace_over.png
-
+
NSImage
- backspace-disabled.png
+ backspace_disabled.png
-
+
NSImage
- backspace-actif.png
+ backspace_default.png
@@ -796,14 +736,6 @@
200
-
-
- hashButton
-
-
-
- 201
-
eraseButton
@@ -860,6 +792,14 @@
231
+
+
+ sharpButton
+
+
+
+ 232
+
delegate
@@ -879,12 +819,12 @@
- onCancelClick:
+ onBackClick:
7
- 229
+ 233
@@ -978,8 +918,8 @@
-
+
pad
@@ -1080,7 +1020,7 @@
183
- cancelButton
+ backButton
185
@@ -1137,6 +1077,7 @@
224.IBUIButtonInspectorSelectedStateConfigurationMetadataKey
29.CustomClassName
29.IBPluginDependency
+ 29.IBUIButtonInspectorSelectedStateConfigurationMetadataKey
30.CustomClassName
30.IBPluginDependency
30.IBUIButtonInspectorSelectedStateConfigurationMetadataKey
@@ -1186,55 +1127,56 @@
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UICallButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIEraseButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UICallButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UICallButton
+ UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIAddressTextField
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIDigitButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
@@ -1249,7 +1191,7 @@
- 231
+ 233
@@ -1264,7 +1206,7 @@
onAddCallClick:
onAddContactClick:
onAddressChange:
- onCancelClick:
+ onBackClick:
YES
@@ -1281,7 +1223,7 @@
onAddCallClick:
onAddContactClick:
onAddressChange:
- onCancelClick:
+ onBackClick:
YES
@@ -1298,7 +1240,7 @@
id
- onCancelClick:
+ onBackClick:
id
@@ -1316,10 +1258,10 @@
eraseButton
fiveButton
fourButton
- hashButton
nineButton
oneButton
sevenButton
+ sharpButton
sixButton
starButton
threeButton
@@ -1361,10 +1303,10 @@
eraseButton
fiveButton
fourButton
- hashButton
nineButton
oneButton
sevenButton
+ sharpButton
sixButton
starButton
threeButton
@@ -1409,10 +1351,6 @@
fourButton
UIButton
-
- hashButton
- UIButton
-
nineButton
UIButton
@@ -1425,6 +1363,10 @@
sevenButton
UIButton
+
+ sharpButton
+ UIButton
+
sixButton
UIButton
@@ -1514,74 +1456,50 @@
YES
YES
- 0-actif.png
- 0-over.png
- 1-actif.png
- 1-over.png
- 2-actif.png
- 2-over.png
- 3-actif.png
- 4-actif.png
- 4-over.png
- 5-actif.png
- 5-over.png
- 6-actif.png
- 6-over.png
- 7-actif.png
- 7-over.png
- 8-actif.png
- 8-over.png
- 9-actif.png
- 9-over.png
- add-contact-actif.png
- add-contact-inactif.png
- add-contact-over.png
- add_call_more_default.png
- add_call_more_disable.png
- add_call_more_over.png
- appeler-actif.png
- appeler-disabled.png
- appeler-over.png
- backspace-actif.png
- backspace-disabled.png
- backspace-over.png
- cancel_white_bg_default.png
+ add_call_default.png
+ add_call_disabled.png
+ add_call_over.png
+ add_contact_default.png
+ add_contact_disabled.png
+ add_contact_over.png
+ back_default.png
+ back_over.png
+ backspace_default.png
+ backspace_disabled.png
+ backspace_over.png
+ call_default.png
+ call_disabled.png
+ call_over.png
cancel_white_bg_disabled.png
- cancel_white_bg_over.png
- champ-saisie-numero.png
- diese-actif.png
- diese-over.png
- etoile-actif.png
- etoile-over.png
- fond-clavier.png
+ dialer_address_background.png
+ numpad_background.png
+ numpad_eight_default.png
+ numpad_eight_over.png
+ numpad_five_default.png
+ numpad_five_over.png
+ numpad_four_default.png
+ numpad_four_over.png
+ numpad_nine_default.png
+ numpad_nine_over.png
+ numpad_one_default.png
+ numpad_one_over.png
+ numpad_seven_default.png
+ numpad_seven_over.png
+ numpad_sharp_default.png
+ numpad_sharp_over.png
+ numpad_six_default.png
+ numpad_six_over.png
+ numpad_star_default.png
+ numpad_star_over.png
+ numpad_three_default.png
+ numpad_three_over.png
+ numpad_two_default.png
+ numpad_two_over.png
+ numpad_zero_default.png
+ numpad_zero_over.png
YES
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {213, 138}
- {213, 138}
- {213, 138}
- {214, 138}
- {214, 138}
- {214, 138}
{214, 138}
{214, 138}
{214, 138}
@@ -1591,12 +1509,38 @@
{213, 138}
{213, 138}
{213, 138}
+ {213, 138}
+ {213, 138}
+ {214, 138}
+ {214, 138}
+ {214, 138}
+ {213, 138}
{640, 135}
- {210, 113}
- {210, 113}
- {210, 113}
- {210, 113}
{640, 523}
+ {220, 113}
+ {220, 113}
+ {220, 113}
+ {220, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {220, 113}
+ {220, 113}
+ {220, 113}
+ {220, 113}
1181
diff --git a/Classes/HistoryViewController.m b/Classes/HistoryViewController.m
index afad71699..3d49390fa 100644
--- a/Classes/HistoryViewController.m
+++ b/Classes/HistoryViewController.m
@@ -67,7 +67,7 @@ typedef enum _HistoryView {
[self changeView: History_All];
// Set selected+over background: IB lack !
- [editButton setBackgroundImage:[UIImage imageNamed:@"ok-edit-list-history-over.png"]
+ [editButton setImage:[UIImage imageNamed:@"history_ok_over.png"]
forState:(UIControlStateHighlighted | UIControlStateSelected)];
}
diff --git a/Classes/HistoryViewController.xib b/Classes/HistoryViewController.xib
index 9c6feaeb1..b08c9fb4d 100644
--- a/Classes/HistoryViewController.xib
+++ b/Classes/HistoryViewController.xib
@@ -61,13 +61,13 @@
3
MC41AA
-
+
NSImage
- all-call-selectionne.png
+ history_all_selected.png
-
+
NSImage
- all-call-actif.png
+ history_all_default.png
2
@@ -96,13 +96,13 @@
0
NO
-
+
NSImage
- missed-selectionne.png
+ history_missed_selected.png
-
+
NSImage
- missed-actif.png
+ history_missed_default.png
@@ -124,17 +124,17 @@
0
NO
-
+
NSImage
- edit-history-over.png
+ history_edit_over.png
-
+
NSImage
- ok-edit-list-history-actif.png
+ history_ok_default.png
-
+
NSImage
- edit-history-actif.png
+ history_edit_default.png
@@ -160,6 +160,7 @@
{{0, 58}, {320, 402}}
+
_NS:9
3
@@ -348,19 +349,19 @@
4
- all
+ allButton
5
- missed
+ missedButton
6
- edit
+ editButton
17
@@ -388,9 +389,9 @@
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIToggleButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
@@ -435,7 +436,7 @@
UIButton
- UIButton
+ UIToggleButton
UIButton
HistoryTableViewController
UITableView
@@ -447,7 +448,7 @@
editButton
- UIButton
+ UIToggleButton
missedButton
@@ -486,13 +487,13 @@
YES
3
- {213, 117}
- {213, 117}
- {214, 117}
- {214, 117}
- {213, 117}
- {213, 117}
- {214, 117}
+ {213, 117}
+ {213, 117}
+ {214, 117}
+ {214, 117}
+ {213, 117}
+ {213, 117}
+ {214, 117}
1181
diff --git a/Classes/InCallViewController.xib b/Classes/InCallViewController.xib
index 26a28d6a4..48ce96c59 100644
--- a/Classes/InCallViewController.xib
+++ b/Classes/InCallViewController.xib
@@ -131,7 +131,7 @@
-2147483356
- {84, 61}
+ {85, 33}
_NS:9
@@ -558,8 +558,8 @@
YES
- {167, 122}
- {167, 122}
+ {170, 65}
+ {170, 65}
1181
diff --git a/Classes/IncomingCallViewController.xib b/Classes/IncomingCallViewController.xib
index dbd4b76ca..69ca84bb3 100644
--- a/Classes/IncomingCallViewController.xib
+++ b/Classes/IncomingCallViewController.xib
@@ -4520,7 +4520,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
IBCocoaTouchFramework
NSImage
- ombre-cotes-avatar.png
+ avatar_shadow.png
@@ -4535,7 +4535,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
IBCocoaTouchFramework
NSImage
- avatar-inconnu.png
+ avatar_unknown.png
@@ -4554,7 +4554,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
-2147483356
- {{0, 9}, {320, 67}}
+ {{0, 10}, {320, 67}}
@@ -4585,22 +4585,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
IBCocoaTouchFramework
0
0
-
- 3
- MQA
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
-
+
NSImage
- decrocher-over.png
+ accept_over.png
-
+
NSImage
- decrocher-actif.png
+ accept_default.png
@@ -4611,6 +4603,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
{{160, 0}, {160, 77}}
+
_NS:9
NO
@@ -4619,19 +4612,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
-
+
NSImage
- refuser-over.png
+ decline_over.png
-
+
NSImage
- refuser-actif.png
+ decline_default.png
@@ -4751,19 +4739,13 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
7
- accept
+ acceptButton
6
- decline
-
-
- 5
-
-
- mask
+ declineButton
8
@@ -4807,6 +4789,12 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
avatarImage
+
+ 5
+
+
+ mask
+
@@ -4823,9 +4811,9 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
@@ -4839,7 +4827,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
IncomingCallViewController
- UIViewController
+ UIModalViewController
id
id
@@ -4873,6 +4861,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
./Classes/IncomingCallViewController.h
+
+ UIModalViewController
+ UIViewController
+
+ IBProjectSource
+ ./Classes/UIModalViewController.h
+
+
0
@@ -4884,14 +4880,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
YES
3
- {320, 339}
+ {320, 154}
+ {320, 154}
+ {16, 16}
+ {320, 339}
{640, 125}
{640, 135}
- {320, 154}
- {320, 154}
- {640, 523}
- {320, 154}
- {320, 154}
+ {320, 154}
+ {320, 154}
1181
diff --git a/Classes/LinphoneUI/UICallBar.h b/Classes/LinphoneUI/UICallBar.h
index 564722771..6bc9c0f1b 100644
--- a/Classes/LinphoneUI/UICallBar.h
+++ b/Classes/LinphoneUI/UICallBar.h
@@ -48,7 +48,7 @@
UIDigitButton* nineButton;
UIDigitButton* starButton;
UIDigitButton* zeroButton;
- UIDigitButton* hashButton;
+ UIDigitButton* sharpButton;
}
@property (nonatomic, retain) IBOutlet UIPauseButton* pauseButton;
@@ -71,7 +71,7 @@
@property (nonatomic, retain) IBOutlet UIButton* nineButton;
@property (nonatomic, retain) IBOutlet UIButton* starButton;
@property (nonatomic, retain) IBOutlet UIButton* zeroButton;
-@property (nonatomic, retain) IBOutlet UIButton* hashButton;
+@property (nonatomic, retain) IBOutlet UIButton* sharpButton;
- (IBAction)onOptionsClick:(id)sender;
- (IBAction)onConferenceClick:(id)sender;
diff --git a/Classes/LinphoneUI/UICallBar.m b/Classes/LinphoneUI/UICallBar.m
index 4ce0132b2..2efde062e 100644
--- a/Classes/LinphoneUI/UICallBar.m
+++ b/Classes/LinphoneUI/UICallBar.m
@@ -48,7 +48,7 @@
@synthesize nineButton;
@synthesize starButton;
@synthesize zeroButton;
-@synthesize hashButton;
+@synthesize sharpButton;
#pragma mark - Lifecycle Functions
@@ -65,6 +65,19 @@
[speakerButton release];
[optionsButton release];
+ [oneButton release];
+ [twoButton release];
+ [threeButton release];
+ [fourButton release];
+ [fiveButton release];
+ [sixButton release];
+ [sevenButton release];
+ [eightButton release];
+ [nineButton release];
+ [starButton release];
+ [zeroButton release];
+ [sharpButton release];
+
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
@@ -87,13 +100,34 @@
[eightButton initWithNumber:'8' addressField:nil dtmf:true];
[nineButton initWithNumber:'9' addressField:nil dtmf:true];
[starButton initWithNumber:'*' addressField:nil dtmf:true];
- [hashButton initWithNumber:'#' addressField:nil dtmf:true];
+ [sharpButton initWithNumber:'#' addressField:nil dtmf:true];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callUpdate:) name:@"LinphoneCallUpdate" object:nil];
- // Set selected+over background: IB lack !
- [videoButton setBackgroundImage:[UIImage imageNamed:@"video-ON-disabled.png"]
+ // Set selected+disabled background: IB lack !
+ [videoButton setImage:[UIImage imageNamed:@"video_on_disabled.png"]
forState:(UIControlStateDisabled | UIControlStateSelected)];
+ // Set selected+over background: IB lack !
+ [videoButton setImage:[UIImage imageNamed:@"video_on_over.png"]
+ forState:(UIControlStateHighlighted | UIControlStateSelected)];
+
+ // Set selected+disabled background: IB lack !
+ [speakerButton setImage:[UIImage imageNamed:@"speaker_on_disabled.png"]
+ forState:(UIControlStateDisabled | UIControlStateSelected)];
+ // Set selected+over background: IB lack !
+ [speakerButton setImage:[UIImage imageNamed:@"speaker_on_over.png"]
+ forState:(UIControlStateHighlighted | UIControlStateSelected)];
+
+ // Set selected+disabled background: IB lack !
+ [microButton setImage:[UIImage imageNamed:@"micro_on_disabled.png"]
+ forState:(UIControlStateDisabled | UIControlStateSelected)];
+ // Set selected+over background: IB lack !
+ [microButton setImage:[UIImage imageNamed:@"micro_on_over.png"]
+ forState:(UIControlStateHighlighted | UIControlStateSelected)];
+
+ // Set selected+over background: IB lack !
+ [pauseButton setImage:[UIImage imageNamed:@"pause_on_over.png"]
+ forState:(UIControlStateHighlighted | UIControlStateSelected)];
}
- (void)viewDidUnload {
diff --git a/Classes/LinphoneUI/UICallBar.xib b/Classes/LinphoneUI/UICallBar.xib
index f2aea4760..5773c1431 100644
--- a/Classes/LinphoneUI/UICallBar.xib
+++ b/Classes/LinphoneUI/UICallBar.xib
@@ -42,7 +42,6 @@
{{0, 335}, {320, 125}}
-
_NS:9
1
@@ -59,13 +58,13 @@
-2147483360
-
+
292
- {{-20, 20}, {107, 54}}
+ {{-20, 10}, {107, 54}}
-
+
1
MC40MDAwMDAwMSAxIDEgMAA
@@ -75,25 +74,17 @@
IBCocoaTouchFramework
0
0
-
- 3
- MQA
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
3
MC41AA
-
+
NSImage
- 1-over.png
+ numpad_one_over.png
-
+
NSImage
- 1-actif.png
+ numpad_one_default.png
Helvetica-Bold
@@ -101,302 +92,256 @@
2
15
-
+
Helvetica-Bold
15
16
-
+
292
- {{87, 20}, {106, 54}}
+ {{87, 10}, {106, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 2-over.png
+ numpad_two_over.png
-
+
NSImage
- 2-actif.png
+ numpad_two_default.png
-
+
-
+
292
- {{193, 20}, {107, 54}}
+ {{193, 10}, {107, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 3-actif.png
+ numpad_three_over.png
+
+
+ NSImage
+ numpad_three_default.png
-
+
-
+
292
- {{-20, 82}, {107, 54}}
+ {{-20, 72}, {107, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 4-over.png
+ numpad_four_over.png
-
+
NSImage
- 4-actif.png
+ numpad_four_default.png
-
+
-
+
292
- {{87, 82}, {106, 54}}
+ {{87, 72}, {106, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 5-over.png
+ numpad_five_over.png
-
+
NSImage
- 5-actif.png
+ numpad_five_default.png
-
+
-
+
292
- {{193, 82}, {107, 54}}
+ {{193, 72}, {107, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 6-over.png
+ numpad_six_over.png
-
+
NSImage
- 6-actif.png
+ numpad_six_default.png
-
+
-
+
292
- {{-20, 144}, {107, 54}}
+ {{-20, 134}, {107, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 7-over.png
+ numpad_seven_over.png
-
+
NSImage
- 7-actif.png
+ numpad_seven_default.png
-
+
-
+
292
- {{87, 144}, {106, 54}}
+ {{87, 134}, {106, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 8-over.png
+ numpad_eight_over.png
-
+
NSImage
- 8-actif.png
+ numpad_eight_default.png
-
+
-
+
292
- {{193, 144}, {107, 54}}
+ {{193, 134}, {107, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 9-over.png
+ numpad_nine_over.png
-
+
NSImage
- 9-actif.png
+ numpad_nine_default.png
-
+
-
+
292
- {{-20, 206}, {107, 54}}
+ {{-20, 196}, {107, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- etoile-over.png
+ numpad_star_over.png
-
+
NSImage
- etoile-actif.png
+ numpad_star_default.png
-
+
-
+
292
- {{87, 206}, {106, 54}}
+ {{87, 196}, {106, 54}}
-
+
NO
NO
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- 0-over.png
+ numpad_zero_over.png
-
+
NSImage
- 0-actif.png
+ numpad_zero_default.png
-
+
-
+
292
- {{193, 206}, {107, 54}}
+ {{193, 196}, {107, 54}}
@@ -405,28 +350,23 @@
IBCocoaTouchFramework
0
0
-
-
- 1
- MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA
-
-
+
NSImage
- diese-over.png
+ numpad_sharp_over.png
-
+
NSImage
- diese-actif.png
+ numpad_sharp_default.png
-
+
{{20, 57}, {281, 260}}
-
+
_NS:9
3
@@ -459,32 +399,32 @@
NO
NO
-
+
NSImage
- video-ON-over.png
+ video_off_over.png
-
+
NSImage
- video-OFF-disabled.png
+ video_off_disabled.png
-
+
NSImage
- video-ON-actif.png
+ video_on_default.png
-
+
NSImage
- video-OFF-actif.png
+ video_off_default.png
2
15
-
+
-2147483356
- {{20, 18}, {37, 37}}
+ {{20, 20}, {37, 37}}
@@ -510,20 +450,24 @@
0
NO
-
+
NSImage
- micro-ON-over.png
+ micro_off_over.png
-
+
NSImage
- micro-ON-actif.png
+ micro_off_disabled.png
-
+
NSImage
- micro-OFF-actif.png
+ micro_on_default.png
+
+
+ NSImage
+ micro_off_default.png
-
+
@@ -542,20 +486,24 @@
0
NO
-
+
NSImage
- speacker-ON-over.png
+ speaker_off_over.png
-
+
NSImage
- speacker-ON-actif.png
+ speaker_off_disabled.png
-
+
NSImage
- speacker-OFF-actif.png
+ speaker_on_default.png
+
+
+ NSImage
+ speaker_off_default.png
-
+
@@ -574,20 +522,16 @@
0
NO
-
+
NSImage
options_over.png
-
- NSImage
- add-call-over.png
-
-
+
NSImage
options_default.png
-
+
@@ -606,20 +550,20 @@
0
NO
-
+
NSImage
- pause-over.png
+ pause_off_over.png
-
+
NSImage
- play-actif.png
+ pause_on_default.png
-
+
NSImage
- pause-actif.png
+ pause_off_default.png
-
+
@@ -639,16 +583,16 @@
NO
NO
-
+
NSImage
- start-conference-over.png
+ conference_over.png
-
+
NSImage
- start-conference-actif.png
+ conference_default.png
-
+
@@ -667,16 +611,16 @@
0
NO
-
+
NSImage
- raccrocher-over.png
+ hangup_over.png
-
+
NSImage
- raccrocher-actif.png
+ hangup_default.png
-
+
@@ -695,17 +639,16 @@
0
NO
-
+
NSImage
- clavier-secondaire-over.png
+ dialer_alt_over.png
-
+
NSImage
- clavier-secondaire-actif.png
+ dialer_alt_default.png
-
-
+
{{0, 325}, {320, 135}}
@@ -806,99 +749,99 @@
- zeroButton
+ eightButton
-
+
- 47
-
-
-
- twoButton
-
-
-
- 48
-
-
-
- threeButton
-
-
-
- 49
-
-
-
- starButton
-
-
-
- 50
-
-
-
- sixButton
-
-
-
- 51
-
-
-
- sevenButton
-
-
-
- 52
-
-
-
- oneButton
-
-
-
- 53
-
-
-
- nineButton
-
-
-
- 54
-
-
-
- hashButton
-
-
-
- 55
-
-
-
- fourButton
-
-
-
- 56
+ 75
fiveButton
-
+
- 57
+ 76
- eightButton
+ fourButton
-
+
- 58
+ 77
+
+
+
+ nineButton
+
+
+
+ 78
+
+
+
+ oneButton
+
+
+
+ 79
+
+
+
+ sevenButton
+
+
+
+ 80
+
+
+
+ sharpButton
+
+
+
+ 81
+
+
+
+ sixButton
+
+
+
+ 82
+
+
+
+ starButton
+
+
+
+ 83
+
+
+
+ threeButton
+
+
+
+ 84
+
+
+
+ twoButton
+
+
+
+ 85
+
+
+
+ zeroButton
+
+
+
+ 86
@@ -1042,100 +985,100 @@
31
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
pad
-
- 43
-
-
- 1
-
-
- 42
-
-
- 2
-
-
- 41
-
-
- 3
-
-
- 40
-
-
- 5
-
-
- 39
-
-
- 4
-
-
- 38
-
-
- 7
-
-
- 37
-
-
- 8
-
-
- 36
-
-
- 9
-
-
- 35
-
-
- #
-
-
- 34
-
-
- 0
-
-
- 33
-
-
- *
-
-
- 32
-
-
- 6
-
59
waitView
+
+ 73
+
+
+ 1
+
+
+ 72
+
+
+ 2
+
+
+ 71
+
+
+ 3
+
+
+ 69
+
+
+ 4
+
+
+ 70
+
+
+ 5
+
+
+ 63
+
+
+ 6
+
+
+ 68
+
+
+ 7
+
+
+ 67
+
+
+ 8
+
+
+ 66
+
+
+ 9
+
+
+ 62
+
+
+ *
+
+
+ 64
+
+
+ 0
+
+
+ 65
+
+
+ #
+
@@ -1144,73 +1087,74 @@
UIResponder
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIMicroButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIVideoButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
UIPassView
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- UIDigitButton
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
UIHangUpButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
+ UIDigitButton
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
+
UIPauseButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UISpeakerButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
- 60
+ 86
@@ -1242,7 +1186,6 @@
UIButton
UIButton
UIHangUpButton
- UIButton
UIMicroButton
UIButton
UIButton
@@ -1250,6 +1193,7 @@
UIView
UIPauseButton
UIButton
+ UIButton
UIButton
UISpeakerButton
UIButton
@@ -1279,10 +1223,6 @@
hangupButton
UIHangUpButton
-
- hashButton
- UIButton
-
microButton
UIMicroButton
@@ -1311,6 +1251,10 @@
sevenButton
UIButton
+
+ sharpButton
+ UIButton
+
sixButton
UIButton
@@ -1439,51 +1383,53 @@
YES
3
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {220, 113}
- {220, 113}
- {210, 113}
- {210, 113}
- {16, 16}
- {209, 136}
- {209, 136}
- {210, 113}
- {210, 113}
- {210, 113}
- {210, 113}
- {160, 134}
- {160, 134}
- {160, 134}
+ {209, 136}
+ {209, 136}
+ {209, 136}
+ {209, 136}
+ {222, 136}
+ {222, 136}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {220, 113}
+ {220, 113}
+ {220, 113}
+ {220, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {210, 113}
+ {220, 113}
+ {220, 113}
+ {220, 113}
+ {220, 113}
{160, 134}
{160, 134}
- {209, 136}
- {209, 136}
- {209, 136}
- {222, 136}
- {222, 136}
- {160, 134}
- {160, 134}
- {160, 134}
- {209, 136}
- {209, 136}
- {160, 134}
- {160, 134}
- {160, 134}
- {160, 134}
+ {209, 136}
+ {209, 136}
+ {209, 136}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {160, 134}
+ {160, 134}
1181
diff --git a/Classes/LinphoneUI/UICallCell.h b/Classes/LinphoneUI/UICallCell.h
index ae278cff5..dbc77ae4c 100644
--- a/Classes/LinphoneUI/UICallCell.h
+++ b/Classes/LinphoneUI/UICallCell.h
@@ -37,8 +37,7 @@
BOOL firstCell;
BOOL conferenceCall;
- UIView *firstBackground;
- UIView *otherBackground;
+ UIImageView* headerBackgroundImage;
UILabel *addressLabel;
UILabel *stateLabel;
@@ -55,8 +54,7 @@
@property (weak) UICallCellData *data;
-@property (nonatomic, retain) IBOutlet UIView* firstBackground;
-@property (nonatomic, retain) IBOutlet UIView* otherBackground;
+@property (nonatomic, retain) IBOutlet UIImageView* headerBackgroundImage;
@property (nonatomic, retain) IBOutlet UILabel* addressLabel;
@property (nonatomic, retain) IBOutlet UILabel* stateLabel;
diff --git a/Classes/LinphoneUI/UICallCell.m b/Classes/LinphoneUI/UICallCell.m
index 200cf0066..628bab0eb 100644
--- a/Classes/LinphoneUI/UICallCell.m
+++ b/Classes/LinphoneUI/UICallCell.m
@@ -37,8 +37,7 @@
@synthesize data;
-@synthesize firstBackground;
-@synthesize otherBackground;
+@synthesize headerBackgroundImage;
@synthesize addressLabel;
@synthesize stateLabel;
@@ -66,15 +65,14 @@
[self addSubview:[[arrayOfViews objectAtIndex:0] retain]];
}
// Set selected+over background: IB lack !
- [pauseButton setImage:[UIImage imageNamed:@"pause-champ-numero-over.png"]
+ [pauseButton setImage:[UIImage imageNamed:@"call_state_pause_over.png"]
forState:(UIControlStateHighlighted | UIControlStateSelected)];
}
return self;
}
- (void)dealloc {
- [firstBackground release];
- [otherBackground release];
+ [headerBackgroundImage release];
[addressLabel release];
[stateLabel release];
[stateImage release];
@@ -135,11 +133,11 @@
if(!conferenceCall) {
if(state == LinphoneCallOutgoingRinging) {
- [stateImage setImage:[UIImage imageNamed:@"ring-champ-numero-actif"]];
+ [stateImage setImage:[UIImage imageNamed:@"call_state_ringing_default.png"]];
[stateImage setHidden:false];
[pauseButton setHidden:true];
} else if(state == LinphoneCallOutgoingInit || state == LinphoneCallOutgoingProgress){
- [stateImage setImage:[UIImage imageNamed:@"outgoing-champ-numero-actif"]];
+ [stateImage setImage:[UIImage imageNamed:@"call_state_outgoing_default.png"]];
[stateImage setHidden:false];
[pauseButton setHidden:true];
} else {
@@ -148,10 +146,16 @@
[pauseButton update];
}
[removeButton setHidden:true];
+ if(firstCell) {
+ [headerBackgroundImage setImage:[UIImage imageNamed:@"cell_call_first.png"]];
+ } else {
+ [headerBackgroundImage setImage:[UIImage imageNamed:@"cell_call.png"]];
+ }
} else {
[stateImage setHidden:true];
[pauseButton setHidden:true];
[removeButton setHidden:false];
+ [headerBackgroundImage setImage:[UIImage imageNamed:@"cell_conference.png"]];
}
NSMutableString* msDuration = [[NSMutableString alloc] init];
@@ -173,9 +177,6 @@
}
}
[pauseButton setType:UIPauseButtonType_Call call:call];
-
- [firstBackground setHidden:!firstCell];
- [otherBackground setHidden:firstCell];
}
- (void)selfUpdate {
diff --git a/Classes/LinphoneUI/UICallCell.xib b/Classes/LinphoneUI/UICallCell.xib
index 1c1d7f2f6..b58251e3f 100644
--- a/Classes/LinphoneUI/UICallCell.xib
+++ b/Classes/LinphoneUI/UICallCell.xib
@@ -92,7 +92,7 @@
IBCocoaTouchFramework
NSImage
- ombre-cotes-avatar.png
+ avatar_shadow.png
@@ -108,7 +108,7 @@
IBCocoaTouchFramework
NSImage
- avatar-inconnu.png
+ avatar_unknown.png
@@ -126,47 +126,20 @@
292
-
+
292
{320, 63}
-
+
_NS:9
-
+ NO
IBCocoaTouchFramework
- 0
- 0
- NO
-
-
+
NSImage
- champ-courbe-autres-numeros.png
+ cell_call_first.png
-
-
-
-
-
- -2147483356
- {320, 63}
-
-
-
- _NS:9
-
- IBCocoaTouchFramework
- 0
- 0
- NO
-
-
- NSImage
- champ-courbe-autres-numeros-first.png
-
-
-
@@ -174,7 +147,7 @@
{{10, 0}, {206, 51}}
-
+
_NS:9
NO
NO
@@ -4598,6 +4571,36 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
IBCocoaTouchFramework
+
+ -2147483356
+ {{216, 6}, {41, 41}}
+
+
+
+ _NS:9
+ NO
+ IBCocoaTouchFramework
+ 0
+ 0
+ NO
+ NO
+ 8
+ 8
+ 8
+ 8
+
+
+ NSImage
+ call_state_delete_over.png
+
+
+ NSImage
+ call_state_delete_default.png
+
+
+
+
+
-2147483356
{{216, 6}, {41, 41}}
@@ -4618,45 +4621,15 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
NSImage
- supprimer-participant-conf-over.png
-
-
- NSImage
- supprimer-participant-conf-actif.png
-
-
-
-
-
-
- -2147483356
- {{216, 6}, {41, 41}}
-
-
-
- _NS:9
- NO
- IBCocoaTouchFramework
- 0
- 0
- NO
- NO
- 8
- 8
- 8
- 8
-
-
- NSImage
- play-champ-numero-over.png
+ call_state_play_over.png
NSImage
- pause-champ-numero-actif.png
+ call_state_pause_default.png
NSImage
- play-champ-numero-actif.png
+ call_state_play_default.png
@@ -4696,6 +4669,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
{{0, 5}, {200, 40}}
+
_NS:9
NO
IBCocoaTouchFramework
@@ -4711,7 +4685,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
{320, 63}
-
+
_NS:9
NO
@@ -4750,22 +4724,6 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
34
-
-
- otherBackground
-
-
-
- 27
-
-
-
- firstBackground
-
-
-
- 26
-
addressLabel
@@ -4830,6 +4788,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
50
+
+
+ headerBackgroundImage
+
+
+
+ 54
+
doHeaderClick:
@@ -4901,27 +4867,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
-
-
+
headerView
-
- 14
-
-
- otherBackground
-
-
- 20
-
-
- firstBackground
-
17
@@ -4975,6 +4928,12 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
toggleButton
+
+ 52
+
+
+ headerBackgroundImage
+
@@ -4982,14 +4941,10 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
UIResponder
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
@@ -5000,16 +4955,17 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
UIPauseButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
UIPauseButton
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
+ com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- 51
+ 54
@@ -5034,9 +4990,8 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
UILabel
UIImageView
UIView
- UIView
+ UIImageView
UIView
- UIView
UIPauseButton
UIButton
UIImageView
@@ -5055,18 +5010,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
avatarView
UIView
-
- firstBackground
- UIView
+
+ headerBackgroundImage
+ UIImageView
headerView
UIView
-
- otherBackground
- UIView
-
pauseButton
UIPauseButton
@@ -5116,15 +5067,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE
YES
3
- {320, 339}
- {640, 125}
- {640, 125}
- {640, 523}
- {43, 50}
- {43, 46}
- {43, 46}
- {43, 43}
- {43, 43}
+ {640, 523}
+ {320, 339}
+ {43, 43}
+ {43, 43}
+ {43, 50}
+ {43, 46}
+ {43, 46}
+ {640, 125}
1181
diff --git a/Classes/LinphoneUI/UIHistoryCell.m b/Classes/LinphoneUI/UIHistoryCell.m
index f9692c9e0..248431b35 100644
--- a/Classes/LinphoneUI/UIHistoryCell.m
+++ b/Classes/LinphoneUI/UIHistoryCell.m
@@ -82,14 +82,13 @@
UIImage *image;
if (aCallLog->dir == LinphoneCallIncoming) {
if (aCallLog->status == LinphoneCallSuccess) {
- image = [UIImage imageNamed:aCallLog->video_enabled?@"appel-entrant.png":@"appel-entrant.png"];
+ image = [UIImage imageNamed:@"call_status_incoming.png"];
} else {
- //missed call
- image = [UIImage imageNamed:@"appel-manque.png"];
+ image = [UIImage imageNamed:@"call_status_missed.png"];
}
partyToDisplay = aCallLog->from;
} else {
- image = [UIImage imageNamed:aCallLog->video_enabled?@"appel-sortant.png":@"appel-sortant.png"];
+ image = [UIImage imageNamed:@"call_status_outgoing.png"];
partyToDisplay = aCallLog->to;
}
diff --git a/Classes/LinphoneUI/UIHistoryCell.xib b/Classes/LinphoneUI/UIHistoryCell.xib
index e826247f7..d6b863fc9 100644
--- a/Classes/LinphoneUI/UIHistoryCell.xib
+++ b/Classes/LinphoneUI/UIHistoryCell.xib
@@ -107,11 +107,11 @@
NSImage
- bouton-detail-contact-over.png
+ list_details_over.png
NSImage
- bouton-detail-contact-actif.png
+ list_details_default.png
2
@@ -129,6 +129,7 @@
{{276, 0}, {44, 44}}
+
_NS:9
NO
IBCocoaTouchFramework
@@ -142,11 +143,11 @@
NSImage
- croix-supprimer-ligne-liste-history-over.png
+ list_delete_over.png
NSImage
- croix-supprimer-ligne-liste-history-actif.png
+ list_delete_default.png
@@ -284,7 +285,7 @@
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
@@ -356,10 +357,10 @@
YES
3
- {45, 45}
- {45, 45}
- {45, 45}
- {45, 45}
+ {45, 45}
+ {45, 45}
+ {45, 45}
+ {45, 45}
1181
diff --git a/Classes/LinphoneUI/UIMainBar.xib b/Classes/LinphoneUI/UIMainBar.xib
index c42a61920..fa4fa09b3 100644
--- a/Classes/LinphoneUI/UIMainBar.xib
+++ b/Classes/LinphoneUI/UIMainBar.xib
@@ -70,29 +70,21 @@
0
0
NO
-
- 3
- MQA
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
3
MC41AA
-
+
NSImage
- history-over.png
+ history_over.png
-
+
NSImage
- history-selectionne.png
+ history_selected.png
-
+
NSImage
- history-actif.png
+ history_default.png
2
@@ -120,23 +112,18 @@
0
0
NO
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
-
+
NSImage
- contacts-over.png
+ contacts_over.png
-
+
NSImage
- contacts-selectionne.png
+ contacts_selected.png
-
+
NSImage
- contacts-actif.png
+ contacts_default.png
@@ -157,23 +144,18 @@
0
0
NO
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
-
+
NSImage
- settings-over.png
+ settings_over.png
-
+
NSImage
- settings-selectionne.png
+ settings_selected.png
-
+
NSImage
- settings-actif.png
+ settings_default.png
@@ -195,13 +177,17 @@
0
NO
-
+
NSImage
- dialer-actif.png
+ dialer_over.png
-
+
NSImage
- dialer-over.png
+ dialer_selected.png
+
+
+ NSImage
+ dialer_default.png
@@ -212,6 +198,7 @@
{{256, 0}, {64, 77}}
+
_NS:9
NO
@@ -221,23 +208,18 @@
0
0
NO
-
-
- 1
- MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
-
-
+
NSImage
- tchat-over.png
+ chat_over.png
-
+
NSImage
- tchat-selectionne.png
+ chat_selected.png
-
+
NSImage
- tchat-actif.png
+ chat_default.png
@@ -437,7 +419,7 @@
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
+
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
@@ -528,20 +510,21 @@
YES
3
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
- {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
+ {128, 154}
1181
diff --git a/Classes/LinphoneUI/UIStateBar.m b/Classes/LinphoneUI/UIStateBar.m
index dd5724bf6..8df168b19 100644
--- a/Classes/LinphoneUI/UIStateBar.m
+++ b/Classes/LinphoneUI/UIStateBar.m
@@ -121,19 +121,19 @@ NSTimer *callQualityTimer;
break;
case LinphoneRegistrationFailed:
registrationStateImage.hidden = NO;
- image = [UIImage imageNamed:@"status_error.png"];
+ image = [UIImage imageNamed:@"led_error.png"];
break;
case LinphoneRegistrationNone:
registrationStateImage.hidden = NO;
- image =[UIImage imageNamed:@"status_disconnected.png"];
+ image =[UIImage imageNamed:@"led_disconnected.png"];
break;
case LinphoneRegistrationProgress:
registrationStateImage.hidden = NO;
- image = [UIImage imageNamed:@"status_inprogress.png"];
+ image = [UIImage imageNamed:@"led_inprogress.png"];
break;
case LinphoneRegistrationOk:
registrationStateImage.hidden = NO;
- image = [UIImage imageNamed:@"status_connected.png"];
+ image = [UIImage imageNamed:@"led_connected.png"];
break;
}
[registrationStateLabel setText:message];
@@ -150,13 +150,13 @@ NSTimer *callQualityTimer;
if(call != NULL) {
float quality = linphone_call_get_average_quality(call);
if(quality < 1) {
- image = [UIImage imageNamed:@"quality-call-0.png"];
+ image = [UIImage imageNamed:@"call_quality_indicator_0.png"];
} else if (quality < 2) {
- image = [UIImage imageNamed:@"quality-call-1.png"];
+ image = [UIImage imageNamed:@"call_quality_indicator_1.png"];
} else if (quality < 3) {
- image = [UIImage imageNamed:@"quality-call-2.png"];
+ image = [UIImage imageNamed:@"call_quality_indicator_2.png"];
} else {
- image = [UIImage imageNamed:@"quality-call-3.png"];
+ image = [UIImage imageNamed:@"call_quality_indicator_3.png"];
}
}
}
diff --git a/Classes/LinphoneUI/UIStateBar.xib b/Classes/LinphoneUI/UIStateBar.xib
index d692bb7d8..7ef29c7d7 100644
--- a/Classes/LinphoneUI/UIStateBar.xib
+++ b/Classes/LinphoneUI/UIStateBar.xib
@@ -48,7 +48,7 @@
IBCocoaTouchFramework
NSImage
- barre-noire-top.png
+ statebar_background.png
@@ -208,7 +208,7 @@
13
- callQualityImage
+ callQualityIndicatorImage
@@ -269,7 +269,7 @@
YES
3
- {640, 46}
+ {640, 46}
{18, 17}
1181
diff --git a/Classes/LinphoneUI/FastAddressBook.h b/Classes/Utils/FastAddressBook.h
similarity index 100%
rename from Classes/LinphoneUI/FastAddressBook.h
rename to Classes/Utils/FastAddressBook.h
diff --git a/Classes/LinphoneUI/FastAddressBook.m b/Classes/Utils/FastAddressBook.m
similarity index 100%
rename from Classes/LinphoneUI/FastAddressBook.m
rename to Classes/Utils/FastAddressBook.m
diff --git a/Resources/0-over.png b/Resources/0-over.png
deleted file mode 100644
index 9431f0fbd..000000000
Binary files a/Resources/0-over.png and /dev/null differ
diff --git a/Resources/1-over.png b/Resources/1-over.png
deleted file mode 100644
index 486eab63c..000000000
Binary files a/Resources/1-over.png and /dev/null differ
diff --git a/Resources/2-over.png b/Resources/2-over.png
deleted file mode 100644
index c7c462bdc..000000000
Binary files a/Resources/2-over.png and /dev/null differ
diff --git a/Resources/3-over.png b/Resources/3-over.png
deleted file mode 100644
index ab5aa87d5..000000000
Binary files a/Resources/3-over.png and /dev/null differ
diff --git a/Resources/4-over.png b/Resources/4-over.png
deleted file mode 100644
index 1ac846c18..000000000
Binary files a/Resources/4-over.png and /dev/null differ
diff --git a/Resources/5-over.png b/Resources/5-over.png
deleted file mode 100644
index ea9ffcc15..000000000
Binary files a/Resources/5-over.png and /dev/null differ
diff --git a/Resources/6-over.png b/Resources/6-over.png
deleted file mode 100644
index 318416947..000000000
Binary files a/Resources/6-over.png and /dev/null differ
diff --git a/Resources/7-over.png b/Resources/7-over.png
deleted file mode 100644
index 003f5b43f..000000000
Binary files a/Resources/7-over.png and /dev/null differ
diff --git a/Resources/8-over.png b/Resources/8-over.png
deleted file mode 100644
index 7dddf83e9..000000000
Binary files a/Resources/8-over.png and /dev/null differ
diff --git a/Resources/9-over.png b/Resources/9-over.png
deleted file mode 100644
index 521e759b5..000000000
Binary files a/Resources/9-over.png and /dev/null differ
diff --git a/Resources/decrocher-actif.png b/Resources/accept_default.png
similarity index 100%
rename from Resources/decrocher-actif.png
rename to Resources/accept_default.png
diff --git a/Resources/decrocher-over.png b/Resources/accept_over.png
similarity index 100%
rename from Resources/decrocher-over.png
rename to Resources/accept_over.png
diff --git a/Resources/add_call_more_default.png b/Resources/add_call_default.png
similarity index 100%
rename from Resources/add_call_more_default.png
rename to Resources/add_call_default.png
diff --git a/Resources/add_call_more_disable.png b/Resources/add_call_disabled.png
similarity index 100%
rename from Resources/add_call_more_disable.png
rename to Resources/add_call_disabled.png
diff --git a/Resources/add_call_more_over.png b/Resources/add_call_over.png
similarity index 100%
rename from Resources/add_call_more_over.png
rename to Resources/add_call_over.png
diff --git a/Resources/add-contact-actif.png b/Resources/add_contact_default.png
similarity index 100%
rename from Resources/add-contact-actif.png
rename to Resources/add_contact_default.png
diff --git a/Resources/add-contact-inactif.png b/Resources/add_contact_disabled.png
similarity index 100%
rename from Resources/add-contact-inactif.png
rename to Resources/add_contact_disabled.png
diff --git a/Resources/add-contact-over.png b/Resources/add_contact_over.png
similarity index 100%
rename from Resources/add-contact-over.png
rename to Resources/add_contact_over.png
diff --git a/Resources/ombre-cotes-avatar.png b/Resources/avatar_shadow.png
similarity index 100%
rename from Resources/ombre-cotes-avatar.png
rename to Resources/avatar_shadow.png
diff --git a/Resources/avatar-inconnu.png b/Resources/avatar_unknown.png
similarity index 100%
rename from Resources/avatar-inconnu.png
rename to Resources/avatar_unknown.png
diff --git a/Resources/avatar-small.png b/Resources/avatar_unknown_small.png
similarity index 100%
rename from Resources/avatar-small.png
rename to Resources/avatar_unknown_small.png
diff --git a/Resources/back_default.png b/Resources/back_default.png
new file mode 100644
index 000000000..d7088080a
Binary files /dev/null and b/Resources/back_default.png differ
diff --git a/Resources/back_disabled.png b/Resources/back_disabled.png
new file mode 100644
index 000000000..d6e641fa5
Binary files /dev/null and b/Resources/back_disabled.png differ
diff --git a/Resources/back_over.png b/Resources/back_over.png
new file mode 100644
index 000000000..d06321994
Binary files /dev/null and b/Resources/back_over.png differ
diff --git a/Resources/backspace-actif.png b/Resources/backspace_default.png
similarity index 100%
rename from Resources/backspace-actif.png
rename to Resources/backspace_default.png
diff --git a/Resources/backspace-disabled.png b/Resources/backspace_disabled.png
similarity index 100%
rename from Resources/backspace-disabled.png
rename to Resources/backspace_disabled.png
diff --git a/Resources/backspace-over.png b/Resources/backspace_over.png
similarity index 100%
rename from Resources/backspace-over.png
rename to Resources/backspace_over.png
diff --git a/Resources/appeler-actif.png b/Resources/call_default.png
similarity index 100%
rename from Resources/appeler-actif.png
rename to Resources/call_default.png
diff --git a/Resources/appeler-disabled.png b/Resources/call_disabled.png
similarity index 100%
rename from Resources/appeler-disabled.png
rename to Resources/call_disabled.png
diff --git a/Resources/appeler-over.png b/Resources/call_over.png
similarity index 100%
rename from Resources/appeler-over.png
rename to Resources/call_over.png
diff --git a/Resources/quality-call-0.png b/Resources/call_quality_indicator_0.png
similarity index 100%
rename from Resources/quality-call-0.png
rename to Resources/call_quality_indicator_0.png
diff --git a/Resources/quality-call-1.png b/Resources/call_quality_indicator_1.png
similarity index 100%
rename from Resources/quality-call-1.png
rename to Resources/call_quality_indicator_1.png
diff --git a/Resources/quality-call-2.png b/Resources/call_quality_indicator_2.png
similarity index 100%
rename from Resources/quality-call-2.png
rename to Resources/call_quality_indicator_2.png
diff --git a/Resources/quality-call-3.png b/Resources/call_quality_indicator_3.png
similarity index 100%
rename from Resources/quality-call-3.png
rename to Resources/call_quality_indicator_3.png
diff --git a/Resources/supprimer-participant-conf-actif.png b/Resources/call_state_delete_default.png
similarity index 100%
rename from Resources/supprimer-participant-conf-actif.png
rename to Resources/call_state_delete_default.png
diff --git a/Resources/supprimer-participant-conf-over.png b/Resources/call_state_delete_over.png
similarity index 100%
rename from Resources/supprimer-participant-conf-over.png
rename to Resources/call_state_delete_over.png
diff --git a/Resources/outgoing-champ-numero-actif.png b/Resources/call_state_outgoing_default.png
similarity index 100%
rename from Resources/outgoing-champ-numero-actif.png
rename to Resources/call_state_outgoing_default.png
diff --git a/Resources/pause-champ-numero-actif.png b/Resources/call_state_pause_default.png
similarity index 100%
rename from Resources/pause-champ-numero-actif.png
rename to Resources/call_state_pause_default.png
diff --git a/Resources/pause-champ-numero-over.png b/Resources/call_state_pause_over.png
similarity index 100%
rename from Resources/pause-champ-numero-over.png
rename to Resources/call_state_pause_over.png
diff --git a/Resources/play-champ-numero-actif.png b/Resources/call_state_play_default.png
similarity index 100%
rename from Resources/play-champ-numero-actif.png
rename to Resources/call_state_play_default.png
diff --git a/Resources/play-champ-numero-over.png b/Resources/call_state_play_over.png
similarity index 100%
rename from Resources/play-champ-numero-over.png
rename to Resources/call_state_play_over.png
diff --git a/Resources/ring-champ-numero-actif.png b/Resources/call_state_ringing_default.png
similarity index 100%
rename from Resources/ring-champ-numero-actif.png
rename to Resources/call_state_ringing_default.png
diff --git a/Resources/appel-entrant.png b/Resources/call_status_incoming.png
similarity index 100%
rename from Resources/appel-entrant.png
rename to Resources/call_status_incoming.png
diff --git a/Resources/appel-manque.png b/Resources/call_status_missed.png
similarity index 100%
rename from Resources/appel-manque.png
rename to Resources/call_status_missed.png
diff --git a/Resources/appel-sortant.png b/Resources/call_status_outgoing.png
similarity index 100%
rename from Resources/appel-sortant.png
rename to Resources/call_status_outgoing.png
diff --git a/Resources/cancel-actif.png b/Resources/cancel_default.png
similarity index 100%
rename from Resources/cancel-actif.png
rename to Resources/cancel_default.png
diff --git a/Resources/cancel-over.png b/Resources/cancel_over.png
similarity index 100%
rename from Resources/cancel-over.png
rename to Resources/cancel_over.png
diff --git a/Resources/cancel_white_bg_default.png b/Resources/cancel_white_bg_default.png
deleted file mode 100644
index b68fb8744..000000000
Binary files a/Resources/cancel_white_bg_default.png and /dev/null differ
diff --git a/Resources/cancel_white_bg_disabled.png b/Resources/cancel_white_bg_disabled.png
deleted file mode 100644
index f07f35e2d..000000000
Binary files a/Resources/cancel_white_bg_disabled.png and /dev/null differ
diff --git a/Resources/cancel_white_bg_over.png b/Resources/cancel_white_bg_over.png
deleted file mode 100644
index 7b045d222..000000000
Binary files a/Resources/cancel_white_bg_over.png and /dev/null differ
diff --git a/Resources/champ-courbe-autres-numeros.png b/Resources/cell_call.png
similarity index 100%
rename from Resources/champ-courbe-autres-numeros.png
rename to Resources/cell_call.png
diff --git a/Resources/cell_call_first.png b/Resources/cell_call_first.png
new file mode 100644
index 000000000..17b55ffef
Binary files /dev/null and b/Resources/cell_call_first.png differ
diff --git a/Resources/champ-courbe-participant-conf.png b/Resources/cell_conference.png
similarity index 100%
rename from Resources/champ-courbe-participant-conf.png
rename to Resources/cell_conference.png
diff --git a/Resources/champ-courbe-autres-numeros-first.png b/Resources/champ-courbe-autres-numeros-first.png
deleted file mode 100644
index c4b177df9..000000000
Binary files a/Resources/champ-courbe-autres-numeros-first.png and /dev/null differ
diff --git a/Resources/champ-titre-incoming.png b/Resources/champ-titre-incoming.png
deleted file mode 100644
index 205064389..000000000
Binary files a/Resources/champ-titre-incoming.png and /dev/null differ
diff --git a/Resources/tchat-new-discussion-actif.png b/Resources/chat_add_default.png
similarity index 100%
rename from Resources/tchat-new-discussion-actif.png
rename to Resources/chat_add_default.png
diff --git a/Resources/tchat-new-discussion-over.png b/Resources/chat_add_over.png
similarity index 100%
rename from Resources/tchat-new-discussion-over.png
rename to Resources/chat_add_over.png
diff --git a/Resources/tchat-actif.png b/Resources/chat_default.png
similarity index 100%
rename from Resources/tchat-actif.png
rename to Resources/chat_default.png
diff --git a/Resources/tchat-edit-actif.png b/Resources/chat_edit_default.png
similarity index 100%
rename from Resources/tchat-edit-actif.png
rename to Resources/chat_edit_default.png
diff --git a/Resources/tchat-edit-over.png b/Resources/chat_edit_over.png
similarity index 100%
rename from Resources/tchat-edit-over.png
rename to Resources/chat_edit_over.png
diff --git a/Resources/tchat-over.png b/Resources/chat_over.png
similarity index 100%
rename from Resources/tchat-over.png
rename to Resources/chat_over.png
diff --git a/Resources/tchat-selectionne.png b/Resources/chat_selected.png
similarity index 100%
rename from Resources/tchat-selectionne.png
rename to Resources/chat_selected.png
diff --git a/Resources/start-conference-actif.png b/Resources/conference_default.png
similarity index 100%
rename from Resources/start-conference-actif.png
rename to Resources/conference_default.png
diff --git a/Resources/start-conference-over.png b/Resources/conference_over.png
similarity index 100%
rename from Resources/start-conference-over.png
rename to Resources/conference_over.png
diff --git a/Resources/contact-actif-add-call.png b/Resources/contact-actif-add-call.png
deleted file mode 100644
index 566556be6..000000000
Binary files a/Resources/contact-actif-add-call.png and /dev/null differ
diff --git a/Resources/contact-over-add-call.png b/Resources/contact-over-add-call.png
deleted file mode 100644
index ca1f9685b..000000000
Binary files a/Resources/contact-over-add-call.png and /dev/null differ
diff --git a/Resources/add-contact-depuis-detail-actif.png b/Resources/contacts_add_default.png
similarity index 100%
rename from Resources/add-contact-depuis-detail-actif.png
rename to Resources/contacts_add_default.png
diff --git a/Resources/add-contact-depuis-detail-over.png b/Resources/contacts_add_over.png
similarity index 100%
rename from Resources/add-contact-depuis-detail-over.png
rename to Resources/contacts_add_over.png
diff --git a/Resources/all-contacts-actif.png b/Resources/contacts_all_default.png
similarity index 100%
rename from Resources/all-contacts-actif.png
rename to Resources/contacts_all_default.png
diff --git a/Resources/all-contacts-selectionne.png b/Resources/contacts_all_selected.png
similarity index 100%
rename from Resources/all-contacts-selectionne.png
rename to Resources/contacts_all_selected.png
diff --git a/Resources/contacts-actif.png b/Resources/contacts_default.png
similarity index 100%
rename from Resources/contacts-actif.png
rename to Resources/contacts_default.png
diff --git a/Resources/linphone-actif.png b/Resources/contacts_linphone_default.png
similarity index 100%
rename from Resources/linphone-actif.png
rename to Resources/contacts_linphone_default.png
diff --git a/Resources/linphone-selectionne.png b/Resources/contacts_linphone_selected.png
similarity index 100%
rename from Resources/linphone-selectionne.png
rename to Resources/contacts_linphone_selected.png
diff --git a/Resources/contacts-over.png b/Resources/contacts_over.png
similarity index 100%
rename from Resources/contacts-over.png
rename to Resources/contacts_over.png
diff --git a/Resources/contacts-selectionne.png b/Resources/contacts_selected.png
similarity index 100%
rename from Resources/contacts-selectionne.png
rename to Resources/contacts_selected.png
diff --git a/Resources/refuser-actif.png b/Resources/decline_default.png
similarity index 100%
rename from Resources/refuser-actif.png
rename to Resources/decline_default.png
diff --git a/Resources/refuser-over.png b/Resources/decline_over.png
similarity index 100%
rename from Resources/refuser-over.png
rename to Resources/decline_over.png
diff --git a/Resources/dialer-meteo-sortir-actif.png b/Resources/dialer-meteo-sortir-actif.png
deleted file mode 100644
index 942899997..000000000
Binary files a/Resources/dialer-meteo-sortir-actif.png and /dev/null differ
diff --git a/Resources/dialer-meteo-sortir-over.png b/Resources/dialer-meteo-sortir-over.png
deleted file mode 100644
index 639302e02..000000000
Binary files a/Resources/dialer-meteo-sortir-over.png and /dev/null differ
diff --git a/Resources/champ-saisie-numero.png b/Resources/dialer_address_background.png
similarity index 100%
rename from Resources/champ-saisie-numero.png
rename to Resources/dialer_address_background.png
diff --git a/Resources/clavier-secondaire-actif.png b/Resources/dialer_alt_default.png
similarity index 100%
rename from Resources/clavier-secondaire-actif.png
rename to Resources/dialer_alt_default.png
diff --git a/Resources/clavier-secondaire-over.png b/Resources/dialer_alt_over.png
similarity index 100%
rename from Resources/clavier-secondaire-over.png
rename to Resources/dialer_alt_over.png
diff --git a/Resources/dialer-over.png b/Resources/dialer_default.png
similarity index 100%
rename from Resources/dialer-over.png
rename to Resources/dialer_default.png
diff --git a/Resources/dialer_over.png b/Resources/dialer_over.png
new file mode 100644
index 000000000..3727c5fba
Binary files /dev/null and b/Resources/dialer_over.png differ
diff --git a/Resources/dialer-actif.png b/Resources/dialer_selected.png
similarity index 100%
rename from Resources/dialer-actif.png
rename to Resources/dialer_selected.png
diff --git a/Resources/diese-over.png b/Resources/diese-over.png
deleted file mode 100644
index 8e37b9c89..000000000
Binary files a/Resources/diese-over.png and /dev/null differ
diff --git a/Resources/etoile-actif.png b/Resources/etoile-actif.png
deleted file mode 100644
index 41c13aa40..000000000
Binary files a/Resources/etoile-actif.png and /dev/null differ
diff --git a/Resources/etoile-over.png b/Resources/etoile-over.png
deleted file mode 100644
index 88daff5a3..000000000
Binary files a/Resources/etoile-over.png and /dev/null differ
diff --git a/Resources/finir-conference-actif.png b/Resources/finir-conference-actif.png
deleted file mode 100644
index baf09bc3d..000000000
Binary files a/Resources/finir-conference-actif.png and /dev/null differ
diff --git a/Resources/finir-conference-over.png b/Resources/finir-conference-over.png
deleted file mode 100644
index 132af8c6d..000000000
Binary files a/Resources/finir-conference-over.png and /dev/null differ
diff --git a/Resources/fond-detail-numero.png b/Resources/fond-detail-numero.png
deleted file mode 100644
index 31efad8aa..000000000
Binary files a/Resources/fond-detail-numero.png and /dev/null differ
diff --git a/Resources/raccrocher-actif.png b/Resources/hangup_default.png
similarity index 100%
rename from Resources/raccrocher-actif.png
rename to Resources/hangup_default.png
diff --git a/Resources/raccrocher-over.png b/Resources/hangup_over.png
similarity index 100%
rename from Resources/raccrocher-over.png
rename to Resources/hangup_over.png
diff --git a/Resources/champ-titre-conference.png b/Resources/header_conference.png
similarity index 100%
rename from Resources/champ-titre-conference.png
rename to Resources/header_conference.png
diff --git a/Resources/header_incoming.png b/Resources/header_incoming.png
new file mode 100644
index 000000000..caacf5d18
Binary files /dev/null and b/Resources/header_incoming.png differ
diff --git a/Resources/all-call-actif.png b/Resources/history_all_default.png
similarity index 100%
rename from Resources/all-call-actif.png
rename to Resources/history_all_default.png
diff --git a/Resources/all-call-selectionne.png b/Resources/history_all_selected.png
similarity index 100%
rename from Resources/all-call-selectionne.png
rename to Resources/history_all_selected.png
diff --git a/Resources/history-actif.png b/Resources/history_default.png
similarity index 100%
rename from Resources/history-actif.png
rename to Resources/history_default.png
diff --git a/Resources/edit-history-actif.png b/Resources/history_edit_default.png
similarity index 100%
rename from Resources/edit-history-actif.png
rename to Resources/history_edit_default.png
diff --git a/Resources/edit-history-over.png b/Resources/history_edit_over.png
similarity index 100%
rename from Resources/edit-history-over.png
rename to Resources/history_edit_over.png
diff --git a/Resources/missed-actif.png b/Resources/history_missed_default.png
similarity index 100%
rename from Resources/missed-actif.png
rename to Resources/history_missed_default.png
diff --git a/Resources/missed-selectionne.png b/Resources/history_missed_selected.png
similarity index 100%
rename from Resources/missed-selectionne.png
rename to Resources/history_missed_selected.png
diff --git a/Resources/ok-edit-list-history-actif.png b/Resources/history_ok_default.png
similarity index 100%
rename from Resources/ok-edit-list-history-actif.png
rename to Resources/history_ok_default.png
diff --git a/Resources/ok-edit-list-history-over.png b/Resources/history_ok_over.png
similarity index 100%
rename from Resources/ok-edit-list-history-over.png
rename to Resources/history_ok_over.png
diff --git a/Resources/history-over.png b/Resources/history_over.png
similarity index 100%
rename from Resources/history-over.png
rename to Resources/history_over.png
diff --git a/Resources/history-selectionne.png b/Resources/history_selected.png
similarity index 100%
rename from Resources/history-selectionne.png
rename to Resources/history_selected.png
diff --git a/Resources/icone-linphone-57.png b/Resources/icone-linphone-57.png
deleted file mode 100644
index 1f7378831..000000000
Binary files a/Resources/icone-linphone-57.png and /dev/null differ
diff --git a/Resources/icone-linphone-72.png b/Resources/icone-linphone-72.png
deleted file mode 100644
index 294356847..000000000
Binary files a/Resources/icone-linphone-72.png and /dev/null differ
diff --git a/Resources/status_connected.png b/Resources/led_connected.png
similarity index 100%
rename from Resources/status_connected.png
rename to Resources/led_connected.png
diff --git a/Resources/status_disconnected.png b/Resources/led_disconnected.png
similarity index 100%
rename from Resources/status_disconnected.png
rename to Resources/led_disconnected.png
diff --git a/Resources/status_error.png b/Resources/led_error.png
similarity index 100%
rename from Resources/status_error.png
rename to Resources/led_error.png
diff --git a/Resources/status_inprogress.png b/Resources/led_inprogress.png
similarity index 100%
rename from Resources/status_inprogress.png
rename to Resources/led_inprogress.png
diff --git a/Resources/linphone_icon_57.png b/Resources/linphone_icon_57.png
new file mode 100644
index 000000000..14e274350
Binary files /dev/null and b/Resources/linphone_icon_57.png differ
diff --git a/Resources/linphone_icon_72.png b/Resources/linphone_icon_72.png
new file mode 100644
index 000000000..b01eef8c4
Binary files /dev/null and b/Resources/linphone_icon_72.png differ
diff --git a/Resources/croix-supprimer-ligne-liste-history-actif.png b/Resources/list_delete_default.png
similarity index 100%
rename from Resources/croix-supprimer-ligne-liste-history-actif.png
rename to Resources/list_delete_default.png
diff --git a/Resources/croix-supprimer-ligne-liste-history-over.png b/Resources/list_delete_over.png
similarity index 100%
rename from Resources/croix-supprimer-ligne-liste-history-over.png
rename to Resources/list_delete_over.png
diff --git a/Resources/bouton-detail-contact-actif.png b/Resources/list_details_default.png
similarity index 100%
rename from Resources/bouton-detail-contact-actif.png
rename to Resources/list_details_default.png
diff --git a/Resources/bouton-detail-contact-over.png b/Resources/list_details_over.png
similarity index 100%
rename from Resources/bouton-detail-contact-over.png
rename to Resources/list_details_over.png
diff --git a/Resources/micro-OFF-actif.png b/Resources/micro_off_default.png
similarity index 100%
rename from Resources/micro-OFF-actif.png
rename to Resources/micro_off_default.png
diff --git a/Resources/micro_off_disabled.png b/Resources/micro_off_disabled.png
new file mode 100644
index 000000000..39f55197e
Binary files /dev/null and b/Resources/micro_off_disabled.png differ
diff --git a/Resources/micro-OFF-over.png b/Resources/micro_off_over.png
similarity index 100%
rename from Resources/micro-OFF-over.png
rename to Resources/micro_off_over.png
diff --git a/Resources/micro-ON-actif.png b/Resources/micro_on_default.png
similarity index 100%
rename from Resources/micro-ON-actif.png
rename to Resources/micro_on_default.png
diff --git a/Resources/micro_on_disabled.png b/Resources/micro_on_disabled.png
new file mode 100644
index 000000000..87fee6aa1
Binary files /dev/null and b/Resources/micro_on_disabled.png differ
diff --git a/Resources/micro-ON-over.png b/Resources/micro_on_over.png
similarity index 100%
rename from Resources/micro-ON-over.png
rename to Resources/micro_on_over.png
diff --git a/Resources/fond-clavier.png b/Resources/numpad_background.png
similarity index 100%
rename from Resources/fond-clavier.png
rename to Resources/numpad_background.png
diff --git a/Resources/8-actif.png b/Resources/numpad_eight_default.png
similarity index 100%
rename from Resources/8-actif.png
rename to Resources/numpad_eight_default.png
diff --git a/Resources/numpad_eight_over.png b/Resources/numpad_eight_over.png
new file mode 100644
index 000000000..2ccb7f97c
Binary files /dev/null and b/Resources/numpad_eight_over.png differ
diff --git a/Resources/5-actif.png b/Resources/numpad_five_default.png
similarity index 100%
rename from Resources/5-actif.png
rename to Resources/numpad_five_default.png
diff --git a/Resources/numpad_five_over.png b/Resources/numpad_five_over.png
new file mode 100644
index 000000000..3b4a62e63
Binary files /dev/null and b/Resources/numpad_five_over.png differ
diff --git a/Resources/4-actif.png b/Resources/numpad_four_default.png
similarity index 100%
rename from Resources/4-actif.png
rename to Resources/numpad_four_default.png
diff --git a/Resources/numpad_four_over.png b/Resources/numpad_four_over.png
new file mode 100644
index 000000000..2bffe94d5
Binary files /dev/null and b/Resources/numpad_four_over.png differ
diff --git a/Resources/9-actif.png b/Resources/numpad_nine_default.png
similarity index 100%
rename from Resources/9-actif.png
rename to Resources/numpad_nine_default.png
diff --git a/Resources/numpad_nine_over.png b/Resources/numpad_nine_over.png
new file mode 100644
index 000000000..c457e8400
Binary files /dev/null and b/Resources/numpad_nine_over.png differ
diff --git a/Resources/1-actif.png b/Resources/numpad_one_default.png
similarity index 100%
rename from Resources/1-actif.png
rename to Resources/numpad_one_default.png
diff --git a/Resources/numpad_one_over.png b/Resources/numpad_one_over.png
new file mode 100644
index 000000000..abe10c6e7
Binary files /dev/null and b/Resources/numpad_one_over.png differ
diff --git a/Resources/7-actif.png b/Resources/numpad_seven_default.png
similarity index 100%
rename from Resources/7-actif.png
rename to Resources/numpad_seven_default.png
diff --git a/Resources/numpad_seven_over.png b/Resources/numpad_seven_over.png
new file mode 100644
index 000000000..9ec319835
Binary files /dev/null and b/Resources/numpad_seven_over.png differ
diff --git a/Resources/diese-actif.png b/Resources/numpad_sharp_default.png
similarity index 100%
rename from Resources/diese-actif.png
rename to Resources/numpad_sharp_default.png
diff --git a/Resources/numpad_sharp_over.png b/Resources/numpad_sharp_over.png
new file mode 100644
index 000000000..dffb1b062
Binary files /dev/null and b/Resources/numpad_sharp_over.png differ
diff --git a/Resources/6-actif.png b/Resources/numpad_six_default.png
similarity index 100%
rename from Resources/6-actif.png
rename to Resources/numpad_six_default.png
diff --git a/Resources/numpad_six_over.png b/Resources/numpad_six_over.png
new file mode 100644
index 000000000..aee8556d7
Binary files /dev/null and b/Resources/numpad_six_over.png differ
diff --git a/Resources/numpad_star_default.png b/Resources/numpad_star_default.png
new file mode 100644
index 000000000..6034e1a99
Binary files /dev/null and b/Resources/numpad_star_default.png differ
diff --git a/Resources/numpad_star_over.png b/Resources/numpad_star_over.png
new file mode 100644
index 000000000..ac9639ff7
Binary files /dev/null and b/Resources/numpad_star_over.png differ
diff --git a/Resources/3-actif.png b/Resources/numpad_three_default.png
similarity index 100%
rename from Resources/3-actif.png
rename to Resources/numpad_three_default.png
diff --git a/Resources/numpad_three_over.png b/Resources/numpad_three_over.png
new file mode 100644
index 000000000..8fb1e1dc8
Binary files /dev/null and b/Resources/numpad_three_over.png differ
diff --git a/Resources/2-actif.png b/Resources/numpad_two_default.png
similarity index 100%
rename from Resources/2-actif.png
rename to Resources/numpad_two_default.png
diff --git a/Resources/numpad_two_over.png b/Resources/numpad_two_over.png
new file mode 100644
index 000000000..da5f95e90
Binary files /dev/null and b/Resources/numpad_two_over.png differ
diff --git a/Resources/0-actif.png b/Resources/numpad_zero_default.png
similarity index 100%
rename from Resources/0-actif.png
rename to Resources/numpad_zero_default.png
diff --git a/Resources/numpad_zero_over.png b/Resources/numpad_zero_over.png
new file mode 100644
index 000000000..86c14f38c
Binary files /dev/null and b/Resources/numpad_zero_over.png differ
diff --git a/Resources/options_default.png b/Resources/options_default.png
index dd06140cd..2a2c832e6 100644
Binary files a/Resources/options_default.png and b/Resources/options_default.png differ
diff --git a/Resources/options_disabled.png b/Resources/options_disabled.png
index 0339da972..3f5a32482 100644
Binary files a/Resources/options_disabled.png and b/Resources/options_disabled.png differ
diff --git a/Resources/options_over.png b/Resources/options_over.png
index c9c2eb3aa..4c33e642b 100644
Binary files a/Resources/options_over.png and b/Resources/options_over.png differ
diff --git a/Resources/pause-actif.png b/Resources/pause_off_default.png
similarity index 100%
rename from Resources/pause-actif.png
rename to Resources/pause_off_default.png
diff --git a/Resources/pause-over.png b/Resources/pause_off_over.png
similarity index 100%
rename from Resources/pause-over.png
rename to Resources/pause_off_over.png
diff --git a/Resources/play-actif.png b/Resources/pause_on_default.png
similarity index 100%
rename from Resources/play-actif.png
rename to Resources/pause_on_default.png
diff --git a/Resources/play-over.png b/Resources/pause_on_over.png
similarity index 100%
rename from Resources/play-over.png
rename to Resources/pause_on_over.png
diff --git a/Resources/registration_inprogress.png b/Resources/registration_inprogress.png
deleted file mode 100644
index 17c3dad7d..000000000
Binary files a/Resources/registration_inprogress.png and /dev/null differ
diff --git a/Resources/cadenas-barre.png b/Resources/security_ko.png
similarity index 100%
rename from Resources/cadenas-barre.png
rename to Resources/security_ko.png
diff --git a/Resources/cadenas.png b/Resources/security_ok.png
similarity index 100%
rename from Resources/cadenas.png
rename to Resources/security_ok.png
diff --git a/Resources/cadenas-interrogation.png b/Resources/security_pending.png
similarity index 100%
rename from Resources/cadenas-interrogation.png
rename to Resources/security_pending.png
diff --git a/Resources/settings-actif.png b/Resources/settings_default.png
similarity index 100%
rename from Resources/settings-actif.png
rename to Resources/settings_default.png
diff --git a/Resources/settings-over.png b/Resources/settings_over.png
similarity index 100%
rename from Resources/settings-over.png
rename to Resources/settings_over.png
diff --git a/Resources/settings-selectionne.png b/Resources/settings_selected.png
similarity index 100%
rename from Resources/settings-selectionne.png
rename to Resources/settings_selected.png
diff --git a/Resources/speacker-OFF-actif.png b/Resources/speaker_off_default.png
similarity index 100%
rename from Resources/speacker-OFF-actif.png
rename to Resources/speaker_off_default.png
diff --git a/Resources/speaker_off_disabled.png b/Resources/speaker_off_disabled.png
new file mode 100644
index 000000000..cb5a1dcf7
Binary files /dev/null and b/Resources/speaker_off_disabled.png differ
diff --git a/Resources/speacker-OFF-over.png b/Resources/speaker_off_over.png
similarity index 100%
rename from Resources/speacker-OFF-over.png
rename to Resources/speaker_off_over.png
diff --git a/Resources/speacker-ON-actif.png b/Resources/speaker_on_default.png
similarity index 100%
rename from Resources/speacker-ON-actif.png
rename to Resources/speaker_on_default.png
diff --git a/Resources/speaker_on_disabled.png b/Resources/speaker_on_disabled.png
new file mode 100644
index 000000000..a07dc1f5c
Binary files /dev/null and b/Resources/speaker_on_disabled.png differ
diff --git a/Resources/speacker-ON-over.png b/Resources/speaker_on_over.png
similarity index 100%
rename from Resources/speacker-ON-over.png
rename to Resources/speaker_on_over.png
diff --git a/Resources/barre-noire-top.png b/Resources/statebar_background.png
similarity index 100%
rename from Resources/barre-noire-top.png
rename to Resources/statebar_background.png
diff --git a/Resources/switch_camera_default.png b/Resources/switch_camera_default.png
index e0e42c09f..2145e1db3 100644
Binary files a/Resources/switch_camera_default.png and b/Resources/switch_camera_default.png differ
diff --git a/Resources/switch_camera_over.png b/Resources/switch_camera_over.png
index 7afcd0a23..649861e9f 100644
Binary files a/Resources/switch_camera_over.png and b/Resources/switch_camera_over.png differ
diff --git a/Resources/video-OFF-actif.png b/Resources/video_off_default.png
similarity index 100%
rename from Resources/video-OFF-actif.png
rename to Resources/video_off_default.png
diff --git a/Resources/video-OFF-disabled.png b/Resources/video_off_disabled.png
similarity index 100%
rename from Resources/video-OFF-disabled.png
rename to Resources/video_off_disabled.png
diff --git a/Resources/video-OFF-over.png b/Resources/video_off_over.png
similarity index 100%
rename from Resources/video-OFF-over.png
rename to Resources/video_off_over.png
diff --git a/Resources/video-ON-actif.png b/Resources/video_on_default.png
similarity index 100%
rename from Resources/video-ON-actif.png
rename to Resources/video_on_default.png
diff --git a/Resources/video-ON-disabled.png b/Resources/video_on_disabled.png
similarity index 100%
rename from Resources/video-ON-disabled.png
rename to Resources/video_on_disabled.png
diff --git a/Resources/video-ON-over.png b/Resources/video_on_over.png
similarity index 100%
rename from Resources/video-ON-over.png
rename to Resources/video_on_over.png
diff --git a/linphone-Info.plist b/linphone-Info.plist
index e0ae92cdc..6fcc7adf1 100644
--- a/linphone-Info.plist
+++ b/linphone-Info.plist
@@ -12,8 +12,8 @@
CFBundleIconFiles
- icone-linphone-57.png
- icone-linphone-72.png
+ linphone_icon_57.png
+ linphone_icon_72.png
CFBundleIdentifier
org.linphone.phone
@@ -32,7 +32,7 @@
NSMainNibFile
LinphoneApp
NSMainNibFile~ipad
- MainScreenWithVideoPreview
+ LinphoneApp
UIApplicationExitsOnSuspend
UIBackgroundModes
diff --git a/linphone.xcodeproj/project.pbxproj b/linphone.xcodeproj/project.pbxproj
index 89f5d7a41..00dd5f44e 100755
--- a/linphone.xcodeproj/project.pbxproj
+++ b/linphone.xcodeproj/project.pbxproj
@@ -11,7 +11,7 @@
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
- 22058C71116E305000B08DDD /* icone-linphone-57.png in Resources */ = {isa = PBXBuildFile; fileRef = 22058C70116E305000B08DDD /* icone-linphone-57.png */; };
+ 22058C71116E305000B08DDD /* linphone_icon_57.png in Resources */ = {isa = PBXBuildFile; fileRef = 22058C70116E305000B08DDD /* linphone_icon_57.png */; };
220FAD3110765B400068D98F /* libeXosip2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 220FAD2810765B400068D98F /* libeXosip2.a */; };
220FAD3210765B400068D98F /* libgsm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 220FAD2910765B400068D98F /* libgsm.a */; };
220FAD3610765B400068D98F /* libosip2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 220FAD2D10765B400068D98F /* libosip2.a */; };
@@ -27,8 +27,6 @@
2214EBF312F86360002A5394 /* UIMicroButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2214EBF212F86360002A5394 /* UIMicroButton.m */; };
2218A92512FBE1340088A667 /* FirstLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2218A92312FBE1340088A667 /* FirstLoginViewController.m */; };
2218A92612FBE1340088A667 /* FirstLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2218A92412FBE1340088A667 /* FirstLoginViewController.xib */; };
- 22226C12118197C0000CA27B /* startcall-green.png in Resources */ = {isa = PBXBuildFile; fileRef = 22226C11118197C0000CA27B /* startcall-green.png */; };
- 22226C14118197EC000CA27B /* stopcall-red.png in Resources */ = {isa = PBXBuildFile; fileRef = 22226C13118197EC000CA27B /* stopcall-red.png */; };
22276E8313C73D3100210156 /* libavcodec.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22276E8013C73D3100210156 /* libavcodec.a */; };
22276E8413C73D3100210156 /* libavutil.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22276E8113C73D3100210156 /* libavutil.a */; };
22276E8513C73D3100210156 /* libswscale.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22276E8213C73D3100210156 /* libswscale.a */; };
@@ -37,7 +35,6 @@
223148E41178A08200637D6A /* libilbc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 223148E31178A08200637D6A /* libilbc.a */; };
223148E61178A09900637D6A /* libmsilbc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 223148E51178A09900637D6A /* libmsilbc.a */; };
2237D4091084D7A9001383EE /* oldphone-mono.wav in Resources */ = {isa = PBXBuildFile; fileRef = 2237D4081084D7A9001383EE /* oldphone-mono.wav */; };
- 223963171393CFAF001DE689 /* FastAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = 223963161393CFAF001DE689 /* FastAddressBook.m */; };
2242E313125235120061DDCE /* oldphone-mono-30s.caf in Resources */ = {isa = PBXBuildFile; fileRef = 2242E312125235120061DDCE /* oldphone-mono-30s.caf */; };
224567C2107B968500F10948 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 224567C1107B968500F10948 /* AVFoundation.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
2245F78A1201D38000C4179D /* MoreViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22E0A81B111C44E100B04932 /* MoreViewController.xib */; };
@@ -56,7 +53,6 @@
2274402F106F335E006EC466 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2274402E106F335E006EC466 /* AudioToolbox.framework */; };
2274550810700509006EC466 /* linphonerc in Resources */ = {isa = PBXBuildFile; fileRef = 2274550710700509006EC466 /* linphonerc */; };
228697C411AC29B800E9E0CA /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 228697C311AC29B800E9E0CA /* CFNetwork.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
- 228B19AF130290C500F154D3 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = 228B19AE130290C500F154D3 /* iTunesArtwork */; };
22968A5F12F875C600588287 /* UISpeakerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 22968A5E12F875C600588287 /* UISpeakerButton.m */; };
22A10F3B11F8960300373793 /* libortp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 220FAD2C10765B400068D98F /* libortp.a */; };
22AA8AFD13D7125600B30535 /* libx264.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22AA8AFB13D7125500B30535 /* libx264.a */; };
@@ -73,14 +69,11 @@
22D8F124147548E2008C97DB /* untitled.plist in Resources */ = {isa = PBXBuildFile; fileRef = 22F51EF5107FA66500F98953 /* untitled.plist */; };
22D8F125147548E2008C97DB /* oldphone-mono.wav in Resources */ = {isa = PBXBuildFile; fileRef = 2237D4081084D7A9001383EE /* oldphone-mono.wav */; };
22D8F12D147548E2008C97DB /* ConsoleViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22E0A81E111C44E100B04932 /* ConsoleViewController.xib */; };
- 22D8F12E147548E2008C97DB /* icone-linphone-57.png in Resources */ = {isa = PBXBuildFile; fileRef = 22058C70116E305000B08DDD /* icone-linphone-57.png */; };
- 22D8F12F147548E2008C97DB /* startcall-green.png in Resources */ = {isa = PBXBuildFile; fileRef = 22226C11118197C0000CA27B /* startcall-green.png */; };
- 22D8F130147548E2008C97DB /* stopcall-red.png in Resources */ = {isa = PBXBuildFile; fileRef = 22226C13118197EC000CA27B /* stopcall-red.png */; };
+ 22D8F12E147548E2008C97DB /* linphone_icon_57.png in Resources */ = {isa = PBXBuildFile; fileRef = 22058C70116E305000B08DDD /* linphone_icon_57.png */; };
22D8F137147548E2008C97DB /* linphone-banner.png in Resources */ = {isa = PBXBuildFile; fileRef = 225CB2F911ABB76400628906 /* linphone-banner.png */; };
22D8F138147548E2008C97DB /* MoreViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22E0A81B111C44E100B04932 /* MoreViewController.xib */; };
22D8F139147548E2008C97DB /* oldphone-mono-30s.caf in Resources */ = {isa = PBXBuildFile; fileRef = 2242E312125235120061DDCE /* oldphone-mono-30s.caf */; };
22D8F13B147548E2008C97DB /* FirstLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2218A92412FBE1340088A667 /* FirstLoginViewController.xib */; };
- 22D8F13C147548E2008C97DB /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = 228B19AE130290C500F154D3 /* iTunesArtwork */; };
22D8F13D147548E2008C97DB /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2214783B1386A2030020F8B8 /* Localizable.strings */; };
22D8F142147548E2008C97DB /* rootca.pem in Resources */ = {isa = PBXBuildFile; fileRef = 70571E1913FABCB000CDD3C2 /* rootca.pem */; };
22D8F144147548E2008C97DB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
@@ -96,7 +89,6 @@
22D8F154147548E2008C97DB /* FirstLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2218A92312FBE1340088A667 /* FirstLoginViewController.m */; };
22D8F155147548E2008C97DB /* UIBluetoothButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C7555F1317E59C007BC101 /* UIBluetoothButton.m */; };
22D8F156147548E2008C97DB /* UIEraseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 22BB1A68132FF16A005CD7AA /* UIEraseButton.m */; };
- 22D8F157147548E2008C97DB /* FastAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = 223963161393CFAF001DE689 /* FastAddressBook.m */; };
22D8F159147548E2008C97DB /* UICamSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AA8B0013D83F6300B30535 /* UICamSwitch.m */; };
22D8F15B147548E2008C97DB /* libvpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7066FC0B13E830E400EFC6DC /* libvpx.a */; };
22D8F15C147548E2008C97DB /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70E542F413E147EB002BA2C0 /* QuartzCore.framework */; };
@@ -145,8 +137,6 @@
34075199150645A300B89C47 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 340751961506459A00B89C47 /* CoreTelephony.framework */; };
340751E7150F38FD00B89C47 /* UIVideoButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 340751E6150F38FD00B89C47 /* UIVideoButton.m */; };
340751E8150F38FD00B89C47 /* UIVideoButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 340751E6150F38FD00B89C47 /* UIVideoButton.m */; };
- 3418843714C58BB100EA48C7 /* nowebcamCIF.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 3418843614C58BB100EA48C7 /* nowebcamCIF.jpg */; };
- 3418843814C58BB100EA48C7 /* nowebcamCIF.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 3418843614C58BB100EA48C7 /* nowebcamCIF.jpg */; };
341FCA8E149798210084BC26 /* linphonerc-ipad in Resources */ = {isa = PBXBuildFile; fileRef = 341FCA8D149798210084BC26 /* linphonerc-ipad */; };
341FCA8F149798210084BC26 /* linphonerc-ipad in Resources */ = {isa = PBXBuildFile; fileRef = 341FCA8D149798210084BC26 /* linphonerc-ipad */; };
34216F401547EBCD00EA9777 /* VideoZoomHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 34216F3F1547EBCD00EA9777 /* VideoZoomHandler.m */; };
@@ -158,61 +148,51 @@
344ABDE81484E723007420B6 /* libzrtpcpp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 344ABDE71484E723007420B6 /* libzrtpcpp.a */; };
344ABDF114850AE9007420B6 /* libc++.1.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 344ABDEF14850AE9007420B6 /* libc++.1.dylib */; settings = {ATTRIBUTES = (Weak, ); }; };
344ABDF214850AE9007420B6 /* libstdc++.6.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 344ABDF014850AE9007420B6 /* libstdc++.6.dylib */; settings = {ATTRIBUTES = (Weak, ); }; };
- 34A6ECEB14CF13CB00460C04 /* icone-linphone-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 34A6ECEA14CF13CB00460C04 /* icone-linphone-72.png */; };
- 34C7646C14CD5585008E9607 /* dialer-orange.png in Resources */ = {isa = PBXBuildFile; fileRef = 34C7646A14CD5585008E9607 /* dialer-orange.png */; };
- 34C7646D14CD5585008E9607 /* history-orange.png in Resources */ = {isa = PBXBuildFile; fileRef = 34C7646B14CD5585008E9607 /* history-orange.png */; };
- 57282931154AF1460076F540 /* history-orange.png in Resources */ = {isa = PBXBuildFile; fileRef = 34C7646B14CD5585008E9607 /* history-orange.png */; };
- 57282933154AF14D0076F540 /* dialer-orange.png in Resources */ = {isa = PBXBuildFile; fileRef = 34C7646A14CD5585008E9607 /* dialer-orange.png */; };
+ 34A6ECEB14CF13CB00460C04 /* linphone_icon_72.png in Resources */ = {isa = PBXBuildFile; fileRef = 34A6ECEA14CF13CB00460C04 /* linphone_icon_72.png */; };
70571E1A13FABCB000CDD3C2 /* rootca.pem in Resources */ = {isa = PBXBuildFile; fileRef = 70571E1913FABCB000CDD3C2 /* rootca.pem */; };
7066FC0C13E830E400EFC6DC /* libvpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7066FC0B13E830E400EFC6DC /* libvpx.a */; };
70E542F313E147E3002BA2C0 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70E542F213E147E3002BA2C0 /* OpenGLES.framework */; };
70E542F513E147EB002BA2C0 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70E542F413E147EB002BA2C0 /* QuartzCore.framework */; };
D31AAF5E159B3919002C6B02 /* InCallTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D31AAF5D159B3919002C6B02 /* InCallTableViewController.m */; };
D31AAF5F159B3919002C6B02 /* InCallTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D31AAF5D159B3919002C6B02 /* InCallTableViewController.m */; };
- D31AAF63159B5B6F002C6B02 /* start-conference-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF61159B5B6E002C6B02 /* start-conference-actif.png */; };
- D31AAF64159B5B6F002C6B02 /* start-conference-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF61159B5B6E002C6B02 /* start-conference-actif.png */; };
- D31AAF65159B5B6F002C6B02 /* start-conference-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF62159B5B6E002C6B02 /* start-conference-over.png */; };
- D31AAF66159B5B6F002C6B02 /* start-conference-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF62159B5B6E002C6B02 /* start-conference-over.png */; };
- D31AAF69159B5C68002C6B02 /* finir-conference-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF67159B5C68002C6B02 /* finir-conference-actif.png */; };
- D31AAF6A159B5C68002C6B02 /* finir-conference-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF67159B5C68002C6B02 /* finir-conference-actif.png */; };
- D31AAF6B159B5C68002C6B02 /* finir-conference-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF68159B5C68002C6B02 /* finir-conference-over.png */; };
- D31AAF6C159B5C68002C6B02 /* finir-conference-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF68159B5C68002C6B02 /* finir-conference-over.png */; };
- D31AAF6E159B65E1002C6B02 /* ring-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF6D159B65E1002C6B02 /* ring-champ-numero-actif.png */; };
- D31AAF6F159B65E1002C6B02 /* ring-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF6D159B65E1002C6B02 /* ring-champ-numero-actif.png */; };
+ D31AAF63159B5B6F002C6B02 /* conference_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF61159B5B6E002C6B02 /* conference_default.png */; };
+ D31AAF64159B5B6F002C6B02 /* conference_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF61159B5B6E002C6B02 /* conference_default.png */; };
+ D31AAF65159B5B6F002C6B02 /* conference_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF62159B5B6E002C6B02 /* conference_over.png */; };
+ D31AAF66159B5B6F002C6B02 /* conference_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF62159B5B6E002C6B02 /* conference_over.png */; };
+ D31AAF6E159B65E1002C6B02 /* call_state_ringing_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF6D159B65E1002C6B02 /* call_state_ringing_default.png */; };
+ D31AAF6F159B65E1002C6B02 /* call_state_ringing_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D31AAF6D159B65E1002C6B02 /* call_state_ringing_default.png */; };
D31AC4B0158A29C600C2638B /* UIHistoryCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D31AC4AF158A29C600C2638B /* UIHistoryCell.xib */; };
D31AC4B1158A29C600C2638B /* UIHistoryCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D31AC4AF158A29C600C2638B /* UIHistoryCell.xib */; };
D31B4B21159876C0002E6C72 /* UICompositeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D31B4B1F159876C0002E6C72 /* UICompositeViewController.m */; };
D31B4B22159876C0002E6C72 /* UICompositeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D31B4B1F159876C0002E6C72 /* UICompositeViewController.m */; };
D31B4B23159876C0002E6C72 /* UICompositeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B20159876C0002E6C72 /* UICompositeViewController.xib */; };
D31B4B24159876C0002E6C72 /* UICompositeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B20159876C0002E6C72 /* UICompositeViewController.xib */; };
- D31B4B281598A390002E6C72 /* avatar-inconnu.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B261598A390002E6C72 /* avatar-inconnu.png */; };
- D31B4B291598A390002E6C72 /* avatar-inconnu.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B261598A390002E6C72 /* avatar-inconnu.png */; };
- D31B4B2A1598A390002E6C72 /* avatar-small.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B271598A390002E6C72 /* avatar-small.png */; };
- D31B4B2B1598A390002E6C72 /* avatar-small.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B271598A390002E6C72 /* avatar-small.png */; };
- D31C9C8A158A179A00756B45 /* fond-detail-numero.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C89158A179A00756B45 /* fond-detail-numero.png */; };
- D31C9C8B158A179A00756B45 /* fond-detail-numero.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C89158A179A00756B45 /* fond-detail-numero.png */; };
- D31C9C90158A1C1000756B45 /* appel-entrant.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8D158A1C1000756B45 /* appel-entrant.png */; };
- D31C9C91158A1C1000756B45 /* appel-entrant.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8D158A1C1000756B45 /* appel-entrant.png */; };
- D31C9C92158A1C1000756B45 /* appel-manque.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8E158A1C1000756B45 /* appel-manque.png */; };
- D31C9C93158A1C1000756B45 /* appel-manque.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8E158A1C1000756B45 /* appel-manque.png */; };
- D31C9C94158A1C1000756B45 /* appel-sortant.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8F158A1C1000756B45 /* appel-sortant.png */; };
- D31C9C95158A1C1000756B45 /* appel-sortant.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8F158A1C1000756B45 /* appel-sortant.png */; };
+ D31B4B281598A390002E6C72 /* avatar_unknown.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B261598A390002E6C72 /* avatar_unknown.png */; };
+ D31B4B291598A390002E6C72 /* avatar_unknown.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B261598A390002E6C72 /* avatar_unknown.png */; };
+ D31B4B2A1598A390002E6C72 /* avatar_unknown_small.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B271598A390002E6C72 /* avatar_unknown_small.png */; };
+ D31B4B2B1598A390002E6C72 /* avatar_unknown_small.png in Resources */ = {isa = PBXBuildFile; fileRef = D31B4B271598A390002E6C72 /* avatar_unknown_small.png */; };
+ D31C9C90158A1C1000756B45 /* call_status_incoming.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8D158A1C1000756B45 /* call_status_incoming.png */; };
+ D31C9C91158A1C1000756B45 /* call_status_incoming.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8D158A1C1000756B45 /* call_status_incoming.png */; };
+ D31C9C92158A1C1000756B45 /* call_status_missed.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8E158A1C1000756B45 /* call_status_missed.png */; };
+ D31C9C93158A1C1000756B45 /* call_status_missed.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8E158A1C1000756B45 /* call_status_missed.png */; };
+ D31C9C94158A1C1000756B45 /* call_status_outgoing.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8F158A1C1000756B45 /* call_status_outgoing.png */; };
+ D31C9C95158A1C1000756B45 /* call_status_outgoing.png in Resources */ = {isa = PBXBuildFile; fileRef = D31C9C8F158A1C1000756B45 /* call_status_outgoing.png */; };
D31C9C98158A1CDF00756B45 /* UIHistoryCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D31C9C97158A1CDE00756B45 /* UIHistoryCell.m */; };
D31C9C99158A1CDF00756B45 /* UIHistoryCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D31C9C97158A1CDE00756B45 /* UIHistoryCell.m */; };
- D3211BA6159C3D410098460B /* outgoing-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BA5159C3D410098460B /* outgoing-champ-numero-actif.png */; };
- D3211BA7159C3D410098460B /* outgoing-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BA5159C3D410098460B /* outgoing-champ-numero-actif.png */; };
+ D3211BA6159C3D410098460B /* call_state_outgoing_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BA5159C3D410098460B /* call_state_outgoing_default.png */; };
+ D3211BA7159C3D410098460B /* call_state_outgoing_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BA5159C3D410098460B /* call_state_outgoing_default.png */; };
D3211BB0159C4EF10098460B /* UIConferenceHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D3211BAE159C4EF00098460B /* UIConferenceHeader.m */; };
D3211BB1159C4EF10098460B /* UIConferenceHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D3211BAE159C4EF00098460B /* UIConferenceHeader.m */; };
D3211BB2159C4EF10098460B /* UIConferenceHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3211BAF159C4EF10098460B /* UIConferenceHeader.xib */; };
D3211BB3159C4EF10098460B /* UIConferenceHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3211BAF159C4EF10098460B /* UIConferenceHeader.xib */; };
- D3211BB9159C8A820098460B /* champ-courbe-autres-numeros-first.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BB8159C8A820098460B /* champ-courbe-autres-numeros-first.png */; };
- D3211BBA159C8A820098460B /* champ-courbe-autres-numeros-first.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BB8159C8A820098460B /* champ-courbe-autres-numeros-first.png */; };
- D3211BBE159CBFD60098460B /* cancel_white_bg_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBB159CBFD60098460B /* cancel_white_bg_default.png */; };
- D3211BBF159CBFD70098460B /* cancel_white_bg_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBB159CBFD60098460B /* cancel_white_bg_default.png */; };
- D3211BC0159CBFD70098460B /* cancel_white_bg_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBC159CBFD60098460B /* cancel_white_bg_disabled.png */; };
- D3211BC1159CBFD70098460B /* cancel_white_bg_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBC159CBFD60098460B /* cancel_white_bg_disabled.png */; };
- D3211BC2159CBFD70098460B /* cancel_white_bg_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBD159CBFD60098460B /* cancel_white_bg_over.png */; };
- D3211BC3159CBFD70098460B /* cancel_white_bg_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBD159CBFD60098460B /* cancel_white_bg_over.png */; };
+ D3211BB9159C8A820098460B /* cell_call_first.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BB8159C8A820098460B /* cell_call_first.png */; };
+ D3211BBA159C8A820098460B /* cell_call_first.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BB8159C8A820098460B /* cell_call_first.png */; };
+ D3211BBE159CBFD60098460B /* back_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBB159CBFD60098460B /* back_default.png */; };
+ D3211BBF159CBFD70098460B /* back_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBB159CBFD60098460B /* back_default.png */; };
+ D3211BC0159CBFD70098460B /* back_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBC159CBFD60098460B /* back_disabled.png */; };
+ D3211BC1159CBFD70098460B /* back_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBC159CBFD60098460B /* back_disabled.png */; };
+ D3211BC2159CBFD70098460B /* back_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBD159CBFD60098460B /* back_over.png */; };
+ D3211BC3159CBFD70098460B /* back_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3211BBD159CBFD60098460B /* back_over.png */; };
D32409C3158B49A600C8C119 /* UILongTouchButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D32409C2158B49A600C8C119 /* UILongTouchButton.m */; };
D32409C4158B49A600C8C119 /* UILongTouchButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D32409C2158B49A600C8C119 /* UILongTouchButton.m */; };
D32460E6159D9AAD00BA7F3A /* UIPassView.m in Sources */ = {isa = PBXBuildFile; fileRef = D32460E5159D9AAD00BA7F3A /* UIPassView.m */; };
@@ -231,49 +211,51 @@
D32648451588F6FC00930C67 /* UIToggleButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D32648431588F6FB00930C67 /* UIToggleButton.m */; };
D32942A41594C94300556A1C /* SettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D32942A31594C94200556A1C /* SettingsViewController.xib */; };
D32942A51594C94300556A1C /* SettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D32942A31594C94200556A1C /* SettingsViewController.xib */; };
- D3432A62158A4446001C6B0B /* status_connected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5C158A4446001C6B0B /* status_connected.png */; };
- D3432A63158A4446001C6B0B /* status_connected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5C158A4446001C6B0B /* status_connected.png */; };
- D3432A64158A4446001C6B0B /* status_error.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5D158A4446001C6B0B /* status_error.png */; };
- D3432A65158A4446001C6B0B /* status_error.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5D158A4446001C6B0B /* status_error.png */; };
- D3432A66158A4446001C6B0B /* quality-call-0.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5E158A4446001C6B0B /* quality-call-0.png */; };
- D3432A67158A4446001C6B0B /* quality-call-0.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5E158A4446001C6B0B /* quality-call-0.png */; };
- D3432A68158A4446001C6B0B /* quality-call-1.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5F158A4446001C6B0B /* quality-call-1.png */; };
- D3432A69158A4446001C6B0B /* quality-call-1.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5F158A4446001C6B0B /* quality-call-1.png */; };
- D3432A6A158A4446001C6B0B /* quality-call-2.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A60158A4446001C6B0B /* quality-call-2.png */; };
- D3432A6B158A4446001C6B0B /* quality-call-2.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A60158A4446001C6B0B /* quality-call-2.png */; };
- D3432A6C158A4446001C6B0B /* quality-call-3.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A61158A4446001C6B0B /* quality-call-3.png */; };
- D3432A6D158A4446001C6B0B /* quality-call-3.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A61158A4446001C6B0B /* quality-call-3.png */; };
- D3432A71158A45AF001C6B0B /* status_inprogress.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A6F158A45AF001C6B0B /* status_inprogress.png */; };
- D3432A72158A45AF001C6B0B /* status_inprogress.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A6F158A45AF001C6B0B /* status_inprogress.png */; };
- D3432A73158A45AF001C6B0B /* status_disconnected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A70158A45AF001C6B0B /* status_disconnected.png */; };
- D3432A74158A45AF001C6B0B /* status_disconnected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A70158A45AF001C6B0B /* status_disconnected.png */; };
+ D32B9DFC15A2F131000B6DEC /* FastAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = D32B9DFB15A2F131000B6DEC /* FastAddressBook.m */; };
+ D32B9DFD15A2F131000B6DEC /* FastAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = D32B9DFB15A2F131000B6DEC /* FastAddressBook.m */; };
+ D3432A62158A4446001C6B0B /* led_connected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5C158A4446001C6B0B /* led_connected.png */; };
+ D3432A63158A4446001C6B0B /* led_connected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5C158A4446001C6B0B /* led_connected.png */; };
+ D3432A64158A4446001C6B0B /* led_error.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5D158A4446001C6B0B /* led_error.png */; };
+ D3432A65158A4446001C6B0B /* led_error.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5D158A4446001C6B0B /* led_error.png */; };
+ D3432A66158A4446001C6B0B /* call_quality_indicator_0.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5E158A4446001C6B0B /* call_quality_indicator_0.png */; };
+ D3432A67158A4446001C6B0B /* call_quality_indicator_0.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5E158A4446001C6B0B /* call_quality_indicator_0.png */; };
+ D3432A68158A4446001C6B0B /* call_quality_indicator_1.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5F158A4446001C6B0B /* call_quality_indicator_1.png */; };
+ D3432A69158A4446001C6B0B /* call_quality_indicator_1.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A5F158A4446001C6B0B /* call_quality_indicator_1.png */; };
+ D3432A6A158A4446001C6B0B /* call_quality_indicator_2.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A60158A4446001C6B0B /* call_quality_indicator_2.png */; };
+ D3432A6B158A4446001C6B0B /* call_quality_indicator_2.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A60158A4446001C6B0B /* call_quality_indicator_2.png */; };
+ D3432A6C158A4446001C6B0B /* call_quality_indicator_3.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A61158A4446001C6B0B /* call_quality_indicator_3.png */; };
+ D3432A6D158A4446001C6B0B /* call_quality_indicator_3.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A61158A4446001C6B0B /* call_quality_indicator_3.png */; };
+ D3432A71158A45AF001C6B0B /* led_inprogress.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A6F158A45AF001C6B0B /* led_inprogress.png */; };
+ D3432A72158A45AF001C6B0B /* led_inprogress.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A6F158A45AF001C6B0B /* led_inprogress.png */; };
+ D3432A73158A45AF001C6B0B /* led_disconnected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A70158A45AF001C6B0B /* led_disconnected.png */; };
+ D3432A74158A45AF001C6B0B /* led_disconnected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3432A70158A45AF001C6B0B /* led_disconnected.png */; };
D347347A1580DDF1003C7B8C /* PhoneMainView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D34734791580DDF1003C7B8C /* PhoneMainView.xib */; };
- D347347E1580E5F8003C7B8C /* history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D347347C1580E5F8003C7B8C /* history-actif.png */; };
- D347347F1580E5F8003C7B8C /* history-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D347347D1580E5F8003C7B8C /* history-selectionne.png */; };
+ D347347E1580E5F8003C7B8C /* history_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D347347C1580E5F8003C7B8C /* history_default.png */; };
+ D347347F1580E5F8003C7B8C /* history_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D347347D1580E5F8003C7B8C /* history_selected.png */; };
D34F6F9E1594D3FB0095705B /* InAppSettings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D34F6F9D1594D3FB0095705B /* InAppSettings.bundle */; };
D34F6F9F1594D3FB0095705B /* InAppSettings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D34F6F9D1594D3FB0095705B /* InAppSettings.bundle */; };
D35497FE15875372000081D8 /* ContactsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35497FC15875372000081D8 /* ContactsViewController.m */; };
D35497FF15875372000081D8 /* ContactsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35497FC15875372000081D8 /* ContactsViewController.m */; };
D354980015875372000081D8 /* ContactsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D35497FD15875372000081D8 /* ContactsViewController.xib */; };
D354980115875372000081D8 /* ContactsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D35497FD15875372000081D8 /* ContactsViewController.xib */; };
- D354980615875534000081D8 /* all-contacts-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980215875534000081D8 /* all-contacts-actif.png */; };
- D354980715875534000081D8 /* all-contacts-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980215875534000081D8 /* all-contacts-actif.png */; };
- D354980815875534000081D8 /* all-contacts-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980315875534000081D8 /* all-contacts-selectionne.png */; };
- D354980915875534000081D8 /* all-contacts-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980315875534000081D8 /* all-contacts-selectionne.png */; };
- D354980A15875534000081D8 /* linphone-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980415875534000081D8 /* linphone-actif.png */; };
- D354980B15875534000081D8 /* linphone-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980415875534000081D8 /* linphone-actif.png */; };
- D354980C15875534000081D8 /* linphone-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980515875534000081D8 /* linphone-selectionne.png */; };
- D354980D15875534000081D8 /* linphone-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980515875534000081D8 /* linphone-selectionne.png */; };
- D354981015875608000081D8 /* add-contact-depuis-detail-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980E15875608000081D8 /* add-contact-depuis-detail-actif.png */; };
- D354981115875608000081D8 /* add-contact-depuis-detail-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980E15875608000081D8 /* add-contact-depuis-detail-actif.png */; };
- D354981215875608000081D8 /* add-contact-depuis-detail-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980F15875608000081D8 /* add-contact-depuis-detail-over.png */; };
- D354981315875608000081D8 /* add-contact-depuis-detail-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980F15875608000081D8 /* add-contact-depuis-detail-over.png */; };
+ D354980615875534000081D8 /* contacts_all_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980215875534000081D8 /* contacts_all_default.png */; };
+ D354980715875534000081D8 /* contacts_all_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980215875534000081D8 /* contacts_all_default.png */; };
+ D354980815875534000081D8 /* contacts_all_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980315875534000081D8 /* contacts_all_selected.png */; };
+ D354980915875534000081D8 /* contacts_all_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980315875534000081D8 /* contacts_all_selected.png */; };
+ D354980A15875534000081D8 /* contacts_linphone_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980415875534000081D8 /* contacts_linphone_default.png */; };
+ D354980B15875534000081D8 /* contacts_linphone_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980415875534000081D8 /* contacts_linphone_default.png */; };
+ D354980C15875534000081D8 /* contacts_linphone_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980515875534000081D8 /* contacts_linphone_selected.png */; };
+ D354980D15875534000081D8 /* contacts_linphone_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980515875534000081D8 /* contacts_linphone_selected.png */; };
+ D354981015875608000081D8 /* contacts_add_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980E15875608000081D8 /* contacts_add_default.png */; };
+ D354981115875608000081D8 /* contacts_add_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980E15875608000081D8 /* contacts_add_default.png */; };
+ D354981215875608000081D8 /* contacts_add_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980F15875608000081D8 /* contacts_add_over.png */; };
+ D354981315875608000081D8 /* contacts_add_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354980F15875608000081D8 /* contacts_add_over.png */; };
D3549816158761D0000081D8 /* ContactsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3549815158761D0000081D8 /* ContactsTableViewController.m */; };
D3549817158761D0000081D8 /* ContactsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3549815158761D0000081D8 /* ContactsTableViewController.m */; };
- D354981A15876FE7000081D8 /* bouton-detail-contact-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981815876FE7000081D8 /* bouton-detail-contact-actif.png */; };
- D354981B15876FE7000081D8 /* bouton-detail-contact-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981815876FE7000081D8 /* bouton-detail-contact-actif.png */; };
- D354981C15876FE7000081D8 /* bouton-detail-contact-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981915876FE7000081D8 /* bouton-detail-contact-over.png */; };
- D354981D15876FE7000081D8 /* bouton-detail-contact-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981915876FE7000081D8 /* bouton-detail-contact-over.png */; };
+ D354981A15876FE7000081D8 /* list_details_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981815876FE7000081D8 /* list_details_default.png */; };
+ D354981B15876FE7000081D8 /* list_details_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981815876FE7000081D8 /* list_details_default.png */; };
+ D354981C15876FE7000081D8 /* list_details_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981915876FE7000081D8 /* list_details_over.png */; };
+ D354981D15876FE7000081D8 /* list_details_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D354981915876FE7000081D8 /* list_details_over.png */; };
D35498211587716B000081D8 /* UIStateBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D354981F1587716B000081D8 /* UIStateBar.m */; };
D35498221587716B000081D8 /* UIStateBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D354981F1587716B000081D8 /* UIStateBar.m */; };
D35498231587716B000081D8 /* UIStateBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = D35498201587716B000081D8 /* UIStateBar.xib */; };
@@ -284,53 +266,59 @@
D35E757B15931E5D0066B1C1 /* switch_camera_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E757615931E5D0066B1C1 /* switch_camera_over.png */; };
D35E7581159328EB0066B1C1 /* UIAddressTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D35E7580159328EB0066B1C1 /* UIAddressTextField.m */; };
D35E7582159328EB0066B1C1 /* UIAddressTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D35E7580159328EB0066B1C1 /* UIAddressTextField.m */; };
- D35E758915932DE60066B1C1 /* backspace-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758815932DE60066B1C1 /* backspace-disabled.png */; };
- D35E758A15932DE60066B1C1 /* backspace-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758815932DE60066B1C1 /* backspace-disabled.png */; };
- D35E758D15934F360066B1C1 /* appeler-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758C15934F360066B1C1 /* appeler-disabled.png */; };
- D35E758E15934F360066B1C1 /* appeler-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758C15934F360066B1C1 /* appeler-disabled.png */; };
+ D35E758915932DE60066B1C1 /* backspace_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758815932DE60066B1C1 /* backspace_disabled.png */; };
+ D35E758A15932DE60066B1C1 /* backspace_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758815932DE60066B1C1 /* backspace_disabled.png */; };
+ D35E758D15934F360066B1C1 /* call_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758C15934F360066B1C1 /* call_disabled.png */; };
+ D35E758E15934F360066B1C1 /* call_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35E758C15934F360066B1C1 /* call_disabled.png */; };
D35E7597159460580066B1C1 /* ChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35E7595159460560066B1C1 /* ChatViewController.m */; };
D35E7598159460580066B1C1 /* ChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35E7595159460560066B1C1 /* ChatViewController.m */; };
D35E7599159460580066B1C1 /* ChatViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D35E7596159460570066B1C1 /* ChatViewController.xib */; };
D35E759A159460580066B1C1 /* ChatViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D35E7596159460570066B1C1 /* ChatViewController.xib */; };
D35E759F159460B70066B1C1 /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35E759D159460B50066B1C1 /* SettingsViewController.m */; };
D35E75A0159460B70066B1C1 /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35E759D159460B50066B1C1 /* SettingsViewController.m */; };
+ D35EA76315A2DF8D003E025D /* micro_off_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35EA76115A2DF8D003E025D /* micro_off_disabled.png */; };
+ D35EA76415A2DF8D003E025D /* micro_off_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35EA76115A2DF8D003E025D /* micro_off_disabled.png */; };
+ D35EA76515A2DF8D003E025D /* micro_on_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35EA76215A2DF8D003E025D /* micro_on_disabled.png */; };
+ D35EA76615A2DF8D003E025D /* micro_on_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D35EA76215A2DF8D003E025D /* micro_on_disabled.png */; };
+ D365AA7B15A2DE7500CAFE3F /* speaker_off_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D365AA7915A2DE7500CAFE3F /* speaker_off_disabled.png */; };
+ D365AA7C15A2DE7500CAFE3F /* speaker_off_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D365AA7915A2DE7500CAFE3F /* speaker_off_disabled.png */; };
+ D365AA7D15A2DE7500CAFE3F /* speaker_on_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D365AA7A15A2DE7500CAFE3F /* speaker_on_disabled.png */; };
+ D365AA7E15A2DE7500CAFE3F /* speaker_on_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D365AA7A15A2DE7500CAFE3F /* speaker_on_disabled.png */; };
D36C43C6158F2E5A0048BA40 /* UICallCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D36C43C5158F2E5A0048BA40 /* UICallCell.m */; };
D36C43C7158F2E5A0048BA40 /* UICallCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D36C43C5158F2E5A0048BA40 /* UICallCell.m */; };
D36C43CA158F2EE50048BA40 /* UICallCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D36C43C9158F2EE50048BA40 /* UICallCell.xib */; };
D36C43CB158F2EE50048BA40 /* UICallCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D36C43C9158F2EE50048BA40 /* UICallCell.xib */; };
- D36C43D1158F2F370048BA40 /* champ-courbe-autres-numeros.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CC158F2F370048BA40 /* champ-courbe-autres-numeros.png */; };
- D36C43D2158F2F370048BA40 /* champ-courbe-autres-numeros.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CC158F2F370048BA40 /* champ-courbe-autres-numeros.png */; };
- D36C43D3158F2F370048BA40 /* champ-courbe-participant-conf.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CD158F2F370048BA40 /* champ-courbe-participant-conf.png */; };
- D36C43D4158F2F370048BA40 /* champ-courbe-participant-conf.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CD158F2F370048BA40 /* champ-courbe-participant-conf.png */; };
- D36C43D5158F2F370048BA40 /* champ-titre-conference.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CE158F2F370048BA40 /* champ-titre-conference.png */; };
- D36C43D6158F2F370048BA40 /* champ-titre-conference.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CE158F2F370048BA40 /* champ-titre-conference.png */; };
- D36C43D7158F2F370048BA40 /* clavier-secondaire-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CF158F2F370048BA40 /* clavier-secondaire-actif.png */; };
- D36C43D8158F2F370048BA40 /* clavier-secondaire-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CF158F2F370048BA40 /* clavier-secondaire-actif.png */; };
- D36C43D9158F2F370048BA40 /* clavier-secondaire-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43D0158F2F370048BA40 /* clavier-secondaire-over.png */; };
- D36C43DA158F2F370048BA40 /* clavier-secondaire-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43D0158F2F370048BA40 /* clavier-secondaire-over.png */; };
- D36C43E9158F3F7E0048BA40 /* play-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E7158F3F7E0048BA40 /* play-actif.png */; };
- D36C43EA158F3F7E0048BA40 /* play-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E7158F3F7E0048BA40 /* play-actif.png */; };
- D36C43EB158F3F7E0048BA40 /* play-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E8158F3F7E0048BA40 /* play-over.png */; };
- D36C43EC158F3F7E0048BA40 /* play-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E8158F3F7E0048BA40 /* play-over.png */; };
- D36C43F1158F61EA0048BA40 /* pause-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43ED158F61EA0048BA40 /* pause-champ-numero-actif.png */; };
- D36C43F2158F61EA0048BA40 /* pause-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43ED158F61EA0048BA40 /* pause-champ-numero-actif.png */; };
- D36C43F3158F61EA0048BA40 /* pause-champ-numero-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EE158F61EA0048BA40 /* pause-champ-numero-over.png */; };
- D36C43F4158F61EA0048BA40 /* pause-champ-numero-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EE158F61EA0048BA40 /* pause-champ-numero-over.png */; };
- D36C43F5158F61EA0048BA40 /* play-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EF158F61EA0048BA40 /* play-champ-numero-actif.png */; };
- D36C43F6158F61EA0048BA40 /* play-champ-numero-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EF158F61EA0048BA40 /* play-champ-numero-actif.png */; };
- D36C43F7158F61EA0048BA40 /* play-champ-numero-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43F0158F61EA0048BA40 /* play-champ-numero-over.png */; };
- D36C43F8158F61EA0048BA40 /* play-champ-numero-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43F0158F61EA0048BA40 /* play-champ-numero-over.png */; };
+ D36C43D1158F2F370048BA40 /* cell_call.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CC158F2F370048BA40 /* cell_call.png */; };
+ D36C43D2158F2F370048BA40 /* cell_call.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CC158F2F370048BA40 /* cell_call.png */; };
+ D36C43D3158F2F370048BA40 /* cell_conference.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CD158F2F370048BA40 /* cell_conference.png */; };
+ D36C43D4158F2F370048BA40 /* cell_conference.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CD158F2F370048BA40 /* cell_conference.png */; };
+ D36C43D5158F2F370048BA40 /* header_conference.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CE158F2F370048BA40 /* header_conference.png */; };
+ D36C43D6158F2F370048BA40 /* header_conference.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CE158F2F370048BA40 /* header_conference.png */; };
+ D36C43D7158F2F370048BA40 /* dialer_alt_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CF158F2F370048BA40 /* dialer_alt_default.png */; };
+ D36C43D8158F2F370048BA40 /* dialer_alt_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43CF158F2F370048BA40 /* dialer_alt_default.png */; };
+ D36C43D9158F2F370048BA40 /* dialer_alt_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43D0158F2F370048BA40 /* dialer_alt_over.png */; };
+ D36C43DA158F2F370048BA40 /* dialer_alt_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43D0158F2F370048BA40 /* dialer_alt_over.png */; };
+ D36C43E9158F3F7E0048BA40 /* pause_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E7158F3F7E0048BA40 /* pause_on_default.png */; };
+ D36C43EA158F3F7E0048BA40 /* pause_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E7158F3F7E0048BA40 /* pause_on_default.png */; };
+ D36C43EB158F3F7E0048BA40 /* pause_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E8158F3F7E0048BA40 /* pause_on_over.png */; };
+ D36C43EC158F3F7E0048BA40 /* pause_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43E8158F3F7E0048BA40 /* pause_on_over.png */; };
+ D36C43F1158F61EA0048BA40 /* call_state_pause_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43ED158F61EA0048BA40 /* call_state_pause_default.png */; };
+ D36C43F2158F61EA0048BA40 /* call_state_pause_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43ED158F61EA0048BA40 /* call_state_pause_default.png */; };
+ D36C43F3158F61EA0048BA40 /* call_state_pause_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EE158F61EA0048BA40 /* call_state_pause_over.png */; };
+ D36C43F4158F61EA0048BA40 /* call_state_pause_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EE158F61EA0048BA40 /* call_state_pause_over.png */; };
+ D36C43F5158F61EA0048BA40 /* call_state_play_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EF158F61EA0048BA40 /* call_state_play_default.png */; };
+ D36C43F6158F61EA0048BA40 /* call_state_play_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43EF158F61EA0048BA40 /* call_state_play_default.png */; };
+ D36C43F7158F61EA0048BA40 /* call_state_play_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43F0158F61EA0048BA40 /* call_state_play_over.png */; };
+ D36C43F8158F61EA0048BA40 /* call_state_play_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D36C43F0158F61EA0048BA40 /* call_state_play_over.png */; };
D36FB2D51589EF7C0036F6F2 /* UIPauseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D36FB2D41589EF7C0036F6F2 /* UIPauseButton.m */; };
D36FB2D61589EF7C0036F6F2 /* UIPauseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D36FB2D41589EF7C0036F6F2 /* UIPauseButton.m */; };
- D37295CA158B1E2D00D2C0C7 /* registration_inprogress.png in Resources */ = {isa = PBXBuildFile; fileRef = D37295C9158B1E2D00D2C0C7 /* registration_inprogress.png */; };
- D37295CB158B1E2D00D2C0C7 /* registration_inprogress.png in Resources */ = {isa = PBXBuildFile; fileRef = D37295C9158B1E2D00D2C0C7 /* registration_inprogress.png */; };
- D37295DB158B3C9600D2C0C7 /* video-OFF-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D37295DA158B3C9600D2C0C7 /* video-OFF-disabled.png */; };
- D37295DC158B3C9600D2C0C7 /* video-OFF-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D37295DA158B3C9600D2C0C7 /* video-OFF-disabled.png */; };
- D377BBFA15A19DA6002B696B /* video-ON-disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D377BBF915A19DA6002B696B /* video-ON-disabled.png */; };
- D37B96B715A1A6F20005CCD2 /* supprimer-participant-conf-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B515A1A6F20005CCD2 /* supprimer-participant-conf-actif.png */; };
- D37B96B815A1A6F20005CCD2 /* supprimer-participant-conf-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B515A1A6F20005CCD2 /* supprimer-participant-conf-actif.png */; };
- D37B96B915A1A6F20005CCD2 /* supprimer-participant-conf-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B615A1A6F20005CCD2 /* supprimer-participant-conf-over.png */; };
- D37B96BA15A1A6F20005CCD2 /* supprimer-participant-conf-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B615A1A6F20005CCD2 /* supprimer-participant-conf-over.png */; };
+ D37295DB158B3C9600D2C0C7 /* video_off_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D37295DA158B3C9600D2C0C7 /* video_off_disabled.png */; };
+ D37295DC158B3C9600D2C0C7 /* video_off_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D37295DA158B3C9600D2C0C7 /* video_off_disabled.png */; };
+ D377BBFA15A19DA6002B696B /* video_on_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D377BBF915A19DA6002B696B /* video_on_disabled.png */; };
+ D37B96B715A1A6F20005CCD2 /* call_state_delete_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B515A1A6F20005CCD2 /* call_state_delete_default.png */; };
+ D37B96B815A1A6F20005CCD2 /* call_state_delete_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B515A1A6F20005CCD2 /* call_state_delete_default.png */; };
+ D37B96B915A1A6F20005CCD2 /* call_state_delete_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B615A1A6F20005CCD2 /* call_state_delete_over.png */; };
+ D37B96BA15A1A6F20005CCD2 /* call_state_delete_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D37B96B615A1A6F20005CCD2 /* call_state_delete_over.png */; };
D37DC6C11594AE1800B2A5EB /* LinphoneCoreSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D37DC6C01594AE1800B2A5EB /* LinphoneCoreSettingsStore.m */; };
D37DC6C21594AE1800B2A5EB /* LinphoneCoreSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D37DC6C01594AE1800B2A5EB /* LinphoneCoreSettingsStore.m */; };
D37DC6ED1594AE6F00B2A5EB /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D37DC6C61594AE6F00B2A5EB /* IASKAppSettingsViewController.m */; };
@@ -377,36 +365,40 @@
D37DC7161594AE6F00B2A5EB /* IASKSpecifierValuesView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D37DC6EC1594AE6F00B2A5EB /* IASKSpecifierValuesView.xib */; };
D37DC7181594AF3400B2A5EB /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D37DC7171594AF3400B2A5EB /* MessageUI.framework */; };
D37DC7191594AF3F00B2A5EB /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D37DC7171594AF3400B2A5EB /* MessageUI.framework */; };
- D38327F31580FE3A00FA0D23 /* contacts-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EB1580FE3A00FA0D23 /* contacts-actif.png */; };
- D38327F41580FE3A00FA0D23 /* contacts-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EC1580FE3A00FA0D23 /* contacts-selectionne.png */; };
- D38327F51580FE3A00FA0D23 /* dialer-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327ED1580FE3A00FA0D23 /* dialer-actif.png */; };
- D38327F61580FE3A00FA0D23 /* dialer-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EE1580FE3A00FA0D23 /* dialer-over.png */; };
- D38327F71580FE3A00FA0D23 /* settings-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EF1580FE3A00FA0D23 /* settings-actif.png */; };
- D38327F81580FE3A00FA0D23 /* settings-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327F01580FE3A00FA0D23 /* settings-selectionne.png */; };
- D38327F91580FE3A00FA0D23 /* tchat-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327F11580FE3A00FA0D23 /* tchat-actif.png */; };
- D38327FA1580FE3A00FA0D23 /* tchat-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327F21580FE3A00FA0D23 /* tchat-selectionne.png */; };
- D3832800158100E400FA0D23 /* contacts-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FC158100E400FA0D23 /* contacts-over.png */; };
- D3832801158100E400FA0D23 /* history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FD158100E400FA0D23 /* history-over.png */; };
- D3832802158100E400FA0D23 /* settings-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FE158100E400FA0D23 /* settings-over.png */; };
- D3832803158100E400FA0D23 /* tchat-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FF158100E400FA0D23 /* tchat-over.png */; };
+ D38327F31580FE3A00FA0D23 /* contacts_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EB1580FE3A00FA0D23 /* contacts_default.png */; };
+ D38327F41580FE3A00FA0D23 /* contacts_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EC1580FE3A00FA0D23 /* contacts_selected.png */; };
+ D38327F51580FE3A00FA0D23 /* dialer_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327ED1580FE3A00FA0D23 /* dialer_default.png */; };
+ D38327F61580FE3A00FA0D23 /* dialer_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EE1580FE3A00FA0D23 /* dialer_over.png */; };
+ D38327F71580FE3A00FA0D23 /* settings_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327EF1580FE3A00FA0D23 /* settings_default.png */; };
+ D38327F81580FE3A00FA0D23 /* settings_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327F01580FE3A00FA0D23 /* settings_selected.png */; };
+ D38327F91580FE3A00FA0D23 /* chat_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327F11580FE3A00FA0D23 /* chat_default.png */; };
+ D38327FA1580FE3A00FA0D23 /* chat_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327F21580FE3A00FA0D23 /* chat_selected.png */; };
+ D3832800158100E400FA0D23 /* contacts_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FC158100E400FA0D23 /* contacts_over.png */; };
+ D3832801158100E400FA0D23 /* history_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FD158100E400FA0D23 /* history_over.png */; };
+ D3832802158100E400FA0D23 /* settings_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FE158100E400FA0D23 /* settings_over.png */; };
+ D3832803158100E400FA0D23 /* chat_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D38327FF158100E400FA0D23 /* chat_over.png */; };
D3A55FBC15877E5E003FD403 /* UIContactCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D3A55FBB15877E5E003FD403 /* UIContactCell.m */; };
D3A55FBD15877E5E003FD403 /* UIContactCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D3A55FBB15877E5E003FD403 /* UIContactCell.m */; };
D3A55FBF15877E69003FD403 /* UIContactCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3A55FBE15877E69003FD403 /* UIContactCell.xib */; };
D3A55FC015877E69003FD403 /* UIContactCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3A55FBE15877E69003FD403 /* UIContactCell.xib */; };
+ D3C2814B15A2D38D0098AA42 /* dialer_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3C2814A15A2D38D0098AA42 /* dialer_selected.png */; };
+ D3C2814C15A2D38D0098AA42 /* dialer_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3C2814A15A2D38D0098AA42 /* dialer_selected.png */; };
+ D3C2815215A2D64A0098AA42 /* numpad_star_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3C2815115A2D64A0098AA42 /* numpad_star_over.png */; };
+ D3C2815315A2D64A0098AA42 /* numpad_star_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3C2815115A2D64A0098AA42 /* numpad_star_over.png */; };
D3C714B3159DB84400705B8E /* toy-mono.wav in Resources */ = {isa = PBXBuildFile; fileRef = D3C714B2159DB84400705B8E /* toy-mono.wav */; };
D3C714B4159DB84400705B8E /* toy-mono.wav in Resources */ = {isa = PBXBuildFile; fileRef = D3C714B2159DB84400705B8E /* toy-mono.wav */; };
- D3D6A39E159B0EEF005F692C /* add_call_more_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39B159B0EEF005F692C /* add_call_more_default.png */; };
- D3D6A39F159B0EEF005F692C /* add_call_more_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39B159B0EEF005F692C /* add_call_more_default.png */; };
- D3D6A3A0159B0EEF005F692C /* add_call_more_disable.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39C159B0EEF005F692C /* add_call_more_disable.png */; };
- D3D6A3A1159B0EEF005F692C /* add_call_more_disable.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39C159B0EEF005F692C /* add_call_more_disable.png */; };
- D3D6A3A2159B0EEF005F692C /* add_call_more_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39D159B0EEF005F692C /* add_call_more_over.png */; };
- D3D6A3A3159B0EEF005F692C /* add_call_more_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39D159B0EEF005F692C /* add_call_more_over.png */; };
- D3D6A3AB159B0EFE005F692C /* cadenas-barre.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A5159B0EFE005F692C /* cadenas-barre.png */; };
- D3D6A3AC159B0EFE005F692C /* cadenas-barre.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A5159B0EFE005F692C /* cadenas-barre.png */; };
- D3D6A3AD159B0EFE005F692C /* cadenas-interrogation.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A6159B0EFE005F692C /* cadenas-interrogation.png */; };
- D3D6A3AE159B0EFE005F692C /* cadenas-interrogation.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A6159B0EFE005F692C /* cadenas-interrogation.png */; };
- D3D6A3AF159B0EFE005F692C /* cadenas.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A7159B0EFE005F692C /* cadenas.png */; };
- D3D6A3B0159B0EFE005F692C /* cadenas.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A7159B0EFE005F692C /* cadenas.png */; };
+ D3D6A39E159B0EEF005F692C /* add_call_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39B159B0EEF005F692C /* add_call_default.png */; };
+ D3D6A39F159B0EEF005F692C /* add_call_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39B159B0EEF005F692C /* add_call_default.png */; };
+ D3D6A3A0159B0EEF005F692C /* add_call_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39C159B0EEF005F692C /* add_call_disabled.png */; };
+ D3D6A3A1159B0EEF005F692C /* add_call_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39C159B0EEF005F692C /* add_call_disabled.png */; };
+ D3D6A3A2159B0EEF005F692C /* add_call_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39D159B0EEF005F692C /* add_call_over.png */; };
+ D3D6A3A3159B0EEF005F692C /* add_call_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A39D159B0EEF005F692C /* add_call_over.png */; };
+ D3D6A3AB159B0EFE005F692C /* security_ko.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A5159B0EFE005F692C /* security_ko.png */; };
+ D3D6A3AC159B0EFE005F692C /* security_ko.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A5159B0EFE005F692C /* security_ko.png */; };
+ D3D6A3AD159B0EFE005F692C /* security_pending.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A6159B0EFE005F692C /* security_pending.png */; };
+ D3D6A3AE159B0EFE005F692C /* security_pending.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A6159B0EFE005F692C /* security_pending.png */; };
+ D3D6A3AF159B0EFE005F692C /* security_ok.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A7159B0EFE005F692C /* security_ok.png */; };
+ D3D6A3B0159B0EFE005F692C /* security_ok.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A7159B0EFE005F692C /* security_ok.png */; };
D3D6A3B1159B0EFE005F692C /* options_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A8159B0EFE005F692C /* options_default.png */; };
D3D6A3B2159B0EFE005F692C /* options_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A8159B0EFE005F692C /* options_default.png */; };
D3D6A3B3159B0EFE005F692C /* options_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3A9159B0EFE005F692C /* options_disabled.png */; };
@@ -415,60 +407,60 @@
D3D6A3B6159B0EFE005F692C /* options_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3D6A3AA159B0EFE005F692C /* options_over.png */; };
D3EA53FD159850E80037DC6B /* LinphoneManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EA53FC159850E80037DC6B /* LinphoneManager.m */; };
D3EA53FE159850E80037DC6B /* LinphoneManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EA53FC159850E80037DC6B /* LinphoneManager.m */; };
- D3EA5403159852080037DC6B /* tchat-edit-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA53FF159852080037DC6B /* tchat-edit-actif.png */; };
- D3EA5404159852080037DC6B /* tchat-edit-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA53FF159852080037DC6B /* tchat-edit-actif.png */; };
- D3EA5405159852080037DC6B /* tchat-edit-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5400159852080037DC6B /* tchat-edit-over.png */; };
- D3EA5406159852080037DC6B /* tchat-edit-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5400159852080037DC6B /* tchat-edit-over.png */; };
- D3EA5407159852080037DC6B /* tchat-new-discussion-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5401159852080037DC6B /* tchat-new-discussion-actif.png */; };
- D3EA5408159852080037DC6B /* tchat-new-discussion-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5401159852080037DC6B /* tchat-new-discussion-actif.png */; };
- D3EA5409159852080037DC6B /* tchat-new-discussion-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5402159852080037DC6B /* tchat-new-discussion-over.png */; };
- D3EA540A159852080037DC6B /* tchat-new-discussion-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5402159852080037DC6B /* tchat-new-discussion-over.png */; };
+ D3EA5403159852080037DC6B /* chat_edit_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA53FF159852080037DC6B /* chat_edit_default.png */; };
+ D3EA5404159852080037DC6B /* chat_edit_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA53FF159852080037DC6B /* chat_edit_default.png */; };
+ D3EA5405159852080037DC6B /* chat_edit_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5400159852080037DC6B /* chat_edit_over.png */; };
+ D3EA5406159852080037DC6B /* chat_edit_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5400159852080037DC6B /* chat_edit_over.png */; };
+ D3EA5407159852080037DC6B /* chat_add_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5401159852080037DC6B /* chat_add_default.png */; };
+ D3EA5408159852080037DC6B /* chat_add_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5401159852080037DC6B /* chat_add_default.png */; };
+ D3EA5409159852080037DC6B /* chat_add_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5402159852080037DC6B /* chat_add_over.png */; };
+ D3EA540A159852080037DC6B /* chat_add_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5402159852080037DC6B /* chat_add_over.png */; };
D3EA540D1598528B0037DC6B /* ChatTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EA540C1598528B0037DC6B /* ChatTableViewController.m */; };
D3EA540E1598528B0037DC6B /* ChatTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EA540C1598528B0037DC6B /* ChatTableViewController.m */; };
D3EA5411159853750037DC6B /* UIChatCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EA5410159853750037DC6B /* UIChatCell.m */; };
D3EA5412159853750037DC6B /* UIChatCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EA5410159853750037DC6B /* UIChatCell.m */; };
D3EA5414159853C90037DC6B /* UIChatCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5413159853C90037DC6B /* UIChatCell.xib */; };
D3EA5415159853C90037DC6B /* UIChatCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5413159853C90037DC6B /* UIChatCell.xib */; };
- D3EA5418159858A80037DC6B /* croix-supprimer-ligne-liste-history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5416159858A80037DC6B /* croix-supprimer-ligne-liste-history-actif.png */; };
- D3EA5419159858A80037DC6B /* croix-supprimer-ligne-liste-history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5416159858A80037DC6B /* croix-supprimer-ligne-liste-history-actif.png */; };
- D3EA541A159858A80037DC6B /* croix-supprimer-ligne-liste-history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5417159858A80037DC6B /* croix-supprimer-ligne-liste-history-over.png */; };
- D3EA541B159858A80037DC6B /* croix-supprimer-ligne-liste-history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5417159858A80037DC6B /* croix-supprimer-ligne-liste-history-over.png */; };
- D3ED3E411585FB4A006C0DE4 /* fond-clavier.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E401585FB4A006C0DE4 /* fond-clavier.png */; };
- D3ED3E421585FB4A006C0DE4 /* fond-clavier.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E401585FB4A006C0DE4 /* fond-clavier.png */; };
- D3ED3E451585FB8C006C0DE4 /* champ-saisie-numero.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E441585FB8C006C0DE4 /* champ-saisie-numero.png */; };
- D3ED3E461585FB8C006C0DE4 /* champ-saisie-numero.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E441585FB8C006C0DE4 /* champ-saisie-numero.png */; };
- D3ED3E521585FFFD006C0DE4 /* barre-noire-top.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E511585FFFD006C0DE4 /* barre-noire-top.png */; };
- D3ED3E531585FFFD006C0DE4 /* barre-noire-top.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E511585FFFD006C0DE4 /* barre-noire-top.png */; };
- D3ED3E6A15861A53006C0DE4 /* add-contact-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6715861A53006C0DE4 /* add-contact-actif.png */; };
- D3ED3E6B15861A53006C0DE4 /* add-contact-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6715861A53006C0DE4 /* add-contact-actif.png */; };
- D3ED3E6C15861A53006C0DE4 /* add-contact-inactif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6815861A53006C0DE4 /* add-contact-inactif.png */; };
- D3ED3E6D15861A53006C0DE4 /* add-contact-inactif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6815861A53006C0DE4 /* add-contact-inactif.png */; };
- D3ED3E6E15861A53006C0DE4 /* add-contact-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6915861A53006C0DE4 /* add-contact-over.png */; };
- D3ED3E6F15861A53006C0DE4 /* add-contact-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6915861A53006C0DE4 /* add-contact-over.png */; };
- D3ED3E7215861ABD006C0DE4 /* appeler-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7015861ABD006C0DE4 /* appeler-actif.png */; };
- D3ED3E7315861ABD006C0DE4 /* appeler-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7015861ABD006C0DE4 /* appeler-actif.png */; };
- D3ED3E7415861ABD006C0DE4 /* appeler-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7115861ABD006C0DE4 /* appeler-over.png */; };
- D3ED3E7515861ABD006C0DE4 /* appeler-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7115861ABD006C0DE4 /* appeler-over.png */; };
- D3ED3E7815861B1B006C0DE4 /* backspace-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7615861B1B006C0DE4 /* backspace-actif.png */; };
- D3ED3E7915861B1B006C0DE4 /* backspace-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7615861B1B006C0DE4 /* backspace-actif.png */; };
- D3ED3E7A15861B1B006C0DE4 /* backspace-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7715861B1B006C0DE4 /* backspace-over.png */; };
- D3ED3E7B15861B1B006C0DE4 /* backspace-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7715861B1B006C0DE4 /* backspace-over.png */; };
+ D3EA5418159858A80037DC6B /* list_delete_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5416159858A80037DC6B /* list_delete_default.png */; };
+ D3EA5419159858A80037DC6B /* list_delete_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5416159858A80037DC6B /* list_delete_default.png */; };
+ D3EA541A159858A80037DC6B /* list_delete_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5417159858A80037DC6B /* list_delete_over.png */; };
+ D3EA541B159858A80037DC6B /* list_delete_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3EA5417159858A80037DC6B /* list_delete_over.png */; };
+ D3ED3E411585FB4A006C0DE4 /* numpad_background.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E401585FB4A006C0DE4 /* numpad_background.png */; };
+ D3ED3E421585FB4A006C0DE4 /* numpad_background.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E401585FB4A006C0DE4 /* numpad_background.png */; };
+ D3ED3E451585FB8C006C0DE4 /* dialer_address_background.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E441585FB8C006C0DE4 /* dialer_address_background.png */; };
+ D3ED3E461585FB8C006C0DE4 /* dialer_address_background.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E441585FB8C006C0DE4 /* dialer_address_background.png */; };
+ D3ED3E521585FFFD006C0DE4 /* statebar_background.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E511585FFFD006C0DE4 /* statebar_background.png */; };
+ D3ED3E531585FFFD006C0DE4 /* statebar_background.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E511585FFFD006C0DE4 /* statebar_background.png */; };
+ D3ED3E6A15861A53006C0DE4 /* add_contact_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6715861A53006C0DE4 /* add_contact_default.png */; };
+ D3ED3E6B15861A53006C0DE4 /* add_contact_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6715861A53006C0DE4 /* add_contact_default.png */; };
+ D3ED3E6C15861A53006C0DE4 /* add_contact_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6815861A53006C0DE4 /* add_contact_disabled.png */; };
+ D3ED3E6D15861A53006C0DE4 /* add_contact_disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6815861A53006C0DE4 /* add_contact_disabled.png */; };
+ D3ED3E6E15861A53006C0DE4 /* add_contact_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6915861A53006C0DE4 /* add_contact_over.png */; };
+ D3ED3E6F15861A53006C0DE4 /* add_contact_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E6915861A53006C0DE4 /* add_contact_over.png */; };
+ D3ED3E7215861ABD006C0DE4 /* call_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7015861ABD006C0DE4 /* call_default.png */; };
+ D3ED3E7315861ABD006C0DE4 /* call_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7015861ABD006C0DE4 /* call_default.png */; };
+ D3ED3E7415861ABD006C0DE4 /* call_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7115861ABD006C0DE4 /* call_over.png */; };
+ D3ED3E7515861ABD006C0DE4 /* call_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7115861ABD006C0DE4 /* call_over.png */; };
+ D3ED3E7815861B1B006C0DE4 /* backspace_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7615861B1B006C0DE4 /* backspace_default.png */; };
+ D3ED3E7915861B1B006C0DE4 /* backspace_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7615861B1B006C0DE4 /* backspace_default.png */; };
+ D3ED3E7A15861B1B006C0DE4 /* backspace_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7715861B1B006C0DE4 /* backspace_over.png */; };
+ D3ED3E7B15861B1B006C0DE4 /* backspace_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E7715861B1B006C0DE4 /* backspace_over.png */; };
D3ED3E871586291E006C0DE4 /* UIMainBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D3ED3E851586291B006C0DE4 /* UIMainBar.m */; };
D3ED3E881586291E006C0DE4 /* UIMainBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D3ED3E851586291B006C0DE4 /* UIMainBar.m */; };
D3ED3E891586291E006C0DE4 /* UIMainBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E861586291C006C0DE4 /* UIMainBar.xib */; };
D3ED3E8A1586291E006C0DE4 /* UIMainBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E861586291C006C0DE4 /* UIMainBar.xib */; };
- D3ED3E9815872EF1006C0DE4 /* all-call-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9215872EF1006C0DE4 /* all-call-actif.png */; };
- D3ED3E9915872EF1006C0DE4 /* all-call-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9215872EF1006C0DE4 /* all-call-actif.png */; };
- D3ED3E9A15872EF1006C0DE4 /* all-call-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9315872EF1006C0DE4 /* all-call-selectionne.png */; };
- D3ED3E9B15872EF1006C0DE4 /* all-call-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9315872EF1006C0DE4 /* all-call-selectionne.png */; };
- D3ED3E9C15872EF1006C0DE4 /* edit-history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9415872EF1006C0DE4 /* edit-history-actif.png */; };
- D3ED3E9D15872EF1006C0DE4 /* edit-history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9415872EF1006C0DE4 /* edit-history-actif.png */; };
- D3ED3E9E15872EF1006C0DE4 /* edit-history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9515872EF1006C0DE4 /* edit-history-over.png */; };
- D3ED3E9F15872EF1006C0DE4 /* edit-history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9515872EF1006C0DE4 /* edit-history-over.png */; };
- D3ED3EA015872EF1006C0DE4 /* missed-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9615872EF1006C0DE4 /* missed-actif.png */; };
- D3ED3EA115872EF1006C0DE4 /* missed-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9615872EF1006C0DE4 /* missed-actif.png */; };
- D3ED3EA215872EF1006C0DE4 /* missed-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9715872EF1006C0DE4 /* missed-selectionne.png */; };
- D3ED3EA315872EF1006C0DE4 /* missed-selectionne.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9715872EF1006C0DE4 /* missed-selectionne.png */; };
+ D3ED3E9815872EF1006C0DE4 /* history_all_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9215872EF1006C0DE4 /* history_all_default.png */; };
+ D3ED3E9915872EF1006C0DE4 /* history_all_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9215872EF1006C0DE4 /* history_all_default.png */; };
+ D3ED3E9A15872EF1006C0DE4 /* history_all_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9315872EF1006C0DE4 /* history_all_selected.png */; };
+ D3ED3E9B15872EF1006C0DE4 /* history_all_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9315872EF1006C0DE4 /* history_all_selected.png */; };
+ D3ED3E9C15872EF1006C0DE4 /* history_edit_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9415872EF1006C0DE4 /* history_edit_default.png */; };
+ D3ED3E9D15872EF1006C0DE4 /* history_edit_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9415872EF1006C0DE4 /* history_edit_default.png */; };
+ D3ED3E9E15872EF1006C0DE4 /* history_edit_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9515872EF1006C0DE4 /* history_edit_over.png */; };
+ D3ED3E9F15872EF1006C0DE4 /* history_edit_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9515872EF1006C0DE4 /* history_edit_over.png */; };
+ D3ED3EA015872EF1006C0DE4 /* history_missed_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9615872EF1006C0DE4 /* history_missed_default.png */; };
+ D3ED3EA115872EF1006C0DE4 /* history_missed_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9615872EF1006C0DE4 /* history_missed_default.png */; };
+ D3ED3EA215872EF1006C0DE4 /* history_missed_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9715872EF1006C0DE4 /* history_missed_selected.png */; };
+ D3ED3EA315872EF1006C0DE4 /* history_missed_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3E9715872EF1006C0DE4 /* history_missed_selected.png */; };
D3ED3EA71587334E006C0DE4 /* HistoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3ED3EA51587334C006C0DE4 /* HistoryTableViewController.m */; };
D3ED3EA81587334E006C0DE4 /* HistoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3ED3EA51587334C006C0DE4 /* HistoryTableViewController.m */; };
D3ED3EB3158738FB006C0DE4 /* HistoryViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3ED3EB2158738FA006C0DE4 /* HistoryViewController.xib */; };
@@ -481,120 +473,110 @@
D3F26BF215986B73005F9CAB /* IncomingCallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F26BEF15986B71005F9CAB /* IncomingCallViewController.m */; };
D3F26BF315986B73005F9CAB /* IncomingCallViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF015986B72005F9CAB /* IncomingCallViewController.xib */; };
D3F26BF415986B73005F9CAB /* IncomingCallViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF015986B72005F9CAB /* IncomingCallViewController.xib */; };
- D3F26BF715986DAD005F9CAB /* ok-edit-list-history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF515986DAD005F9CAB /* ok-edit-list-history-actif.png */; };
- D3F26BF815986DAD005F9CAB /* ok-edit-list-history-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF515986DAD005F9CAB /* ok-edit-list-history-actif.png */; };
- D3F26BF915986DAD005F9CAB /* ok-edit-list-history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF615986DAD005F9CAB /* ok-edit-list-history-over.png */; };
- D3F26BFA15986DAD005F9CAB /* ok-edit-list-history-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF615986DAD005F9CAB /* ok-edit-list-history-over.png */; };
- D3F26BFC15987083005F9CAB /* champ-titre-incoming.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BFB15987083005F9CAB /* champ-titre-incoming.png */; };
- D3F26BFD15987083005F9CAB /* champ-titre-incoming.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BFB15987083005F9CAB /* champ-titre-incoming.png */; };
- D3F34F301599B008005BE94F /* ombre-cotes-avatar.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F34F2F1599B008005BE94F /* ombre-cotes-avatar.png */; };
- D3F34F311599B008005BE94F /* ombre-cotes-avatar.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F34F2F1599B008005BE94F /* ombre-cotes-avatar.png */; };
+ D3F26BF715986DAD005F9CAB /* history_ok_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF515986DAD005F9CAB /* history_ok_default.png */; };
+ D3F26BF815986DAD005F9CAB /* history_ok_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF515986DAD005F9CAB /* history_ok_default.png */; };
+ D3F26BF915986DAD005F9CAB /* history_ok_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF615986DAD005F9CAB /* history_ok_over.png */; };
+ D3F26BFA15986DAD005F9CAB /* history_ok_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BF615986DAD005F9CAB /* history_ok_over.png */; };
+ D3F26BFC15987083005F9CAB /* header_incoming.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BFB15987083005F9CAB /* header_incoming.png */; };
+ D3F26BFD15987083005F9CAB /* header_incoming.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F26BFB15987083005F9CAB /* header_incoming.png */; };
+ D3F34F301599B008005BE94F /* avatar_shadow.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F34F2F1599B008005BE94F /* avatar_shadow.png */; };
+ D3F34F311599B008005BE94F /* avatar_shadow.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F34F2F1599B008005BE94F /* avatar_shadow.png */; };
D3F34F351599C354005BE94F /* UIModalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F34F341599C354005BE94F /* UIModalViewController.m */; };
D3F34F361599C354005BE94F /* UIModalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F34F341599C354005BE94F /* UIModalViewController.m */; };
D3F83EEC1582021700336684 /* InCallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F83EEA1582021700336684 /* InCallViewController.m */; };
D3F83EED1582021700336684 /* InCallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F83EEA1582021700336684 /* InCallViewController.m */; };
D3F83EEE1582021700336684 /* InCallViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EEB1582021700336684 /* InCallViewController.xib */; };
D3F83EEF1582021700336684 /* InCallViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EEB1582021700336684 /* InCallViewController.xib */; };
- D3F83F08158205A100336684 /* dialer-meteo-sortir-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF2158205A100336684 /* dialer-meteo-sortir-actif.png */; };
- D3F83F09158205A100336684 /* dialer-meteo-sortir-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF2158205A100336684 /* dialer-meteo-sortir-actif.png */; };
- D3F83F0A158205A100336684 /* dialer-meteo-sortir-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF3158205A100336684 /* dialer-meteo-sortir-over.png */; };
- D3F83F0B158205A100336684 /* dialer-meteo-sortir-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF3158205A100336684 /* dialer-meteo-sortir-over.png */; };
- D3F83F0C158205A100336684 /* micro-OFF-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF4158205A100336684 /* micro-OFF-actif.png */; };
- D3F83F0D158205A100336684 /* micro-OFF-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF4158205A100336684 /* micro-OFF-actif.png */; };
- D3F83F0E158205A100336684 /* micro-OFF-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF5158205A100336684 /* micro-OFF-over.png */; };
- D3F83F0F158205A100336684 /* micro-OFF-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF5158205A100336684 /* micro-OFF-over.png */; };
- D3F83F10158205A100336684 /* micro-ON-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF6158205A100336684 /* micro-ON-actif.png */; };
- D3F83F11158205A100336684 /* micro-ON-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF6158205A100336684 /* micro-ON-actif.png */; };
- D3F83F12158205A100336684 /* micro-ON-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF7158205A100336684 /* micro-ON-over.png */; };
- D3F83F13158205A100336684 /* micro-ON-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF7158205A100336684 /* micro-ON-over.png */; };
- D3F83F14158205A100336684 /* pause-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF8158205A100336684 /* pause-actif.png */; };
- D3F83F15158205A100336684 /* pause-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF8158205A100336684 /* pause-actif.png */; };
- D3F83F16158205A100336684 /* pause-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF9158205A100336684 /* pause-over.png */; };
- D3F83F17158205A100336684 /* pause-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF9158205A100336684 /* pause-over.png */; };
- D3F83F18158205A100336684 /* raccrocher-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFA158205A100336684 /* raccrocher-actif.png */; };
- D3F83F19158205A100336684 /* raccrocher-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFA158205A100336684 /* raccrocher-actif.png */; };
- D3F83F1A158205A100336684 /* raccrocher-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFB158205A100336684 /* raccrocher-over.png */; };
- D3F83F1B158205A100336684 /* raccrocher-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFB158205A100336684 /* raccrocher-over.png */; };
- D3F83F1C158205A100336684 /* speacker-OFF-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFC158205A100336684 /* speacker-OFF-actif.png */; };
- D3F83F1D158205A100336684 /* speacker-OFF-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFC158205A100336684 /* speacker-OFF-actif.png */; };
- D3F83F1E158205A100336684 /* speacker-OFF-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFD158205A100336684 /* speacker-OFF-over.png */; };
- D3F83F1F158205A100336684 /* speacker-OFF-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFD158205A100336684 /* speacker-OFF-over.png */; };
- D3F83F20158205A100336684 /* speacker-ON-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFE158205A100336684 /* speacker-ON-actif.png */; };
- D3F83F21158205A100336684 /* speacker-ON-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFE158205A100336684 /* speacker-ON-actif.png */; };
- D3F83F22158205A100336684 /* speacker-ON-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFF158205A100336684 /* speacker-ON-over.png */; };
- D3F83F23158205A100336684 /* speacker-ON-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFF158205A100336684 /* speacker-ON-over.png */; };
- D3F83F24158205A100336684 /* video-OFF-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F00158205A100336684 /* video-OFF-actif.png */; };
- D3F83F25158205A100336684 /* video-OFF-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F00158205A100336684 /* video-OFF-actif.png */; };
- D3F83F26158205A100336684 /* video-OFF-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F01158205A100336684 /* video-OFF-over.png */; };
- D3F83F27158205A100336684 /* video-OFF-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F01158205A100336684 /* video-OFF-over.png */; };
- D3F83F28158205A100336684 /* video-ON-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F02158205A100336684 /* video-ON-actif.png */; };
- D3F83F29158205A100336684 /* video-ON-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F02158205A100336684 /* video-ON-actif.png */; };
- D3F83F2A158205A100336684 /* video-ON-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F03158205A100336684 /* video-ON-over.png */; };
- D3F83F2B158205A100336684 /* video-ON-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F03158205A100336684 /* video-ON-over.png */; };
- D3F83F441582223B00336684 /* 0-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2C1582223B00336684 /* 0-actif.png */; };
- D3F83F451582223B00336684 /* 0-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2C1582223B00336684 /* 0-actif.png */; };
- D3F83F461582223B00336684 /* 0-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2D1582223B00336684 /* 0-over.png */; };
- D3F83F471582223B00336684 /* 0-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2D1582223B00336684 /* 0-over.png */; };
- D3F83F481582223B00336684 /* 1-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2E1582223B00336684 /* 1-actif.png */; };
- D3F83F491582223B00336684 /* 1-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2E1582223B00336684 /* 1-actif.png */; };
- D3F83F4A1582223B00336684 /* 1-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2F1582223B00336684 /* 1-over.png */; };
- D3F83F4B1582223B00336684 /* 1-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2F1582223B00336684 /* 1-over.png */; };
- D3F83F4C1582223B00336684 /* 2-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F301582223B00336684 /* 2-actif.png */; };
- D3F83F4D1582223B00336684 /* 2-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F301582223B00336684 /* 2-actif.png */; };
- D3F83F4E1582223B00336684 /* 2-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F311582223B00336684 /* 2-over.png */; };
- D3F83F4F1582223B00336684 /* 2-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F311582223B00336684 /* 2-over.png */; };
- D3F83F501582223B00336684 /* 3-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F321582223B00336684 /* 3-actif.png */; };
- D3F83F511582223B00336684 /* 3-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F321582223B00336684 /* 3-actif.png */; };
- D3F83F521582223B00336684 /* 3-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F331582223B00336684 /* 3-over.png */; };
- D3F83F531582223B00336684 /* 3-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F331582223B00336684 /* 3-over.png */; };
- D3F83F541582223B00336684 /* 4-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F341582223B00336684 /* 4-actif.png */; };
- D3F83F551582223B00336684 /* 4-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F341582223B00336684 /* 4-actif.png */; };
- D3F83F561582223B00336684 /* 4-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F351582223B00336684 /* 4-over.png */; };
- D3F83F571582223B00336684 /* 4-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F351582223B00336684 /* 4-over.png */; };
- D3F83F581582223B00336684 /* 5-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F361582223B00336684 /* 5-actif.png */; };
- D3F83F591582223B00336684 /* 5-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F361582223B00336684 /* 5-actif.png */; };
- D3F83F5A1582223B00336684 /* 5-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F371582223B00336684 /* 5-over.png */; };
- D3F83F5B1582223B00336684 /* 5-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F371582223B00336684 /* 5-over.png */; };
- D3F83F5C1582223B00336684 /* 6-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F381582223B00336684 /* 6-actif.png */; };
- D3F83F5D1582223B00336684 /* 6-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F381582223B00336684 /* 6-actif.png */; };
- D3F83F5E1582223B00336684 /* 6-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F391582223B00336684 /* 6-over.png */; };
- D3F83F5F1582223B00336684 /* 6-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F391582223B00336684 /* 6-over.png */; };
- D3F83F601582223B00336684 /* 7-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3A1582223B00336684 /* 7-actif.png */; };
- D3F83F611582223B00336684 /* 7-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3A1582223B00336684 /* 7-actif.png */; };
- D3F83F621582223B00336684 /* 7-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3B1582223B00336684 /* 7-over.png */; };
- D3F83F631582223B00336684 /* 7-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3B1582223B00336684 /* 7-over.png */; };
- D3F83F641582223B00336684 /* 8-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3C1582223B00336684 /* 8-actif.png */; };
- D3F83F651582223B00336684 /* 8-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3C1582223B00336684 /* 8-actif.png */; };
- D3F83F661582223B00336684 /* 8-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3D1582223B00336684 /* 8-over.png */; };
- D3F83F671582223B00336684 /* 8-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3D1582223B00336684 /* 8-over.png */; };
- D3F83F681582223B00336684 /* 9-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3E1582223B00336684 /* 9-actif.png */; };
- D3F83F691582223B00336684 /* 9-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3E1582223B00336684 /* 9-actif.png */; };
- D3F83F6A1582223B00336684 /* 9-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3F1582223B00336684 /* 9-over.png */; };
- D3F83F6B1582223B00336684 /* 9-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3F1582223B00336684 /* 9-over.png */; };
- D3F83F6C1582223B00336684 /* diese-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F401582223B00336684 /* diese-actif.png */; };
- D3F83F6D1582223B00336684 /* diese-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F401582223B00336684 /* diese-actif.png */; };
- D3F83F6E1582223B00336684 /* diese-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F411582223B00336684 /* diese-over.png */; };
- D3F83F6F1582223B00336684 /* diese-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F411582223B00336684 /* diese-over.png */; };
- D3F83F701582223B00336684 /* etoile-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F421582223B00336684 /* etoile-actif.png */; };
- D3F83F711582223B00336684 /* etoile-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F421582223B00336684 /* etoile-actif.png */; };
- D3F83F721582223B00336684 /* etoile-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F431582223B00336684 /* etoile-over.png */; };
- D3F83F731582223B00336684 /* etoile-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F431582223B00336684 /* etoile-over.png */; };
- D3F83F781582253100336684 /* decrocher-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F741582253100336684 /* decrocher-actif.png */; };
- D3F83F791582253100336684 /* decrocher-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F741582253100336684 /* decrocher-actif.png */; };
- D3F83F7A1582253100336684 /* decrocher-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F751582253100336684 /* decrocher-over.png */; };
- D3F83F7B1582253100336684 /* decrocher-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F751582253100336684 /* decrocher-over.png */; };
- D3F83F7C1582253100336684 /* refuser-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F761582253100336684 /* refuser-actif.png */; };
- D3F83F7D1582253100336684 /* refuser-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F761582253100336684 /* refuser-actif.png */; };
- D3F83F7E1582253100336684 /* refuser-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F771582253100336684 /* refuser-over.png */; };
- D3F83F7F1582253100336684 /* refuser-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F771582253100336684 /* refuser-over.png */; };
- D3F83F841582278D00336684 /* cancel-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F801582278D00336684 /* cancel-actif.png */; };
- D3F83F851582278D00336684 /* cancel-actif.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F801582278D00336684 /* cancel-actif.png */; };
- D3F83F861582278D00336684 /* cancel-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F811582278D00336684 /* cancel-over.png */; };
- D3F83F871582278D00336684 /* cancel-over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F811582278D00336684 /* cancel-over.png */; };
- D3F83F881582278D00336684 /* contact-actif-add-call.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F821582278D00336684 /* contact-actif-add-call.png */; };
- D3F83F891582278D00336684 /* contact-actif-add-call.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F821582278D00336684 /* contact-actif-add-call.png */; };
- D3F83F8A1582278D00336684 /* contact-over-add-call.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F831582278D00336684 /* contact-over-add-call.png */; };
- D3F83F8B1582278D00336684 /* contact-over-add-call.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F831582278D00336684 /* contact-over-add-call.png */; };
+ D3F83F0C158205A100336684 /* micro_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF4158205A100336684 /* micro_off_default.png */; };
+ D3F83F0D158205A100336684 /* micro_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF4158205A100336684 /* micro_off_default.png */; };
+ D3F83F0E158205A100336684 /* micro_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF5158205A100336684 /* micro_off_over.png */; };
+ D3F83F0F158205A100336684 /* micro_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF5158205A100336684 /* micro_off_over.png */; };
+ D3F83F10158205A100336684 /* micro_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF6158205A100336684 /* micro_on_default.png */; };
+ D3F83F11158205A100336684 /* micro_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF6158205A100336684 /* micro_on_default.png */; };
+ D3F83F12158205A100336684 /* micro_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF7158205A100336684 /* micro_on_over.png */; };
+ D3F83F13158205A100336684 /* micro_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF7158205A100336684 /* micro_on_over.png */; };
+ D3F83F14158205A100336684 /* pause_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF8158205A100336684 /* pause_off_default.png */; };
+ D3F83F15158205A100336684 /* pause_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF8158205A100336684 /* pause_off_default.png */; };
+ D3F83F16158205A100336684 /* pause_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF9158205A100336684 /* pause_off_over.png */; };
+ D3F83F17158205A100336684 /* pause_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EF9158205A100336684 /* pause_off_over.png */; };
+ D3F83F18158205A100336684 /* hangup_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFA158205A100336684 /* hangup_default.png */; };
+ D3F83F19158205A100336684 /* hangup_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFA158205A100336684 /* hangup_default.png */; };
+ D3F83F1A158205A100336684 /* hangup_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFB158205A100336684 /* hangup_over.png */; };
+ D3F83F1B158205A100336684 /* hangup_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFB158205A100336684 /* hangup_over.png */; };
+ D3F83F1C158205A100336684 /* speaker_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFC158205A100336684 /* speaker_off_default.png */; };
+ D3F83F1D158205A100336684 /* speaker_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFC158205A100336684 /* speaker_off_default.png */; };
+ D3F83F1E158205A100336684 /* speaker_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFD158205A100336684 /* speaker_off_over.png */; };
+ D3F83F1F158205A100336684 /* speaker_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFD158205A100336684 /* speaker_off_over.png */; };
+ D3F83F20158205A100336684 /* speaker_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFE158205A100336684 /* speaker_on_default.png */; };
+ D3F83F21158205A100336684 /* speaker_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFE158205A100336684 /* speaker_on_default.png */; };
+ D3F83F22158205A100336684 /* speaker_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFF158205A100336684 /* speaker_on_over.png */; };
+ D3F83F23158205A100336684 /* speaker_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83EFF158205A100336684 /* speaker_on_over.png */; };
+ D3F83F24158205A100336684 /* video_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F00158205A100336684 /* video_off_default.png */; };
+ D3F83F25158205A100336684 /* video_off_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F00158205A100336684 /* video_off_default.png */; };
+ D3F83F26158205A100336684 /* video_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F01158205A100336684 /* video_off_over.png */; };
+ D3F83F27158205A100336684 /* video_off_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F01158205A100336684 /* video_off_over.png */; };
+ D3F83F28158205A100336684 /* video_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F02158205A100336684 /* video_on_default.png */; };
+ D3F83F29158205A100336684 /* video_on_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F02158205A100336684 /* video_on_default.png */; };
+ D3F83F2A158205A100336684 /* video_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F03158205A100336684 /* video_on_over.png */; };
+ D3F83F2B158205A100336684 /* video_on_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F03158205A100336684 /* video_on_over.png */; };
+ D3F83F441582223B00336684 /* numpad_zero_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2C1582223B00336684 /* numpad_zero_default.png */; };
+ D3F83F451582223B00336684 /* numpad_zero_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2C1582223B00336684 /* numpad_zero_default.png */; };
+ D3F83F461582223B00336684 /* numpad_zero_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2D1582223B00336684 /* numpad_zero_over.png */; };
+ D3F83F471582223B00336684 /* numpad_zero_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2D1582223B00336684 /* numpad_zero_over.png */; };
+ D3F83F481582223B00336684 /* numpad_one_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2E1582223B00336684 /* numpad_one_default.png */; };
+ D3F83F491582223B00336684 /* numpad_one_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2E1582223B00336684 /* numpad_one_default.png */; };
+ D3F83F4A1582223B00336684 /* numpad_one_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2F1582223B00336684 /* numpad_one_over.png */; };
+ D3F83F4B1582223B00336684 /* numpad_one_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F2F1582223B00336684 /* numpad_one_over.png */; };
+ D3F83F4C1582223B00336684 /* numpad_two_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F301582223B00336684 /* numpad_two_default.png */; };
+ D3F83F4D1582223B00336684 /* numpad_two_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F301582223B00336684 /* numpad_two_default.png */; };
+ D3F83F4E1582223B00336684 /* numpad_two_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F311582223B00336684 /* numpad_two_over.png */; };
+ D3F83F4F1582223B00336684 /* numpad_two_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F311582223B00336684 /* numpad_two_over.png */; };
+ D3F83F501582223B00336684 /* numpad_three_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F321582223B00336684 /* numpad_three_default.png */; };
+ D3F83F511582223B00336684 /* numpad_three_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F321582223B00336684 /* numpad_three_default.png */; };
+ D3F83F521582223B00336684 /* numpad_three_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F331582223B00336684 /* numpad_three_over.png */; };
+ D3F83F531582223B00336684 /* numpad_three_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F331582223B00336684 /* numpad_three_over.png */; };
+ D3F83F541582223B00336684 /* numpad_four_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F341582223B00336684 /* numpad_four_default.png */; };
+ D3F83F551582223B00336684 /* numpad_four_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F341582223B00336684 /* numpad_four_default.png */; };
+ D3F83F561582223B00336684 /* numpad_four_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F351582223B00336684 /* numpad_four_over.png */; };
+ D3F83F571582223B00336684 /* numpad_four_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F351582223B00336684 /* numpad_four_over.png */; };
+ D3F83F581582223B00336684 /* numpad_five_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F361582223B00336684 /* numpad_five_default.png */; };
+ D3F83F591582223B00336684 /* numpad_five_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F361582223B00336684 /* numpad_five_default.png */; };
+ D3F83F5A1582223B00336684 /* numpad_five_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F371582223B00336684 /* numpad_five_over.png */; };
+ D3F83F5B1582223B00336684 /* numpad_five_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F371582223B00336684 /* numpad_five_over.png */; };
+ D3F83F5C1582223B00336684 /* numpad_six_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F381582223B00336684 /* numpad_six_default.png */; };
+ D3F83F5D1582223B00336684 /* numpad_six_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F381582223B00336684 /* numpad_six_default.png */; };
+ D3F83F5E1582223B00336684 /* numpad_six_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F391582223B00336684 /* numpad_six_over.png */; };
+ D3F83F5F1582223B00336684 /* numpad_six_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F391582223B00336684 /* numpad_six_over.png */; };
+ D3F83F601582223B00336684 /* numpad_seven_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3A1582223B00336684 /* numpad_seven_default.png */; };
+ D3F83F611582223B00336684 /* numpad_seven_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3A1582223B00336684 /* numpad_seven_default.png */; };
+ D3F83F621582223B00336684 /* numpad_seven_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3B1582223B00336684 /* numpad_seven_over.png */; };
+ D3F83F631582223B00336684 /* numpad_seven_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3B1582223B00336684 /* numpad_seven_over.png */; };
+ D3F83F641582223B00336684 /* numpad_eight_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3C1582223B00336684 /* numpad_eight_default.png */; };
+ D3F83F651582223B00336684 /* numpad_eight_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3C1582223B00336684 /* numpad_eight_default.png */; };
+ D3F83F661582223B00336684 /* numpad_eight_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3D1582223B00336684 /* numpad_eight_over.png */; };
+ D3F83F671582223B00336684 /* numpad_eight_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3D1582223B00336684 /* numpad_eight_over.png */; };
+ D3F83F681582223B00336684 /* numpad_nine_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3E1582223B00336684 /* numpad_nine_default.png */; };
+ D3F83F691582223B00336684 /* numpad_nine_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3E1582223B00336684 /* numpad_nine_default.png */; };
+ D3F83F6A1582223B00336684 /* numpad_nine_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3F1582223B00336684 /* numpad_nine_over.png */; };
+ D3F83F6B1582223B00336684 /* numpad_nine_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F3F1582223B00336684 /* numpad_nine_over.png */; };
+ D3F83F6C1582223B00336684 /* numpad_sharp_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F401582223B00336684 /* numpad_sharp_default.png */; };
+ D3F83F6D1582223B00336684 /* numpad_sharp_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F401582223B00336684 /* numpad_sharp_default.png */; };
+ D3F83F6E1582223B00336684 /* numpad_sharp_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F411582223B00336684 /* numpad_sharp_over.png */; };
+ D3F83F6F1582223B00336684 /* numpad_sharp_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F411582223B00336684 /* numpad_sharp_over.png */; };
+ D3F83F721582223B00336684 /* numpad_star_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F431582223B00336684 /* numpad_star_default.png */; };
+ D3F83F731582223B00336684 /* numpad_star_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F431582223B00336684 /* numpad_star_default.png */; };
+ D3F83F781582253100336684 /* accept_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F741582253100336684 /* accept_default.png */; };
+ D3F83F791582253100336684 /* accept_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F741582253100336684 /* accept_default.png */; };
+ D3F83F7A1582253100336684 /* accept_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F751582253100336684 /* accept_over.png */; };
+ D3F83F7B1582253100336684 /* accept_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F751582253100336684 /* accept_over.png */; };
+ D3F83F7C1582253100336684 /* decline_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F761582253100336684 /* decline_default.png */; };
+ D3F83F7D1582253100336684 /* decline_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F761582253100336684 /* decline_default.png */; };
+ D3F83F7E1582253100336684 /* decline_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F771582253100336684 /* decline_over.png */; };
+ D3F83F7F1582253100336684 /* decline_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F771582253100336684 /* decline_over.png */; };
+ D3F83F841582278D00336684 /* cancel_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F801582278D00336684 /* cancel_default.png */; };
+ D3F83F851582278D00336684 /* cancel_default.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F801582278D00336684 /* cancel_default.png */; };
+ D3F83F861582278D00336684 /* cancel_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F811582278D00336684 /* cancel_over.png */; };
+ D3F83F871582278D00336684 /* cancel_over.png in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F811582278D00336684 /* cancel_over.png */; };
D3F83F8E15822ABE00336684 /* PhoneMainView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F83F8D15822ABD00336684 /* PhoneMainView.m */; };
D3F83F8F15822ABE00336684 /* PhoneMainView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F83F8D15822ABD00336684 /* PhoneMainView.m */; };
D3F83F9215824D3600336684 /* LinphoneApp.xib in Resources */ = {isa = PBXBuildFile; fileRef = D3F83F9115824D3500336684 /* LinphoneApp.xib */; };
@@ -630,7 +612,7 @@
1D3623250D0F684500981E51 /* LinphoneAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LinphoneAppDelegate.m; sourceTree = ""; };
1D6058910D05DD3D006BFB54 /* linphone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = linphone.app; sourceTree = BUILT_PRODUCTS_DIR; };
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 22058C70116E305000B08DDD /* icone-linphone-57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "icone-linphone-57.png"; path = "Resources/icone-linphone-57.png"; sourceTree = ""; };
+ 22058C70116E305000B08DDD /* linphone_icon_57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = linphone_icon_57.png; path = Resources/linphone_icon_57.png; sourceTree = ""; };
220FAC79107654FC0068D98F /* eX_call.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eX_call.h; sourceTree = ""; };
220FAC7A107654FC0068D98F /* eX_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eX_message.h; sourceTree = ""; };
220FAC7B107654FC0068D98F /* eX_options.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eX_options.h; sourceTree = ""; };
@@ -760,8 +742,6 @@
2218A92212FBE1340088A667 /* FirstLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstLoginViewController.h; sourceTree = ""; };
2218A92312FBE1340088A667 /* FirstLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstLoginViewController.m; sourceTree = ""; };
2218A92412FBE1340088A667 /* FirstLoginViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FirstLoginViewController.xib; sourceTree = ""; };
- 22226C11118197C0000CA27B /* startcall-green.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "startcall-green.png"; path = "liblinphone-sdk/apple-darwin/share/pixmaps/linphone/startcall-green.png"; sourceTree = ""; };
- 22226C13118197EC000CA27B /* stopcall-red.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "stopcall-red.png"; path = "liblinphone-sdk/apple-darwin/share/pixmaps/linphone/stopcall-red.png"; sourceTree = ""; };
22276E8013C73D3100210156 /* libavcodec.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libavcodec.a; path = "liblinphone-sdk/apple-darwin/lib/libavcodec.a"; sourceTree = ""; };
22276E8113C73D3100210156 /* libavutil.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libavutil.a; path = "liblinphone-sdk/apple-darwin/lib/libavutil.a"; sourceTree = ""; };
22276E8213C73D3100210156 /* libswscale.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libswscale.a; path = "liblinphone-sdk/apple-darwin/lib/libswscale.a"; sourceTree = ""; };
@@ -770,8 +750,6 @@
223148E31178A08200637D6A /* libilbc.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libilbc.a; path = "liblinphone-sdk/apple-darwin/lib/libilbc.a"; sourceTree = ""; };
223148E51178A09900637D6A /* libmsilbc.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmsilbc.a; path = "liblinphone-sdk/apple-darwin/lib/mediastreamer/plugins/libmsilbc.a"; sourceTree = ""; };
2237D4081084D7A9001383EE /* oldphone-mono.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = "oldphone-mono.wav"; path = "liblinphone-sdk/apple-darwin/share/sounds/linphone/rings/oldphone-mono.wav"; sourceTree = ""; };
- 223963151393CFAE001DE689 /* FastAddressBook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastAddressBook.h; sourceTree = ""; };
- 223963161393CFAF001DE689 /* FastAddressBook.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastAddressBook.m; sourceTree = ""; };
2242E312125235120061DDCE /* oldphone-mono-30s.caf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "oldphone-mono-30s.caf"; path = "liblinphone-sdk/apple-darwin/share/sounds/linphone/rings/oldphone-mono-30s.caf"; sourceTree = ""; };
224567C1107B968500F10948 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
2248E90C12F7E4CF00220D9C /* UIDigitButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIDigitButton.h; sourceTree = ""; };
@@ -793,7 +771,6 @@
22744056106F9BC9006EC466 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
2274550710700509006EC466 /* linphonerc */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = linphonerc; sourceTree = ""; };
228697C311AC29B800E9E0CA /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
- 228B19AE130290C500F154D3 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = text; name = iTunesArtwork; path = Resources/iTunesArtwork; sourceTree = ""; };
22968A5D12F875C600588287 /* UISpeakerButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UISpeakerButton.h; sourceTree = ""; };
22968A5E12F875C600588287 /* UISpeakerButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UISpeakerButton.m; sourceTree = ""; };
22AA8AFB13D7125500B30535 /* libx264.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libx264.a; path = "liblinphone-sdk/apple-darwin/lib/libx264.a"; sourceTree = ""; };
@@ -899,7 +876,6 @@
340751E4150E4D0200B89C47 /* CallDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CallDelegate.h; sourceTree = ""; };
340751E5150F38FC00B89C47 /* UIVideoButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIVideoButton.h; sourceTree = ""; };
340751E6150F38FD00B89C47 /* UIVideoButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIVideoButton.m; sourceTree = ""; };
- 3418843614C58BB100EA48C7 /* nowebcamCIF.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; name = nowebcamCIF.jpg; path = submodules/linphone/mediastreamer2/src/nowebcamCIF.jpg; sourceTree = ""; };
341FCA8D149798210084BC26 /* linphonerc-ipad */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "linphonerc-ipad"; sourceTree = ""; };
34216F3E1547EBCD00EA9777 /* VideoZoomHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VideoZoomHandler.h; path = LinphoneUI/VideoZoomHandler.h; sourceTree = ""; };
34216F3F1547EBCD00EA9777 /* VideoZoomHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VideoZoomHandler.m; path = LinphoneUI/VideoZoomHandler.m; sourceTree = ""; };
@@ -908,9 +884,7 @@
344ABDE71484E723007420B6 /* libzrtpcpp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libzrtpcpp.a; path = "liblinphone-sdk/apple-darwin/lib/libzrtpcpp.a"; sourceTree = ""; };
344ABDEF14850AE9007420B6 /* libc++.1.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.1.dylib"; path = "usr/lib/libc++.1.dylib"; sourceTree = SDKROOT; };
344ABDF014850AE9007420B6 /* libstdc++.6.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.6.dylib"; path = "usr/lib/libstdc++.6.dylib"; sourceTree = SDKROOT; };
- 34A6ECEA14CF13CB00460C04 /* icone-linphone-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "icone-linphone-72.png"; path = "Resources/icone-linphone-72.png"; sourceTree = ""; };
- 34C7646A14CD5585008E9607 /* dialer-orange.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "dialer-orange.png"; path = "submodules/linphone/pixmaps/dialer-orange.png"; sourceTree = ""; };
- 34C7646B14CD5585008E9607 /* history-orange.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "history-orange.png"; path = "submodules/linphone/pixmaps/history-orange.png"; sourceTree = ""; };
+ 34A6ECEA14CF13CB00460C04 /* linphone_icon_72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = linphone_icon_72.png; path = Resources/linphone_icon_72.png; sourceTree = ""; };
70571E1913FABCB000CDD3C2 /* rootca.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = rootca.pem; path = Resources/rootca.pem; sourceTree = ""; };
7066FC0B13E830E400EFC6DC /* libvpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libvpx.a; path = "liblinphone-sdk/apple-darwin/lib/libvpx.a"; sourceTree = ""; };
70E542F213E147E3002BA2C0 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
@@ -918,31 +892,28 @@
8D1107310486CEB800E47090 /* linphone-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "linphone-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = ""; };
D31AAF5C159B3919002C6B02 /* InCallTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InCallTableViewController.h; sourceTree = ""; };
D31AAF5D159B3919002C6B02 /* InCallTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InCallTableViewController.m; sourceTree = ""; };
- D31AAF61159B5B6E002C6B02 /* start-conference-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "start-conference-actif.png"; path = "Resources/start-conference-actif.png"; sourceTree = ""; };
- D31AAF62159B5B6E002C6B02 /* start-conference-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "start-conference-over.png"; path = "Resources/start-conference-over.png"; sourceTree = ""; };
- D31AAF67159B5C68002C6B02 /* finir-conference-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "finir-conference-actif.png"; path = "Resources/finir-conference-actif.png"; sourceTree = ""; };
- D31AAF68159B5C68002C6B02 /* finir-conference-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "finir-conference-over.png"; path = "Resources/finir-conference-over.png"; sourceTree = ""; };
- D31AAF6D159B65E1002C6B02 /* ring-champ-numero-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ring-champ-numero-actif.png"; path = "Resources/ring-champ-numero-actif.png"; sourceTree = ""; };
+ D31AAF61159B5B6E002C6B02 /* conference_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = conference_default.png; path = Resources/conference_default.png; sourceTree = ""; };
+ D31AAF62159B5B6E002C6B02 /* conference_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = conference_over.png; path = Resources/conference_over.png; sourceTree = ""; };
+ D31AAF6D159B65E1002C6B02 /* call_state_ringing_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_state_ringing_default.png; path = Resources/call_state_ringing_default.png; sourceTree = ""; };
D31AC4AF158A29C600C2638B /* UIHistoryCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UIHistoryCell.xib; sourceTree = ""; };
D31B4B1E159876C0002E6C72 /* UICompositeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICompositeViewController.h; sourceTree = ""; };
D31B4B1F159876C0002E6C72 /* UICompositeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICompositeViewController.m; sourceTree = ""; };
D31B4B20159876C0002E6C72 /* UICompositeViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UICompositeViewController.xib; sourceTree = ""; };
- D31B4B261598A390002E6C72 /* avatar-inconnu.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "avatar-inconnu.png"; path = "Resources/avatar-inconnu.png"; sourceTree = ""; };
- D31B4B271598A390002E6C72 /* avatar-small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "avatar-small.png"; path = "Resources/avatar-small.png"; sourceTree = ""; };
- D31C9C89158A179A00756B45 /* fond-detail-numero.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "fond-detail-numero.png"; path = "Resources/fond-detail-numero.png"; sourceTree = ""; };
- D31C9C8D158A1C1000756B45 /* appel-entrant.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "appel-entrant.png"; path = "Resources/appel-entrant.png"; sourceTree = ""; };
- D31C9C8E158A1C1000756B45 /* appel-manque.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "appel-manque.png"; path = "Resources/appel-manque.png"; sourceTree = ""; };
- D31C9C8F158A1C1000756B45 /* appel-sortant.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "appel-sortant.png"; path = "Resources/appel-sortant.png"; sourceTree = ""; };
+ D31B4B261598A390002E6C72 /* avatar_unknown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = avatar_unknown.png; path = Resources/avatar_unknown.png; sourceTree = ""; };
+ D31B4B271598A390002E6C72 /* avatar_unknown_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = avatar_unknown_small.png; path = Resources/avatar_unknown_small.png; sourceTree = ""; };
+ D31C9C8D158A1C1000756B45 /* call_status_incoming.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_status_incoming.png; path = Resources/call_status_incoming.png; sourceTree = ""; };
+ D31C9C8E158A1C1000756B45 /* call_status_missed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_status_missed.png; path = Resources/call_status_missed.png; sourceTree = ""; };
+ D31C9C8F158A1C1000756B45 /* call_status_outgoing.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_status_outgoing.png; path = Resources/call_status_outgoing.png; sourceTree = ""; };
D31C9C96158A1CDE00756B45 /* UIHistoryCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIHistoryCell.h; sourceTree = ""; };
D31C9C97158A1CDE00756B45 /* UIHistoryCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIHistoryCell.m; sourceTree = ""; };
- D3211BA5159C3D410098460B /* outgoing-champ-numero-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "outgoing-champ-numero-actif.png"; path = "Resources/outgoing-champ-numero-actif.png"; sourceTree = ""; };
+ D3211BA5159C3D410098460B /* call_state_outgoing_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_state_outgoing_default.png; path = Resources/call_state_outgoing_default.png; sourceTree = ""; };
D3211BAD159C4EF00098460B /* UIConferenceHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIConferenceHeader.h; sourceTree = ""; };
D3211BAE159C4EF00098460B /* UIConferenceHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIConferenceHeader.m; sourceTree = ""; };
D3211BAF159C4EF10098460B /* UIConferenceHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UIConferenceHeader.xib; sourceTree = ""; };
- D3211BB8159C8A820098460B /* champ-courbe-autres-numeros-first.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "champ-courbe-autres-numeros-first.png"; path = "Resources/champ-courbe-autres-numeros-first.png"; sourceTree = ""; };
- D3211BBB159CBFD60098460B /* cancel_white_bg_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cancel_white_bg_default.png; path = Resources/cancel_white_bg_default.png; sourceTree = ""; };
- D3211BBC159CBFD60098460B /* cancel_white_bg_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cancel_white_bg_disabled.png; path = Resources/cancel_white_bg_disabled.png; sourceTree = ""; };
- D3211BBD159CBFD60098460B /* cancel_white_bg_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cancel_white_bg_over.png; path = Resources/cancel_white_bg_over.png; sourceTree = ""; };
+ D3211BB8159C8A820098460B /* cell_call_first.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cell_call_first.png; path = Resources/cell_call_first.png; sourceTree = ""; };
+ D3211BBB159CBFD60098460B /* back_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = back_default.png; path = Resources/back_default.png; sourceTree = ""; };
+ D3211BBC159CBFD60098460B /* back_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = back_disabled.png; path = Resources/back_disabled.png; sourceTree = ""; };
+ D3211BBD159CBFD60098460B /* back_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = back_over.png; path = Resources/back_over.png; sourceTree = ""; };
D32409C1158B49A600C8C119 /* UILongTouchButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILongTouchButton.h; sourceTree = ""; };
D32409C2158B49A600C8C119 /* UILongTouchButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UILongTouchButton.m; sourceTree = ""; };
D32460E4159D9AAD00BA7F3A /* UIPassView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIPassView.h; sourceTree = ""; };
@@ -959,31 +930,33 @@
D32648421588F6FA00930C67 /* UIToggleButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIToggleButton.h; sourceTree = ""; };
D32648431588F6FB00930C67 /* UIToggleButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIToggleButton.m; sourceTree = ""; };
D32942A31594C94200556A1C /* SettingsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SettingsViewController.xib; sourceTree = ""; };
- D3432A5C158A4446001C6B0B /* status_connected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = status_connected.png; path = Resources/status_connected.png; sourceTree = ""; };
- D3432A5D158A4446001C6B0B /* status_error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = status_error.png; path = Resources/status_error.png; sourceTree = ""; };
- D3432A5E158A4446001C6B0B /* quality-call-0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "quality-call-0.png"; path = "Resources/quality-call-0.png"; sourceTree = ""; };
- D3432A5F158A4446001C6B0B /* quality-call-1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "quality-call-1.png"; path = "Resources/quality-call-1.png"; sourceTree = ""; };
- D3432A60158A4446001C6B0B /* quality-call-2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "quality-call-2.png"; path = "Resources/quality-call-2.png"; sourceTree = ""; };
- D3432A61158A4446001C6B0B /* quality-call-3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "quality-call-3.png"; path = "Resources/quality-call-3.png"; sourceTree = ""; };
- D3432A6F158A45AF001C6B0B /* status_inprogress.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = status_inprogress.png; path = Resources/status_inprogress.png; sourceTree = ""; };
- D3432A70158A45AF001C6B0B /* status_disconnected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = status_disconnected.png; path = Resources/status_disconnected.png; sourceTree = ""; };
+ D32B9DFA15A2F131000B6DEC /* FastAddressBook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FastAddressBook.h; path = Utils/FastAddressBook.h; sourceTree = ""; };
+ D32B9DFB15A2F131000B6DEC /* FastAddressBook.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FastAddressBook.m; path = Utils/FastAddressBook.m; sourceTree = ""; };
+ D3432A5C158A4446001C6B0B /* led_connected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = led_connected.png; path = Resources/led_connected.png; sourceTree = ""; };
+ D3432A5D158A4446001C6B0B /* led_error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = led_error.png; path = Resources/led_error.png; sourceTree = ""; };
+ D3432A5E158A4446001C6B0B /* call_quality_indicator_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_quality_indicator_0.png; path = Resources/call_quality_indicator_0.png; sourceTree = ""; };
+ D3432A5F158A4446001C6B0B /* call_quality_indicator_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_quality_indicator_1.png; path = Resources/call_quality_indicator_1.png; sourceTree = ""; };
+ D3432A60158A4446001C6B0B /* call_quality_indicator_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_quality_indicator_2.png; path = Resources/call_quality_indicator_2.png; sourceTree = ""; };
+ D3432A61158A4446001C6B0B /* call_quality_indicator_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_quality_indicator_3.png; path = Resources/call_quality_indicator_3.png; sourceTree = ""; };
+ D3432A6F158A45AF001C6B0B /* led_inprogress.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = led_inprogress.png; path = Resources/led_inprogress.png; sourceTree = ""; };
+ D3432A70158A45AF001C6B0B /* led_disconnected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = led_disconnected.png; path = Resources/led_disconnected.png; sourceTree = ""; };
D34734791580DDF1003C7B8C /* PhoneMainView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneMainView.xib; sourceTree = ""; };
- D347347C1580E5F8003C7B8C /* history-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "history-actif.png"; path = "Resources/history-actif.png"; sourceTree = ""; };
- D347347D1580E5F8003C7B8C /* history-selectionne.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "history-selectionne.png"; path = "Resources/history-selectionne.png"; sourceTree = ""; };
+ D347347C1580E5F8003C7B8C /* history_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = history_default.png; path = Resources/history_default.png; sourceTree = ""; };
+ D347347D1580E5F8003C7B8C /* history_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = history_selected.png; path = Resources/history_selected.png; sourceTree = ""; };
D34F6F9D1594D3FB0095705B /* InAppSettings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = InAppSettings.bundle; sourceTree = ""; };
D35497FB15875372000081D8 /* ContactsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContactsViewController.h; sourceTree = ""; };
D35497FC15875372000081D8 /* ContactsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContactsViewController.m; sourceTree = ""; };
D35497FD15875372000081D8 /* ContactsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContactsViewController.xib; sourceTree = ""; };
- D354980215875534000081D8 /* all-contacts-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "all-contacts-actif.png"; path = "Resources/all-contacts-actif.png"; sourceTree = ""; };
- D354980315875534000081D8 /* all-contacts-selectionne.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "all-contacts-selectionne.png"; path = "Resources/all-contacts-selectionne.png"; sourceTree = ""; };
- D354980415875534000081D8 /* linphone-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "linphone-actif.png"; path = "Resources/linphone-actif.png"; sourceTree = ""; };
- D354980515875534000081D8 /* linphone-selectionne.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "linphone-selectionne.png"; path = "Resources/linphone-selectionne.png"; sourceTree = ""; };
- D354980E15875608000081D8 /* add-contact-depuis-detail-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "add-contact-depuis-detail-actif.png"; path = "Resources/add-contact-depuis-detail-actif.png"; sourceTree = ""; };
- D354980F15875608000081D8 /* add-contact-depuis-detail-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "add-contact-depuis-detail-over.png"; path = "Resources/add-contact-depuis-detail-over.png"; sourceTree = ""; };
+ D354980215875534000081D8 /* contacts_all_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = contacts_all_default.png; path = Resources/contacts_all_default.png; sourceTree = ""; };
+ D354980315875534000081D8 /* contacts_all_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = contacts_all_selected.png; path = Resources/contacts_all_selected.png; sourceTree = ""; };
+ D354980415875534000081D8 /* contacts_linphone_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = contacts_linphone_default.png; path = Resources/contacts_linphone_default.png; sourceTree = ""; };
+ D354980515875534000081D8 /* contacts_linphone_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = contacts_linphone_selected.png; path = Resources/contacts_linphone_selected.png; sourceTree = ""; };
+ D354980E15875608000081D8 /* contacts_add_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = contacts_add_default.png; path = Resources/contacts_add_default.png; sourceTree = ""; };
+ D354980F15875608000081D8 /* contacts_add_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = contacts_add_over.png; path = Resources/contacts_add_over.png; sourceTree = ""; };
D3549814158761CF000081D8 /* ContactsTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContactsTableViewController.h; sourceTree = ""; };
D3549815158761D0000081D8 /* ContactsTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContactsTableViewController.m; sourceTree = ""; };
- D354981815876FE7000081D8 /* bouton-detail-contact-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "bouton-detail-contact-actif.png"; path = "Resources/bouton-detail-contact-actif.png"; sourceTree = ""; };
- D354981915876FE7000081D8 /* bouton-detail-contact-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "bouton-detail-contact-over.png"; path = "Resources/bouton-detail-contact-over.png"; sourceTree = ""; };
+ D354981815876FE7000081D8 /* list_details_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = list_details_default.png; path = Resources/list_details_default.png; sourceTree = ""; };
+ D354981915876FE7000081D8 /* list_details_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = list_details_over.png; path = Resources/list_details_over.png; sourceTree = ""; };
D354981E1587716B000081D8 /* UIStateBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIStateBar.h; sourceTree = ""; };
D354981F1587716B000081D8 /* UIStateBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIStateBar.m; sourceTree = ""; };
D35498201587716B000081D8 /* UIStateBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UIStateBar.xib; sourceTree = ""; };
@@ -991,34 +964,37 @@
D35E757615931E5D0066B1C1 /* switch_camera_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = switch_camera_over.png; path = Resources/switch_camera_over.png; sourceTree = ""; };
D35E757F159328EA0066B1C1 /* UIAddressTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIAddressTextField.h; sourceTree = ""; };
D35E7580159328EB0066B1C1 /* UIAddressTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIAddressTextField.m; sourceTree = ""; };
- D35E758815932DE60066B1C1 /* backspace-disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "backspace-disabled.png"; path = "Resources/backspace-disabled.png"; sourceTree = ""; };
- D35E758C15934F360066B1C1 /* appeler-disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "appeler-disabled.png"; path = "Resources/appeler-disabled.png"; sourceTree = ""; };
+ D35E758815932DE60066B1C1 /* backspace_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = backspace_disabled.png; path = Resources/backspace_disabled.png; sourceTree = ""; };
+ D35E758C15934F360066B1C1 /* call_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = call_disabled.png; path = Resources/call_disabled.png; sourceTree = ""; };
D35E7594159460560066B1C1 /* ChatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatViewController.h; sourceTree = ""; };
D35E7595159460560066B1C1 /* ChatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatViewController.m; sourceTree = ""; };
D35E7596159460570066B1C1 /* ChatViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatViewController.xib; sourceTree = ""; };
D35E759C159460B50066B1C1 /* SettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingsViewController.h; sourceTree = ""; };
D35E759D159460B50066B1C1 /* SettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingsViewController.m; sourceTree = ""; };
+ D35EA76115A2DF8D003E025D /* micro_off_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = micro_off_disabled.png; path = Resources/micro_off_disabled.png; sourceTree = ""; };
+ D35EA76215A2DF8D003E025D /* micro_on_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = micro_on_disabled.png; path = Resources/micro_on_disabled.png; sourceTree = ""; };
+ D365AA7915A2DE7500CAFE3F /* speaker_off_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = speaker_off_disabled.png; path = Resources/speaker_off_disabled.png; sourceTree = ""; };
+ D365AA7A15A2DE7500CAFE3F /* speaker_on_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = speaker_on_disabled.png; path = Resources/speaker_on_disabled.png; sourceTree = ""; };
D36C43C4158F2E5A0048BA40 /* UICallCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICallCell.h; sourceTree = ""; };
D36C43C5158F2E5A0048BA40 /* UICallCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICallCell.m; sourceTree = ""; };
D36C43C9158F2EE50048BA40 /* UICallCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UICallCell.xib; sourceTree = ""; };
- D36C43CC158F2F370048BA40 /* champ-courbe-autres-numeros.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "champ-courbe-autres-numeros.png"; path = "Resources/champ-courbe-autres-numeros.png"; sourceTree = ""; };
- D36C43CD158F2F370048BA40 /* champ-courbe-participant-conf.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "champ-courbe-participant-conf.png"; path = "Resources/champ-courbe-participant-conf.png"; sourceTree = ""; };
- D36C43CE158F2F370048BA40 /* champ-titre-conference.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "champ-titre-conference.png"; path = "Resources/champ-titre-conference.png"; sourceTree = ""; };
- D36C43CF158F2F370048BA40 /* clavier-secondaire-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "clavier-secondaire-actif.png"; path = "Resources/clavier-secondaire-actif.png"; sourceTree = ""; };
- D36C43D0158F2F370048BA40 /* clavier-secondaire-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "clavier-secondaire-over.png"; path = "Resources/clavier-secondaire-over.png"; sourceTree = ""; };
- D36C43E7158F3F7E0048BA40 /* play-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "play-actif.png"; path = "Resources/play-actif.png"; sourceTree = ""; };
- D36C43E8158F3F7E0048BA40 /* play-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "play-over.png"; path = "Resources/play-over.png"; sourceTree = ""; };
- D36C43ED158F61EA0048BA40 /* pause-champ-numero-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pause-champ-numero-actif.png"; path = "Resources/pause-champ-numero-actif.png"; sourceTree = ""; };
- D36C43EE158F61EA0048BA40 /* pause-champ-numero-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pause-champ-numero-over.png"; path = "Resources/pause-champ-numero-over.png"; sourceTree = ""; };
- D36C43EF158F61EA0048BA40 /* play-champ-numero-actif.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "play-champ-numero-actif.png"; path = "Resources/play-champ-numero-actif.png"; sourceTree = ""; };
- D36C43F0158F61EA0048BA40 /* play-champ-numero-over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "play-champ-numero-over.png"; path = "Resources/play-champ-numero-over.png"; sourceTree = ""; };
+ D36C43CC158F2F370048BA40 /* cell_call.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cell_call.png; path = Resources/cell_call.png; sourceTree = ""; };
+ D36C43CD158F2F370048BA40 /* cell_conference.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cell_conference.png; path = Resources/cell_conference.png; sourceTree = ""; };
+ D36C43CE158F2F370048BA40 /* header_conference.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = header_conference.png; path = Resources/header_conference.png; sourceTree = ""; };
+ D36C43CF158F2F370048BA40 /* dialer_alt_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = dialer_alt_default.png; path = Resources/dialer_alt_default.png; sourceTree = ""; };
+ D36C43D0158F2F370048BA40 /* dialer_alt_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = dialer_alt_over.png; path = Resources/dialer_alt_over.png; sourceTree = ""; };
+ D36C43E7158F3F7E0048BA40 /* pause_on_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pause_on_default.png; path = Resources/pause_on_default.png; sourceTree = ""; };
+ D36C43E8158F3F7E0048BA40 /* pause_on_over.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pause_on_over.png; path = Resources/pause_on_over.png; sourceTree = "