Re: Window move at menubar in Gnome

2010-07-05 Thread Michael Torrie
On 07/05/2010 01:53 PM, Andreas Volz wrote:
>> since I installed Ubuntu 10.04 I noticed that I could move windows
>> while dragging the menubar in Gnome. I like this feature. But I don't
>> use Gnome, but Enlightenment 17. I would like to implement support for
>> this feature in E17, but I don't know which calls are behind this on X
>> level. I tried to find some documentation about it, but failed. Before
>> I start to dig into Gtk+ code I hope someone on this list could answer
>> this question.
> 
> Please ignore this question. It was a theme problem. I solved it.

Which theme?  None of the themes I use ona regular basis seem to support
this operation.
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


Re: Window move at menubar in Gnome

2010-07-05 Thread Andreas Volz
Am Sun, 4 Jul 2010 13:51:31 +0200 schrieb Andreas Volz:

> Hello,
> 
> since I installed Ubuntu 10.04 I noticed that I could move windows
> while dragging the menubar in Gnome. I like this feature. But I don't
> use Gnome, but Enlightenment 17. I would like to implement support for
> this feature in E17, but I don't know which calls are behind this on X
> level. I tried to find some documentation about it, but failed. Before
> I start to dig into Gtk+ code I hope someone on this list could answer
> this question.

Please ignore this question. It was a theme problem. I solved it.

regards
Andreas
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


Re: Implementing my own ScrolledWindow

2010-07-05 Thread Noam Yorav-Raphael
Thanks a lot! You helped me find the answer: I had to call
textview.set_size_request(0, 0),
so now the textview doesn't request space for all its contents.

Thanks again,
Noam

On Mon, Jul 5, 2010 at 9:54 AM, Tadej Borovšak  wrote:
> Hello.
>
>> How can I make it not expand?
>
> You cannot do that with GtkTable, since table will always grant all
> the space GtkTextView requested. I see two possible solutions here:
> write GtkScrolledWindow-like widget from scratch (with all the
> scrollbar positioning, ...) or create simple wrapper widget that will
> "underallocate" your text view and place that into a table. Second
> solution is probably easier to implement, but first one is more
> flexible.
>
> Tadej
>
> --
> Tadej Borovšak
> tadeboro.blogspot.com
> tadeb...@gmail.com
> tadej.borov...@gmail.com
>
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list