<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.2900.3086" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>Hi, 
All,</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>This is Horace 
from Intel, and I am working on moblin project, which uses hildon as application 
framework. I have been working on hildon framework for several months 
and&nbsp;am pleased to send email here.</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>I created a patch 
in libhildonwm to enable the active applications switching by clicking buttons 
on task navigator panel. The main purpose I created a new interface to switch 
applications is that currently hd_wm_switch_instance_current_widnow seems not to 
switch active windows well.</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>Could anyone who 
is in charge of hildon-desktop help me to review this, and if possible, 
integrate this into upstream?</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>I made a 
not-so-good diff, so those lines beginning with "-"&nbsp;are what I 
added.</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>Any questions, 
please feel free to contact with me.</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007>Thanks,</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007>Horace</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007>------------------------------------------------------------------------------------------</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=553225905-31082007></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2>diff --git a/libhildonwm/hd-wm.c 
b/libhildonwm/hd-wm.c<BR>index 9a65234..007f620 100644<BR>--- 
a/libhildonwm/hd-wm.c<BR>+++ b/libhildonwm/hd-wm.c<BR>@@ -1187,18 +1187,15 @@ 
hd_wm_top_item (HDWMEntryInfo *info)<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp; if 
(app)<BR>&nbsp;&nbsp;&nbsp;&nbsp; {<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //if 
(hd_wm_window_is_hibernating (win))<BR>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
(hd_wm_window_is_hibernating (win))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //hd_wm_debug&nbsp; ("Window 
hibernating, calling 
hd_wm_top_service\n");<BR>-<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
(hdwmpriv-&gt;active_window != 
win)<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
hdwmpriv-&gt;active_window = win;<BR>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
hd_wm_debug&nbsp; ("Window hibernating, calling 
hd_wm_top_service\n");<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
/* make sure we top the window user requested 
*/<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
hd_wm_application_set_active_window(app, 
win);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hd_wm_top_service 
(hd_wm_application_get_service 
(app));<BR>&nbsp;<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//return;<BR>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
return;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
}<BR>&nbsp;<BR>@@ -3317,66 +3314,5 @@ hd_wm_switch_instance_current_window (HDWM 
*hdwm, gboolean to_next)<BR>&nbsp;&nbsp;&nbsp;&nbsp; (hdwm, 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hd_wm_entry_info_get_parent (HD_WM_ENTRY_INFO 
(hdwm-&gt;priv-&gt;active_window)),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
to_next);<BR>-}<BR>-<BR>-void<BR>-hd_wm_switch_instance_current_application 
(HDWM *hdwm, gboolean to_next)<BR>-{<BR>-&nbsp; GList *applications_list = NULL, 
*iter, *new_entry;<BR>-&nbsp; HDWMApplication *application;<BR>-&nbsp; 
HDWMEntryInfo *app_info;<BR>-&nbsp; HDWMWindow *window, *newwin;<BR>-<BR>-&nbsp; 
if (!hdwm-&gt;priv-&gt;active_window)<BR>-&nbsp;&nbsp;&nbsp; 
return;<BR>-<BR>-&nbsp; applications_list = hd_wm_get_applications 
(hdwm);<BR>-<BR>-&nbsp; for (iter = applications_list; iter != NULL; iter = 
g_list_next (iter))<BR>-&nbsp; {<BR>-&nbsp;&nbsp;&nbsp; application = 
HD_WM_APPLICATION(iter-&gt;data);<BR>-<BR>-&nbsp;&nbsp;&nbsp; g_warning 
("application is %x.\n", (unsigned int)application);<BR>-&nbsp; 
}<BR>-<BR>-&nbsp; for (iter = applications_list; iter != NULL; iter = 
g_list_next (iter))<BR>-&nbsp; {<BR>-&nbsp;&nbsp;&nbsp; application = 
HD_WM_APPLICATION(iter-&gt;data);<BR>-<BR>-&nbsp;&nbsp;&nbsp; window = 
hd_wm_application_get_active_window (application);<BR>-<BR>-&nbsp;&nbsp;&nbsp; 
g_warning ("current found app is %x; widnow is %x; active window is %x.\n", 
(unsigned int)application, (unsigned int)window, (unsigned 
int)hdwm-&gt;priv-&gt;active_window);<BR>-<BR>-&nbsp;&nbsp;&nbsp; if(window == 
hdwm-&gt;priv-&gt;active_window)<BR>-&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
(to_next)<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new_entry = g_list_next 
(iter);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
(!new_entry)<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new_entry = 
g_list_first((GList 
*)applications_list);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
}<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
else<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new_entry = g_list_previous 
(iter);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
(!new_entry)<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new_entry = 
g_list_last((GList 
*)applications_list);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
}<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>-<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
newwin = hd_wm_application_get_active_window (HD_WM_APPLICATION 
(new_entry-&gt;data));<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g_warning ("new 
application is %x.\n", (unsigned int)newwin);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
app_info = HD_WM_ENTRY_INFO (newwin);<BR>-<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
(app_info)<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hd_wm_top_item 
(app_info);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g_signal_emit_by_name 
(hdwm, "entry_info_stack_changed", 
app_info);<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
break;<BR>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>-&nbsp;&nbsp;&nbsp; }<BR>-&nbsp; 
}<BR>&nbsp;}&nbsp;&nbsp;&nbsp; <BR>&nbsp;<BR>diff --git a/libhildonwm/hd-wm.h 
b/libhildonwm/hd-wm.h<BR>index 3256a03..82f49e0 100644<BR>--- 
a/libhildonwm/hd-wm.h<BR>+++ b/libhildonwm/hd-wm.h<BR>@@ -297,9 +297,6 @@ 
hd_wm_switch_info_window (HDWM *hdwm, HDWMEntryInfo *entry_info, gboolean 
to_nex<BR>&nbsp;void <BR>&nbsp;hd_wm_switch_instance_current_window (HDWM *hdwm, 
gboolean 
to_next);<BR>&nbsp;<BR>-void<BR>-hd_wm_switch_instance_current_application (HDWM 
*hdwm, gboolean to_next);<BR>-<BR>&nbsp;GHashTable 
*<BR>&nbsp;hd_wm_get_icon_cache (HDWM *hdwm);</FONT></DIV></BODY></HTML>