Positionning a widget in Table cells

2007-03-23 Thread Jonathan Winterflood
Hi all, I'm developping an app w/ gtkmm 2.4. I'm using a number of custom widgets, packed into a Table in my main window One of these (W) is attached to 2 cells of the first column, and others (a,b,c,m) fill the other cells, like so: m m m W a b W _ b c c c This Widget is set to shrink

Re: Positionning a widget in Table cells

2007-03-23 Thread Yeti
On Fri, Mar 23, 2007 at 11:33:31PM +0100, Jonathan Winterflood wrote: I'm using a number of custom widgets, packed into a Table in my main window One of these (W) is attached to 2 cells of the first column, and others (a,b,c,m) fill the other cells, like so: m m m W a b W _ b c c c

can't get enter_notify_event to work

2007-03-23 Thread Karl H. Beckers
Hi all, can't get this to work the way I need it to and appreciate all clever ideas. I have a very simple test code that works as desired, but it does not work in another app. I'm doing: void on_gtk_frame_right_enter_notify_event (GtkWidget * w, gpointer data) { printf(entered . \n); }

Re: Supporting Gtk+ Maintenance

2007-03-23 Thread मयंक जैन ( makuchaku)
On 3/23/07, Behdad Esfahbod [EMAIL PROTECTED] wrote: Setting bugs with outdated patches to needinfo may be a bit problematic as the bugsquad team has a tendency to close needinfo bugs after some time... Also they won't show in some default search queries.. Just removing the patch keyword, or

Re: Supporting Gtk+ Maintenance

2007-03-23 Thread Behdad Esfahbod
On Fri, 2007-03-23 at 15:42 +0530, मयंक जैन (makuchaku) wrote: On 3/23/07, Behdad Esfahbod [EMAIL PROTECTED] wrote: Setting bugs with outdated patches to needinfo may be a bit problematic as the bugsquad team has a tendency to close needinfo bugs after some time... Also they won't show in

GTK+ 2.12 schedule?

2007-03-23 Thread Murray Cumming
Could we agree on a schedule for GTK+ 2.12, please? I'd really like to know for sure that it will be ready for GNOME 2.20. -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com www.openismus.com ___ gtk-devel-list mailing list gtk-devel-list@gnome.org

Re: ideas on improving the performance of gtk_tree_view

2007-03-23 Thread Kristian Rietveld
On Thu, Mar 22, 2007 at 08:18:14PM +0200, Tommi Komulainen wrote: On 3/22/07, Kalle Vahlman [EMAIL PROTECTED] wrote: 2007/3/22, Yevgen Muntyan [EMAIL PROTECTED]: IIRC reusing single cell renderer in multiple columns was declared broken and unsupported (because it was broken). Is this

Re: ideas on improving the performance of gtk_tree_view

2007-03-23 Thread Kalle Vahlman
2007/3/23, Kristian Rietveld [EMAIL PROTECTED]: On Thu, Mar 22, 2007 at 08:18:14PM +0200, Tommi Komulainen wrote: On 3/22/07, Kalle Vahlman [EMAIL PROTECTED] wrote: 2007/3/22, Yevgen Muntyan [EMAIL PROTECTED]: IIRC reusing single cell renderer in multiple columns was declared

Re: GTK+ 2.12 schedule?

2007-03-23 Thread Kristian Rietveld
On Fri, Mar 23, 2007 at 01:45:11PM +0100, Murray Cumming wrote: Could we agree on a schedule for GTK+ 2.12, please? I'd really like to Since nobody complained about the schedule we devised at FOSDEM and I mailed to the list in my minutes a few weeks ago, I guess that will be our current working

Re: GTK+ 2.12 schedule?

2007-03-23 Thread Murray Cumming
On Fri, 2007-03-23 at 15:40 +0100, Sven Herzberg wrote: So trying doesn't mean that we'd have to ship a broken GTK+. But GNOME would decide quite soon whether they think GTK+ is likely to manage it, and I don't think you need to worry about them being too optimistic. If you agree to ship

Re: ideas on improving the performance of gtk_tree_view

2007-03-23 Thread Federico Mena Quintero
El jue, 22-03-2007 a las 16:55 +0100, Nicolas Setton escribió: Hi, Nicolas, Thanks for taking the time to profile this! Consider the subprogram attached. It shows a simple tree_view displaying a list_store (5000 columns and 50 rows containing integers). The display performance is very

Re: ideas on improving the performance of gtk_tree_view

2007-03-23 Thread Federico Mena Quintero
El vie, 23-03-2007 a las 23:19 +0100, Michael Natterer escribió: I would rather say we absolutely don't abuse lists here. There is no significant difference between list and array for a couple of items (say 50 items). The only abuse I see is creating a treeview with 5000 columns. The widget

Re: ideas on improving the performance of gtk_tree_view

2007-03-23 Thread Germán Poó Caamaño
On Fri, 2007-03-23 at 17:35 -0600, Federico Mena Quintero wrote: El vie, 23-03-2007 a las 23:19 +0100, Michael Natterer escribió: [...] What GTK+ needs here is a *sheet* widget, something that is optimized for organizing two-dimensional data in an efficient way. Hacking up GtkTreeView for