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 "commit" signal. </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 !!! ... 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);">"</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);">"</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> <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>> Aaron,<br>><br>> I got the kb syncrhnized with the focus (in/out) events of HTML forms (the
<br>> focus in -> 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<br>> "synchronism" working (partially), I was able to do so. Could it be a
<br>> 'context' problems ?<br>><br>> Thoughts ?<br>><br>> thanks<br>><br>> On 1/20/06, Aaron Levinson <<a href="mailto:alevinsn@aracnet.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
alevinsn@aracnet.com</a>> wrote:<br>> ><br>> > I have to admit that I don't understand why you would need to use this
<br>> > specialized function in your case. 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. In your case, however, you
<br>> > already have a GtkWidget (GtkMozEmbed), so you should be able to do the<br>> > following:<br>> ><br>> > 1. Create a GtkIMMultiContext in the "constructor" for your object.<br>> > 2. In the realize function for your class (or as a response to the
<br>> > "realize" signal), call gtk_im_context_set_client_window(). Also call it<br>> > for unrealize.<br>> > 3. Handle the "focus-in" and "focus-out" signals appropriately for the
<br>> > widget by calling gtk_im_context_focus_in() and<br>> > gtk_im_context_focus_out(), respectively.<br>> > 4. 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. 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>> > > You can use gtk_im_context_show() to force the window for a GtkIMContext
<br>> > > object to be displayed. This function isn't mentioned in the<br>> > > documentation for the class, but it is in the include file. An example<br>> > of<br>> > > using this function can be found in the osso-xterm code.
<br>> > ><br>> > > Aaron<br>> > ><br>> > > On Fri, 20 Jan 2006, Antonio Gomes wrote:<br>> > ><br>> > > > otherwise, there is no way to force it Pop UP manually ?<br>
> > > ><br>> > > > regards<br>> > > ><br>> > > ><br>> > > > On 1/20/06, Antonio Gomes <<a href="mailto:tonikitoo@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
tonikitoo@gmail.com</a>> wrote:
<br>> > > > ><br>> > > > ><br>> > > > > On 1/18/06, Aaron Levinson <<a href="mailto:alevinsn@aracnet.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
alevinsn@aracnet.com</a>> wrote:<br>> > > > ><br>
> > > > > Hi Aaron,<br>> > > > ><br>> > > > > One possibility is to use gdk_window_foreign_new() to wrap the<br>> > native<br>> > > > > > window in a GdkWindow object.
<br>> > > > ><br>> > > > ><br>> > > > > Maybe I can jump this first step, once I already have a GtkWidget<br>> > the<br>> > > > > wraps mozilla guts the make easier called GtkMozEmbed, provided by
<br>> > the<br>> > > > > mozilla embedding API. Make sense for you ?<br>> > > > ><br>> > > > ><br>> > > > > > Then, after creating a GtkIMMulticontext,
<br>
> > > > > > you could try using gtk_im_context_set_client_window() with the<br>> > new<br>> > > > > > GdkWindow object. You'll want to listen for key-press and<br>> > key-release
<br>> > > > > > signals (hard to do without a GtkWidget, but you should be able to<br>> > > > > > handle<br>> > > > > > this by listening for these signals on the HildonApp widget), and
<br>> > when<br>> > > > > > you<br>> > > > > > get these signals you can route them to the GtkIMContext that you<br>> > > > > > created<br>> > > > > > earlier if appropriate. Also, look for other e-mails regarding
<br>> > input<br>> > > > > > methods in the archives for this e-mail list. Maybe this will<br>> > work,<br>> > > > > > although I'm not too hopeful. You might also consider creating a
<br>> > > > > > special<br>> > > > > > GtkWidget class that can wrap an arbitrary GdkWindow. I would<br>> > have<br>> > > > > > suggested the GtkPlug class, but GtkPlug widgets are top-level
<br>> > widgets,<br>> > > > > > which won't work here.<br>> > > > ><br>> > > > ><br>> > > > ><br>> > > > > Please note that the virtual keyboard is provided in the form of a
<br>> > GTK<br>> > > > > > input method, and you'll basically need to use the standard GTK<br>> > > > > > mechanisms<br>> > > > > > for working with input methods if you want to use it.
<br>> > > > ><br>> > > > ><br>> > > > > but I'm already using Vb successfully and there is no synchronising<br>> > > > > between the rendered HTML forms and the Kb ... (focus in -> pop up
<br>> > vk /<br>> > > > > focus out -> vk gets down).<br>> > > > ><br>> > > > > many thanks<br>> > > > ><br>> > > > ><br>> > > > > > > Hi there,
<br>> > > > > > ><br>> > > > > > > I'm wondering how I can get the Virtual Keyboard service to<br>> > > > > > synchronize with<br>> > > > > > > non GTK_Widgets (like HTML forms on mozilla-webpages) ?
<br>> > > > > > ><br>> > > > > > > Actually, I have some methods already implemented regarding<br>> > this, and<br>> > > > > > I just<br>> > > > > > > need communication with VK side (from APIs or whatever). Is
<br>> > there is<br>> > > > > > any API<br>> > > > > > > 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)