Re: Set number of visible items for

2018-03-12 Thread infirit .
G Op 5 mrt. 2018 11:43 p.m. schreef "Igor Korot" : > Hi, ALL, > In Windows it is achievable thru > https://msdn.microsoft.com/en-us/library/windows/desktop/ > bb775915(v=vs.85).aspx. > > In OSX/Cocoa - thru > https://developer.apple.com/documentation/appkit/nscombobox/1436741- > numberofvisi

Re: Set number of visible items for

2018-03-12 Thread Igor Korot
Hi, On Mon, Mar 12, 2018 at 7:20 AM, infirit . wrote: > G Does this suppose to mean something? Thank you. > > Op 5 mrt. 2018 11:43 p.m. schreef "Igor Korot" : >> >> Hi, ALL, >> In Windows it is achievable thru >> >> https://msdn.microsoft.com/en-us/library/windows/desktop/bb775915(v=vs.85

Re: Set number of visible items for

2018-03-12 Thread lrn1986
On 12.03.2018 15:39, Igor Korot wrote: Hi, On Mon, Mar 12, 2018 at 7:20 AM, infirit . wrote: G Does this suppose to mean something? Most likely a verbatim CC to the gtk list about setting the minimal number of items to be visible in a combobox dropdown list. signature.asc Descript

Re: Set number of visible items for

2018-03-12 Thread Igor Korot
Hi, On Mon, Mar 12, 2018 at 11:06 AM wrote: > On 12.03.2018 15:39, Igor Korot wrote: > > Hi, > > > > On Mon, Mar 12, 2018 at 7:20 AM, infirit . wrote: > >> G > > > > Does this suppose to mean something? > > Most likely a verbatim CC to the gtk list about setting the minimal number > of > it

Re: Set number of visible items for

2018-03-12 Thread infirit
Op 12-03-18 om 13:39 schreef Igor Korot: > On Mon, Mar 12, 2018 at 7:20 AM, infirit . wrote: >> G > Does this suppose to mean something? Yes, don't forget to lock your phone before putting it in your pocket :-(. Sorry about that. ~infirit ___ gtk-l

GTK4: gtk_tree_view_enable_model_drag_dest () and GdkContentFormats

2018-03-12 Thread Marcus Schätzle
Hi all, I've done a port of a program to GTK4 (3.93.3); there is a part that I have not yet gotten to work and that is drag and drop inside a tree view. I have particularly trouble understanding using the target formats inside gtk_tree_view_enable_model_drag_dest (). For the GTK 3 version I use a

Re: GTK4: gtk_tree_view_enable_model_drag_dest () and GdkContentFormats

2018-03-12 Thread lrn1986
On 12.03.2018 19:45, Marcus Schätzle wrote: Hi all, I've done a port of a program to GTK4 (3.93.3); there is a part that I have not yet gotten to work and that is drag and drop inside a tree view. I have particularly trouble understanding using the target formats inside gtk_tree_view_enable_

Re: GTK4: gtk_tree_view_enable_model_drag_dest () and GdkContentFormats

2018-03-12 Thread Marcus Schätzle
I have found the solution for the dragging part. While gtk_tree_view_enable_model_drag_source (GTK_TREE_VIEW (treeview), 1, enable_list, GDK_ACTION_MOVE); // enable_list is a GtkTargetEntry structure was working in GTK3 (in fact this was a leftover from the GTK2 beginnings of the program), it has t

Re: GTK4: gtk_tree_view_enable_model_drag_dest () and GdkContentFormats

2018-03-12 Thread Marcus Schätzle
Sorry for adding to the confusion; it is still working now (and I've also fixed the remaining part in the meantime), but actually the problem was another one. GDK_BUTTON1_MASK was present also in the GTK3 version of my program. gtk_tree_view_enable_model_drag_source () takes now four arguments inst