How to caught signal from the popup list of a GtkEntryCompletion

2018-04-16 Thread Cyril Richard
I have an application with a GtkEntry. As a feature of the program, I use key-press-event signals on this entry for GDK_KEY_Up, GDK_KEY_Down, GDK_KEY_Return and GDK_KEY_KP_Enter. But the I also would like to disable these homemade functions when the GtkEntryCompletion shows completion popup items

GtkEntryCompletion from the internet?

2011-08-17 Thread Avi Romanoff
Hi, I'm writing a GTK3 dictionary app in Vala. It has a GtkEntry with a GtkEntryCompletion, that it uses to provide word suggestions based on what you've typed. Think Google's search box. The way I've implemented this is by connection to the "changed" signal, and d

Using tab completion with GtkEntryCompletion

2010-10-26 Thread Salvatore De Paolis
Hi all, I'm having fun these days with GCompletion(deprecated) and GtkEntryCompletion. Everything is going fine apart one important thing. We do autocomplete email addresses on request by the user, using the Tab key. I didn't find a way to implement it with GtkEntryCompletion. What I

GtkEntryCompletion Question?

2010-07-23 Thread Çetin Tanrıöver
Hi to everyone in the mailing list.I have a question about GtkEntryCompletion.I searched it but i couldn't figure out. My question is; how can i get-handle all the resulted text given by the GtkEntryCompletion after i typed some key? To be clear Suppose that i have "Completion,Computer

GtkEntryCompletion Question?

2010-07-15 Thread Çetin Tanrıöver
Hi to everyone in the mailing list.I have a question about GtkEntryCompletion.I searched it but i couldn't figure out. My question is; how can i get-handle all the resulted text given by the GtkEntryCompletion after i typed some key? To be clear Suppose that i have "Completion,Computer

GtkEntryCompletion popup size

2007-09-11 Thread Dave Howorth
I'm using a GtkEntryCompletion in popup-mode and controlling the list of matches myself. I see that it displays up to 15 matches and if there are more it adds a scroll bar to the popup window. For my purposes it doesn't seem worthwhile to have a scroll bar. Is there any way to control

Re: GtkEntryCompletion on a GtkCellRendererText

2007-03-12 Thread Vivien Malerba
s have auto-completion available when editing the > text cells, with a GtkEntryCompletion, but I can't figure out how to add > one. The most likely way would be to get a pointer to the > GtkCellRendererText's GtkEntry, but I can't find a way to do that. I > a

GtkEntryCompletion on a GtkCellRendererText

2007-03-03 Thread Philip Withnall
Hi all, I've got a table of database rows set up using a GtkTreeView with a GtkListStore backend, and GtkCellRendererTexts for the table cells. This is all working nicely. What I'd like to do is have auto-completion available when editing the text cells, with a GtkEntryCompletion, b

Re: GtkEntryCompletion with a huge amount of items

2006-07-27 Thread Daniel Espinosa
You may want to derive a class from GtkEntryCompletion (see the code of it) and reimplement the auto completion callback. May you create your callback (called when the user writes some thing on the entry) and try toshow the completion list from a query in a database, even if it is just a XML

GtkEntryCompletion with a huge amount of items

2006-07-27 Thread Svaty Krtek
Hello, I want to make a dictionary with posibility of completion like it is in GtkEntry Completion. But the dictionary has more items than is possible to fit into GtkEntry Completion, so I'm looking for the same appearance like GtkEntryCompletion has, but I want to make completion by myself

GtkEntryCompletion

2006-07-16 Thread nerdy
Hello all, I am having some problems in controlling the drop-down list that appears from the GtkEntryCompletion. I have a long lisk of entries that can be popped up for the completion. By default if there are more than 14 elements, the EntryCompletion drop down list adds a scroll bar to its

Usage of GtkEntryCompletion in TextView

2005-12-28 Thread Olaf Leidinger
Hello! Would it be possible to combine GtkEntryCompletion with GtkTextView to add something like Intellisense (as you have it in e.g. Visual Studio)? Or what would be the easiest and most performant way of doing something like this? Any suggestions? I'm thinking about creating a kile