<!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> </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 am pleased to send email here.</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN
class=553225905-31082007></SPAN></FONT> </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> </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> </DIV>
<DIV><FONT face=Verdana size=2><SPAN class=553225905-31082007>I made a
not-so-good diff, so those lines beginning with "-" are what I
added.</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN
class=553225905-31082007></SPAN></FONT> </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> </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> </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> </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> <BR> if
(app)<BR> {<BR>- //if
(hd_wm_window_is_hibernating (win))<BR>+ if
(hd_wm_window_is_hibernating (win))<BR>
{<BR>- //hd_wm_debug ("Window
hibernating, calling
hd_wm_top_service\n");<BR>-<BR>- if
(hdwmpriv->active_window !=
win)<BR>-
hdwmpriv->active_window = win;<BR>+
hd_wm_debug ("Window hibernating, calling
hd_wm_top_service\n");<BR> <BR>
/* make sure we top the window user requested
*/<BR>
hd_wm_application_set_active_window(app,
win);<BR> hd_wm_top_service
(hd_wm_application_get_service
(app));<BR> <BR>-
//return;<BR>+
return;<BR> }<BR>
}<BR> <BR>@@ -3317,66 +3314,5 @@ hd_wm_switch_instance_current_window (HDWM
*hdwm, gboolean to_next)<BR> (hdwm,
<BR> hd_wm_entry_info_get_parent (HD_WM_ENTRY_INFO
(hdwm->priv->active_window)),<BR>
to_next);<BR>-}<BR>-<BR>-void<BR>-hd_wm_switch_instance_current_application
(HDWM *hdwm, gboolean to_next)<BR>-{<BR>- GList *applications_list = NULL,
*iter, *new_entry;<BR>- HDWMApplication *application;<BR>-
HDWMEntryInfo *app_info;<BR>- HDWMWindow *window, *newwin;<BR>-<BR>-
if (!hdwm->priv->active_window)<BR>-
return;<BR>-<BR>- applications_list = hd_wm_get_applications
(hdwm);<BR>-<BR>- for (iter = applications_list; iter != NULL; iter =
g_list_next (iter))<BR>- {<BR>- application =
HD_WM_APPLICATION(iter->data);<BR>-<BR>- g_warning
("application is %x.\n", (unsigned int)application);<BR>-
}<BR>-<BR>- for (iter = applications_list; iter != NULL; iter =
g_list_next (iter))<BR>- {<BR>- application =
HD_WM_APPLICATION(iter->data);<BR>-<BR>- window =
hd_wm_application_get_active_window (application);<BR>-<BR>-
g_warning ("current found app is %x; widnow is %x; active window is %x.\n",
(unsigned int)application, (unsigned int)window, (unsigned
int)hdwm->priv->active_window);<BR>-<BR>- if(window ==
hdwm->priv->active_window)<BR>-
{<BR>- if
(to_next)<BR>-
{<BR>- new_entry = g_list_next
(iter);<BR>- if
(!new_entry)<BR>-
{<BR>- new_entry =
g_list_first((GList
*)applications_list);<BR>-
}<BR>- }<BR>-
else<BR>-
{<BR>- new_entry = g_list_previous
(iter);<BR>- if
(!new_entry)<BR>-
{<BR>- new_entry =
g_list_last((GList
*)applications_list);<BR>-
}<BR>- }<BR>-<BR>-
newwin = hd_wm_application_get_active_window (HD_WM_APPLICATION
(new_entry->data));<BR>- g_warning ("new
application is %x.\n", (unsigned int)newwin);<BR>-
app_info = HD_WM_ENTRY_INFO (newwin);<BR>-<BR>- if
(app_info)<BR>-
{<BR>- hd_wm_top_item
(app_info);<BR>- g_signal_emit_by_name
(hdwm, "entry_info_stack_changed",
app_info);<BR>-
break;<BR>- }<BR>- }<BR>-
}<BR> } <BR> <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> void <BR> hd_wm_switch_instance_current_window (HDWM *hdwm,
gboolean
to_next);<BR> <BR>-void<BR>-hd_wm_switch_instance_current_application (HDWM
*hdwm, gboolean to_next);<BR>-<BR> GHashTable
*<BR> hd_wm_get_icon_cache (HDWM *hdwm);</FONT></DIV></BODY></HTML>