clouseau: Titlebar shows server address if connected.

Signed-off-by: Aharon Hillel <a.hillel@samsung.com>

SVN revision: 72336
This commit is contained in:
Aharon Hillel 2012-06-18 07:22:19 +00:00 committed by Tom Hacohen
parent 646b39bd41
commit ae033131d5
1 changed files with 19 additions and 0 deletions

View File

@ -65,6 +65,25 @@ _titlebar_string_set(gui_elements *g, Eina_Bool online)
}
}
static void
_titlebar_string_set(gui_elements *g, Eina_Bool online)
{
if (online)
{
char *str = malloc(strlen(CLIENT_NAME) + strlen(g->address) + 32);
sprintf(str, "%s - %s", CLIENT_NAME, g->address);
elm_win_title_set(g->win, str);
free(str);
}
else
{
char *str = malloc(strlen(CLIENT_NAME) + 32);
sprintf(str, "%s - Offline", CLIENT_NAME);
elm_win_title_set(g->win, str);
free(str);
}
}
Eina_Bool
_add(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_Ipc_Event_Server_Add *ev)
{