Re: Adding custom buttons to a scrolled window

2006-12-06 Thread Michael 'Mickey' Lauer
Just want to say thanks to John! Your suggestions brought me into the right direction -- everything works fine now. Regards, :M: -- Michael 'Mickey' Lauer | IT-Freelancer | http://www.vanille-media.de ___ gtk-app-devel-list mailing list gtk-app-devel

Re: Adding custom buttons to a scrolled window

2006-12-06 Thread John Cupitt
On 12/6/06, Michael 'Mickey' Lauer <[EMAIL PROTECTED]> wrote: > >> Basically what I'd need is to get a GtkScrolledWindow but make it talk > >> to my scrollbars, not to its. > > > That's (almost) exactly what happens if you put two scrollbars and a > > viewport into a table. > > I see. Last question

Re: Adding custom buttons to a scrolled window

2006-12-06 Thread Michael 'Mickey' Lauer
>> Basically what I'd need is to get a GtkScrolledWindow but make it talk >> to my scrollbars, not to its. > That's (almost) exactly what happens if you put two scrollbars and a > viewport into a table. I see. Last question then... what if I have widgets that are scrollable on their own like e.g.

Re: Re[2]: Adding custom buttons to a scrolled window

2006-12-06 Thread John Cupitt
On 12/6/06, Michael 'Mickey' Lauer <[EMAIL PROTECTED]> wrote: > > Put two scrollbars plus a viewport in a table and add any other > > buttons you need. Make your work area the child of the viewport. > > Connect the scrollbar adjustments to the viewport. > > Will that do everything that embedding a

Re[2]: Adding custom buttons to a scrolled window

2006-12-06 Thread Michael 'Mickey' Lauer
John Cupitt wrote: > On 12/6/06, Michael 'Mickey' Lauer <[EMAIL PROTECTED]> wrote: >> I need to implement a version of a GtkScrolledWindow that >> features a custom button as part of the scrollbar. Please find a > Your graphic got lost (put it on a webpage and post a link), but the > usual answer

Re: Adding custom buttons to a scrolled window

2006-12-06 Thread John Cupitt
On 12/6/06, Michael 'Mickey' Lauer <[EMAIL PROTECTED]> wrote: > I need to implement a version of a GtkScrolledWindow that > features a custom button as part of the scrollbar. Please find a Your graphic got lost (put it on a webpage and post a link), but the usual answer to these questions is to us

Re: Adding custom buttons to a scrolled window

2006-12-06 Thread Michael 'Mickey' Lauer
Michael 'Mickey' Lauer wrote: > I need to implement a version of a GtkScrolledWindow that > features a custom button as part of the scrollbar. Please find a > mockup attached. What do you think is the most simple way to implement that > (i.e. by using most of the logics that's already there in > Gt

Adding custom buttons to a scrolled window

2006-12-06 Thread Michael 'Mickey' Lauer
Dear developers, I need to implement a version of a GtkScrolledWindow that features a custom button as part of the scrollbar. Please find a mockup attached. What do you think is the most simple way to implement that (i.e. by using most of the logics that's already there in GtkScrolledWindow and th