Aaron, <br><br>I got the kb syncrhnized with the focus (in/out) events of HTML forms (the focus in -&gt; vk pops up and vice-versa) - many thanks, btw. <br><br>But no text can be entered from typing frm the vk ... And before getting the &quot;synchronism&quot; working (partially), I was able to do so. Could it be a 'context' problems ? 
<br><br>Thoughts ?<br><br>thanks<br><br><div><span class="gmail_quote">On 1/20/06, <b class="gmail_sendername">Aaron Levinson</b> &lt;<a href="mailto:alevinsn@aracnet.com">alevinsn@aracnet.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I have to admit that I don't understand why you would need to use this<br>specialized function in your case.&nbsp;&nbsp;The situation with osso-xterm is a<br>specialized one, since the GtkIMContext object's window needs to be<br>activated as the result of a menu action.&nbsp;&nbsp;In your case, however, you
<br>already have a GtkWidget (GtkMozEmbed), so you should be able to do the<br>following:<br><br>1.&nbsp;&nbsp;Create a GtkIMMultiContext in the &quot;constructor&quot; for your object.<br>2.&nbsp;&nbsp;In the realize function for your class (or as a response to the
<br>&quot;realize&quot; signal), call gtk_im_context_set_client_window().&nbsp;&nbsp;Also call it<br>for unrealize.<br>3.&nbsp;&nbsp;Handle the &quot;focus-in&quot; and &quot;focus-out&quot; signals appropriately for the<br>widget by calling gtk_im_context_focus_in() and
<br>gtk_im_context_focus_out(), respectively.<br>4.&nbsp;&nbsp;Set up key-press and key-release signal handlers for the widget and<br>call gtk_im_context_filter_keypress() in each signal handler.<br><br>Take a look at the source code for vncviewer or osso-xterm for examples.
<br>You can also examine the code for various GTK classes, such as<br>GtkTextEntry.&nbsp;&nbsp;Also, you can refer back to some previous e-mails that I<br>wrote to this list regarding input methods.<br><br>Aaron<br><br>On Fri, 20 Jan 2006, Aaron Levinson wrote:
<br><br>&gt; You can use gtk_im_context_show() to force the window for a GtkIMContext<br>&gt; object to be displayed.&nbsp;&nbsp;This function isn't mentioned in the<br>&gt; documentation for the class, but it is in the include file.&nbsp;&nbsp;An example of
<br>&gt; using this function can be found in the osso-xterm code.<br>&gt;<br>&gt; Aaron<br>&gt;<br>&gt; On Fri, 20 Jan 2006, Antonio Gomes wrote:<br>&gt;<br>&gt; &gt; otherwise, there is no way to force it Pop UP manually ?
<br>&gt; &gt;<br>&gt; &gt; regards<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; On 1/20/06, Antonio Gomes &lt;<a href="mailto:tonikitoo@gmail.com">tonikitoo@gmail.com</a>&gt; wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; On 1/18/06, Aaron Levinson &lt;
<a href="mailto:alevinsn@aracnet.com">alevinsn@aracnet.com</a>&gt; wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Hi Aaron,<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; One possibility is to use gdk_window_foreign_new() to wrap the native
<br>&gt; &gt; &gt; &gt; window in a GdkWindow object.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Maybe I can jump this first step, once I already have a GtkWidget the<br>&gt; &gt; &gt; wraps mozilla guts the make easier called GtkMozEmbed, provided by the
<br>&gt; &gt; &gt; mozilla embedding API. Make sense for you ?<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Then, after creating a GtkIMMulticontext,<br>&gt; &gt; &gt; &gt; you could try using gtk_im_context_set_client_window() with the new
<br>&gt; &gt; &gt; &gt; GdkWindow object.&nbsp;&nbsp;You'll want to listen for key-press and key-release<br>&gt; &gt; &gt; &gt; signals (hard to do without a GtkWidget, but you should be able to<br>&gt; &gt; &gt; &gt; handle<br>&gt; &gt; &gt; &gt; this by listening for these signals on the HildonApp widget), and when
<br>&gt; &gt; &gt; &gt; you<br>&gt; &gt; &gt; &gt; get these signals you can route them to the GtkIMContext that you<br>&gt; &gt; &gt; &gt; created<br>&gt; &gt; &gt; &gt; earlier if appropriate.&nbsp;&nbsp;Also, look for other e-mails regarding input
<br>&gt; &gt; &gt; &gt; methods in the archives for this e-mail list.&nbsp;&nbsp;Maybe this will work,<br>&gt; &gt; &gt; &gt; although I'm not too hopeful.&nbsp;&nbsp;You might also consider creating a<br>&gt; &gt; &gt; &gt; special<br>&gt; &gt; &gt; &gt; GtkWidget class that can wrap an arbitrary GdkWindow.&nbsp;&nbsp;I would have
<br>&gt; &gt; &gt; &gt; suggested the GtkPlug class, but GtkPlug widgets are top-level widgets,<br>&gt; &gt; &gt; &gt; which won't work here.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Please note that the virtual keyboard is provided in the form of a GTK
<br>&gt; &gt; &gt; &gt; input method, and you'll basically need to use the standard GTK<br>&gt; &gt; &gt; &gt; mechanisms<br>&gt; &gt; &gt; &gt; for working with input methods if you want to use it.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;
<br>&gt; &gt; &gt; but I'm already using Vb successfully and there is no synchronising<br>&gt; &gt; &gt; between the rendered HTML forms and the Kb ... (focus in -&gt; pop up vk /<br>&gt; &gt; &gt; focus out -&gt; vk gets down).
<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; many thanks<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Hi there,<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; I'm wondering how I can get the Virtual Keyboard service to
<br>&gt; &gt; &gt; &gt; synchronize with<br>&gt; &gt; &gt; &gt; &gt; non GTK_Widgets (like HTML forms on mozilla-webpages) ?<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Actually, I have some methods already implemented regarding this, and
<br>&gt; &gt; &gt; &gt; I just<br>&gt; &gt; &gt; &gt; &gt; need communication with VK side (from APIs or whatever). Is there is<br>&gt; &gt; &gt; &gt; any API<br>&gt; &gt; &gt; &gt; &gt; to use it, or GTK mask/hide it in its guts ?
<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; maemo-developers mailing list<br>&gt; <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org
</a><br>&gt; <a href="https://maemo.org/mailman/listinfo/maemo-developers">https://maemo.org/mailman/listinfo/maemo-developers</a><br>&gt;<br><br>_______________________________________________<br>maemo-developers mailing list
<br><a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br><a href="https://maemo.org/mailman/listinfo/maemo-developers">https://maemo.org/mailman/listinfo/maemo-developers</a><br></blockquote></div>
<br><br clear="all"><br>-- <br>--Antonio Gomes<br>http:// tonikitoo (dot) blogspot (dot) com (slash)