[maemo-developers] Word completion in Fremantle
From: Felipe Erias Morandeira femorandeira at igalia.comDate: Fri Nov 6 21:43:00 EET 2009
- Previous message: Word completion in Fremantle
- Next message: Word completion in Fremantle
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi, take a look at set_preedit_buffer() in HildonIMContext: https://stage.maemo.org/svn/maemo/projects/haf/trunk/hildon-input-method-framework/src/hildon-im-context.c In a nutshell, the preedit text is set by emitting the "preedit-changed" signal in the HildonIMContext (which extends GtkIMContext). You could probably try to get a reference to the context and then either listen to this signal or use gtk_im_context_get_preedit_string(). static void set_preedit_buffer (HildonIMContext *self, const gchar* s) { [...] if (s != NULL) { [...] self->show_preedit = TRUE; g_signal_emit_by_name(self, "preedit-changed", self->preedit_buffer->str); [...] } else { self->show_preedit = FALSE; if (self->preedit_buffer != NULL && self->preedit_buffer->len != 0) { g_string_truncate(self->preedit_buffer, 0); g_signal_emit_by_name(self, "preedit-changed", self->preedit_buffer->str); } } } Cornelius Hald wrote: > Hi, > > I need to know whether or not a word suggestion[1] is currently > displayed inside a HildonTextView. Even better it would be if I could > access the content of this suggestion. Is that somehow possible? > > Could someone explain how the suggestion is added to the text view? I > can't find any signals that get fired, but somehow the text is part of > the text view, I mean, for example, text on the right side of the > suggestion is correctly moved to the right, text wrapping is working > etc... > > It would be great if someone could explain this black magic to me. What > I'm trying to do is to apply a certain text style/formatting onto the > suggestion to make it look consistent with the rest of the text. > > Thanks! > Conny > > > [1] the selected text on the right side of the cursor, that can be > accepted by pressing the right cursor key. > > > _______________________________________________ > maemo-developers mailing list > maemo-developers at maemo.org > https://lists.maemo.org/mailman/listinfo/maemo-developers > -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: OpenPGP digital signature Url : http://lists.maemo.org/pipermail/maemo-developers/attachments/20091106/2abb7ed4/attachment.pgp
- Previous message: Word completion in Fremantle
- Next message: Word completion in Fremantle
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]