hi Aaron,<br><br><div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>I didn't mention this in my last e-mail, but you'll also need to setup a
<br>signal handler for the GtkIMContext object's &quot;commit&quot; signal.&nbsp;&nbsp;</blockquote><div><br>I have it (the 'commit' signal) already connected and also its callback defined as it is in your post at <a href="http://maemo.org/pipermail/maemo-developers/2006-January/002337.html" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

http://maemo.org/pipermail/maemo-developers/2006-January/002337.html</a>  - cool !!! ...&nbsp; But problem begins after creating the IM_Context object and associating it with the GdkWindow of my GtkMozEmbed object : the mozilla_engine stop recognizing any input from the vkb, except if I press 'backspace' ... 
<br><br>bwt, in 'commit_cb' method, it prints what I type at the console but doesn't add nothing at the HTML form (detail: it does with no context associated or if I type from the physical keyboard) ...<br><br>


<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Generator" content="Kate, the KDE Advanced Text Editor">

<pre><span style="color: rgb(128, 0, 0);">static</span>  gboolean
gtk_moz_embed_im_context_commit_cb (GtkIMContext *ctx, <span style="color: rgb(128, 0, 0);">const</span>  gchar *str, GtkMozEmbed *aEmbed) {
  gunichar uChar = <span style="color: rgb(0, 0, 255);">0</span>;
  guint keyval = <span style="color: rgb(0, 0, 255);">0</span>;
  gchar *text2 = (gchar *) str;

  printf (<span style="color: rgb(221, 0, 0);">&quot;</span><span style="color: rgb(255, 0, 255);">\n</span><span style="color: rgb(221, 0, 0);"> [GTK_MOZ_EMBED] it gets here '%s'</span><span style="color: rgb(255, 0, 255);">
\n</span><span style="color: rgb(221, 0, 0);">&quot;</span>, str);

  <span style="color: rgb(128, 128, 128);"><i>// the string is in UTF-8 format--iterate through the characters</i></span>
  <b>while</b>  (*text2) {
        uChar = g_utf8_get_char(text2);
        keyval = gdk_unicode_to_keyval(uChar);

        <span style="color: rgb(128, 128, 128);"><i>//</i></span>
        <span style="color: rgb(128, 128, 128);"><i>// do something with the character here</i></span>
        <span style="color: rgb(128, 128, 128);"><i>//</i></span>
        text2 = g_utf8_next_char(text2);
  }
}</pre><br>ps: again, I'm able to pop up / hide the vkb, but not to typing into it ...<br><br>many thanks for you attention<br>&nbsp; <br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Aaron<br><br>On Sat, 21 Jan 2006, Antonio Gomes wrote:<br><br>&gt; Aaron,<br>&gt;<br>&gt; I got the kb syncrhnized with the focus (in/out) events of HTML forms (the
<br>&gt; focus in -&gt; vk pops up and vice-versa) - many thanks, btw.<br>&gt;<br>&gt; But no text can be entered from typing frm the vk ... And before getting the<br>&gt; &quot;synchronism&quot; working (partially), I was able to do so. Could it be a
<br>&gt; 'context' problems ?<br>&gt;<br>&gt; Thoughts ?<br>&gt;<br>&gt; thanks<br>&gt;<br>&gt; On 1/20/06, Aaron Levinson &lt;<a href="mailto:alevinsn@aracnet.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
alevinsn@aracnet.com</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt; I have to admit that I don't understand why you would need to use this
<br>&gt; &gt; specialized function in your case.&nbsp;&nbsp;The situation with osso-xterm is a<br>&gt; &gt; specialized one, since the GtkIMContext object's window needs to be<br>&gt; &gt; activated as the result of a menu action.&nbsp;&nbsp;In your case, however, you
<br>&gt; &gt; already have a GtkWidget (GtkMozEmbed), so you should be able to do the<br>&gt; &gt; following:<br>&gt; &gt;<br>&gt; &gt; 1.&nbsp;&nbsp;Create a GtkIMMultiContext in the &quot;constructor&quot; for your object.<br>&gt; &gt; 2.&nbsp;&nbsp;In the realize function for your class (or as a response to the
<br>&gt; &gt; &quot;realize&quot; signal), call gtk_im_context_set_client_window().&nbsp;&nbsp;Also call it<br>&gt; &gt; for unrealize.<br>&gt; &gt; 3.&nbsp;&nbsp;Handle the &quot;focus-in&quot; and &quot;focus-out&quot; signals appropriately for the
<br>&gt; &gt; widget by calling gtk_im_context_focus_in() and<br>&gt; &gt; gtk_im_context_focus_out(), respectively.<br>&gt; &gt; 4.&nbsp;&nbsp;Set up key-press and key-release signal handlers for the widget and<br>&gt; &gt; call gtk_im_context_filter_keypress() in each signal handler.
<br>&gt; &gt;<br>&gt; &gt; Take a look at the source code for vncviewer or osso-xterm for examples.<br>&gt; &gt; You can also examine the code for various GTK classes, such as<br>&gt; &gt; GtkTextEntry.&nbsp;&nbsp;Also, you can refer back to some previous e-mails that I
<br>&gt; &gt; wrote to this list regarding input methods.<br>&gt; &gt;<br>&gt; &gt; Aaron<br>&gt; &gt;<br>&gt; &gt; On Fri, 20 Jan 2006, Aaron Levinson wrote:<br>&gt; &gt;<br>&gt; &gt; &gt; You can use gtk_im_context_show() to force the window for a GtkIMContext
<br>&gt; &gt; &gt; object to be displayed.&nbsp;&nbsp;This function isn't mentioned in the<br>&gt; &gt; &gt; documentation for the class, but it is in the include file.&nbsp;&nbsp;An example<br>&gt; &gt; of<br>&gt; &gt; &gt; using this function can be found in the osso-xterm code.
<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Aaron<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; On Fri, 20 Jan 2006, Antonio Gomes wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; otherwise, there is no way to force it Pop UP manually ?<br>

&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; regards<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; On 1/20/06, Antonio Gomes &lt;<a href="mailto:tonikitoo@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
tonikitoo@gmail.com</a>&gt; wrote:
<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; On 1/18/06, Aaron Levinson &lt;<a href="mailto:alevinsn@aracnet.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
alevinsn@aracnet.com</a>&gt; wrote:<br>&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; Hi Aaron,<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; One possibility is to use gdk_window_foreign_new() to wrap the<br>&gt; &gt; native<br>&gt; &gt; &gt; &gt; &gt; &gt; window in a GdkWindow object.
<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Maybe I can jump this first step, once I already have a GtkWidget<br>&gt; &gt; the<br>&gt; &gt; &gt; &gt; &gt; wraps mozilla guts the make easier called GtkMozEmbed, provided by
<br>&gt; &gt; the<br>&gt; &gt; &gt; &gt; &gt; mozilla embedding API. Make sense for you ?<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; Then, after creating a GtkIMMulticontext,
<br>
&gt; &gt; &gt; &gt; &gt; &gt; you could try using gtk_im_context_set_client_window() with the<br>&gt; &gt; new<br>&gt; &gt; &gt; &gt; &gt; &gt; GdkWindow object.&nbsp;&nbsp;You'll want to listen for key-press and<br>&gt; &gt; key-release
<br>&gt; &gt; &gt; &gt; &gt; &gt; signals (hard to do without a GtkWidget, but you should be able to<br>&gt; &gt; &gt; &gt; &gt; &gt; handle<br>&gt; &gt; &gt; &gt; &gt; &gt; this by listening for these signals on the HildonApp widget), and
<br>&gt; &gt; when<br>&gt; &gt; &gt; &gt; &gt; &gt; you<br>&gt; &gt; &gt; &gt; &gt; &gt; get these signals you can route them to the GtkIMContext that you<br>&gt; &gt; &gt; &gt; &gt; &gt; created<br>&gt; &gt; &gt; &gt; &gt; &gt; earlier if appropriate.&nbsp;&nbsp;Also, look for other e-mails regarding
<br>&gt; &gt; input<br>&gt; &gt; &gt; &gt; &gt; &gt; methods in the archives for this e-mail list.&nbsp;&nbsp;Maybe this will<br>&gt; &gt; work,<br>&gt; &gt; &gt; &gt; &gt; &gt; although I'm not too hopeful.&nbsp;&nbsp;You might also consider creating a
<br>&gt; &gt; &gt; &gt; &gt; &gt; special<br>&gt; &gt; &gt; &gt; &gt; &gt; GtkWidget class that can wrap an arbitrary GdkWindow.&nbsp;&nbsp;I would<br>&gt; &gt; have<br>&gt; &gt; &gt; &gt; &gt; &gt; suggested the GtkPlug class, but GtkPlug widgets are top-level
<br>&gt; &gt; widgets,<br>&gt; &gt; &gt; &gt; &gt; &gt; which won't work here.<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Please note that the virtual keyboard is provided in the form of a
<br>&gt; &gt; GTK<br>&gt; &gt; &gt; &gt; &gt; &gt; input method, and you'll basically need to use the standard GTK<br>&gt; &gt; &gt; &gt; &gt; &gt; mechanisms<br>&gt; &gt; &gt; &gt; &gt; &gt; for working with input methods if you want to use it.
<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; but I'm already using Vb successfully and there is no synchronising<br>&gt; &gt; &gt; &gt; &gt; between the rendered HTML forms and the Kb ... (focus in -&gt; pop up
<br>&gt; &gt; vk /<br>&gt; &gt; &gt; &gt; &gt; focus out -&gt; vk gets down).<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; many thanks<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Hi there,
<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; I'm wondering how I can get the Virtual Keyboard service to<br>&gt; &gt; &gt; &gt; &gt; &gt; synchronize with<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; non GTK_Widgets (like HTML forms on mozilla-webpages) ?
<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Actually, I have some methods already implemented regarding<br>&gt; &gt; this, and<br>&gt; &gt; &gt; &gt; &gt; &gt; I just<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; need communication with VK side (from APIs or whatever). Is
<br>&gt; &gt; there is<br>&gt; &gt; &gt; &gt; &gt; &gt; any API<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; to use it, or GTK mask/hide it in its guts ?<br><br></blockquote></div><br>-- <br>--Antonio Gomes<br>http:// tonikitoo (dot) blogspot (dot) com (slash)