Re: Dynamic Resizing of Drawing Area
- From: Alexander Chemeris <chemeris mail ru>
- To: gtk-list-admin gnome org
- Cc: gtk-app-devel-list-request gnome org, "GTK Help List" <gtk-list gnome org>
- Subject: Re: Dynamic Resizing of Drawing Area
- Date: Thu, 15 Aug 2002 12:37:55 +0400
Wednesday, August 14, 2002, 10:28:15 PM, you wrote:
> I want to change the size of my drawing area dynamically based on
> the size of the image that is being shown in it. But if I declare
> the size initially as :
> gtk_widget_set_size_request (GTK_WIDGET (main_draw), 2400, 2400);
> then, later, if i again try to set the size of the now visible
> drawing area using 'gtk_widget_set_size_request' then I get a
> Seg_Fault.
I use following code and it works ok for me (I use GTK+ 2.0.3 on Windows)
gtk_widget_set_size_request(
GTK_WIDGET (lookup_widget (GTK_WIDGET (EditWindow), "EditDrawingArea")),
project->layerwidth, project->layerheight);
May be you does not assign right value to your main_draw variable? :-)
Try assert().
Alexander Chemeris
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]