Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
2aa75780
Commit
2aa75780
authored
Apr 09, 2008
by
Emmanuel Milou
Browse files
correction
parent
7dd04827
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/actions.c
View file @
2aa75780
...
...
@@ -59,23 +59,8 @@ sflphone_notify_voice_mail (guint count)
if
(
account_list_get_size
()
>
0
)
{
account_t
*
acc
=
account_list_get_by_state
(
ACCOUNT_STATE_REGISTERED
);
if
(
acc
==
NULL
)
{
// Notify that no account is registered
//notify_no_account_registered();
}
else
{
if
(
account_list_get_default
()
==
NULL
){
// Notify that the first registered account has count voice mails
if
(
acc
!=
NULL
)
notify_voice_mails
(
count
,
acc
);
}
else
{
// Notify that the default registered account has count voice mails
notify_voice_mails
(
count
,
account_list_get_by_id
(
account_list_get_default
())
);
}
}
}
}
...
...
@@ -84,15 +69,14 @@ status_bar_display_account( call_t* c)
{
gchar
*
msg
;
account_t
*
acc
;
if
(
c
->
accountID
!=
NULL
)
if
(
c
->
accountID
!=
NULL
)
{
acc
=
account_list_get_by_id
(
c
->
accountID
);
else
acc
=
account_list_get_by_id
(
account_list_get_default
());
msg
=
g_markup_printf_escaped
(
"Default: %s account- %s"
,
msg
=
g_markup_printf_escaped
(
"%s account- %s"
,
g_hash_table_lookup
(
acc
->
properties
,
ACCOUNT_TYPE
),
g_hash_table_lookup
(
acc
->
properties
,
ACCOUNT_ALIAS
));
status_bar_message_add
(
msg
,
__MSG_ACCOUNT_DEFAULT
);
g_free
(
msg
);
status_bar_message_add
(
msg
,
__MSG_ACCOUNT_DEFAULT
);
g_free
(
msg
);
}
}
...
...
@@ -210,7 +194,7 @@ sflphone_init()
{
dbus_register
(
getpid
(),
"Gtk+ Client"
);
sflphone_fill_account_list
();
sflphone_set_
defaul
t_account
();
sflphone_set_
curren
t_account
();
sflphone_fill_codec_list
();
return
TRUE
;
}
...
...
@@ -486,7 +470,8 @@ sflphone_keypad( guint keyval, gchar * key)
dbus_hang_up
(
c
);
break
;
default:
// TODO should this be here?
//dbus_play_dtmf(key);
// To play the dtmf when calling mail box for instance
dbus_play_dtmf
(
key
);
if
(
keyval
<
255
||
(
keyval
>
65453
&&
keyval
<
65466
))
{
gchar
*
temp
=
g_strconcat
(
call_get_number
(
c
),
key
,
NULL
);
...
...
@@ -504,7 +489,7 @@ sflphone_keypad( guint keyval, gchar * key)
{
case
65293
:
/* ENTER */
case
65421
:
/* ENTER numpad */
status_bar_display_account
(
c
);
//
status_bar_display_account(c);
dbus_accept
(
c
);
break
;
case
65307
:
/* ESCAPE */
...
...
@@ -583,54 +568,50 @@ sflphone_keypad( guint keyval, gchar * key)
void
sflphone_place_call
(
call_t
*
c
)
{
status_bar_display_account
(
c
);
if
(
c
->
state
==
CALL_STATE_DIALING
)
{
account_t
*
account
;
gchar
*
account_id
=
account_list_get_current
();
if
(
account_id
==
NULL
){
account_id
=
account_list_get_default
();
account
=
account_list_get_by_id
(
account_id
);
}
else
account
=
account_list_get_by_id
(
account_id
);
// Here : account_id is either the default one, either the current one selected with a right-click
if
(
account
)
{
if
(
strcmp
(
g_hash_table_lookup
(
account
->
properties
,
"Status"
),
"REGISTERED"
)
==
0
)
{
c
->
accountID
=
account_id
;
dbus_place_call
(
c
);
}
else
{
main_window_error_message
(
_
(
"The account selected as default is not registered."
));
}
}
else
{
account
=
account_list_get_by_state
(
ACCOUNT_STATE_REGISTERED
);
if
(
account
)
{
c
->
accountID
=
account
->
accountID
;
dbus_place_call
(
c
);
}
else
{
main_window_error_message
(
_
(
"There is no registered account to make this call with."
));
}
}
//status_bar_display_account(c);
if
(
c
->
state
==
CALL_STATE_DIALING
)
{
account_t
*
current
=
account_list_get_current
();
if
(
current
)
{
if
(
strcmp
(
g_hash_table_lookup
(
current
->
properties
,
"Status"
),
"REGISTERED"
)
==
0
)
{
// OK, everything alright - the call is made with the current account
c
->
accountID
=
current
->
accountID
;
dbus_place_call
(
c
);
}
else
{
// the current account (ie the first in the list) isn't registered
// So we try the next one. If it is registered, place a call with
int
pos
;
for
(
pos
=
1
;
pos
<
account_list_get_size
()
;
pos
++
){
current
=
account_list_get_nth
(
pos
);
if
(
current
){
if
(
strcmp
(
g_hash_table_lookup
(
current
->
properties
,
"Status"
),
"REGISTERED"
)
==
0
){
// notify_switch_account();
//main_warning_error_message(_("Switch account."));
c
->
accountID
=
current
->
accountID
;
dbus_place_call
(
c
);
break
;
}
}
}
}
}
else
{
// notify_no_accounts();
main_window_error_message
(
_
(
"There is no accounts to make this call with."
));
}
}
}
/* Internal to action - set the
DEFAUL
T_ACCOUNT variable */
/* Internal to action - set the
__CURREN
T_ACCOUNT variable */
void
sflphone_set_
defaul
t_account
(
)
sflphone_set_
curren
t_account
()
{
gchar
*
default_id
=
strdup
(
dbus_get_default_account
());
account_list_set_
default
(
default_id
);
if
(
account_list_get_size
>
0
)
account_list_set_
current_pos
(
0
);
}
void
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment