bryan christ wrote: > Does anyone know what signal I should be connecting to when I > want to take action when a window is resized? You need "configure_event". In my experience it's rare to want to listen to this signal, usually it's simpler to subclass one of the existing widgets and have a configure_event method. > As an aside, is there a list of signal definitions? The GTK API > documentation seems pretty hit-and-miss. As an example, > GtkButton explains "activate" but GtkWindow has nothing to > describe the signal "frame-event". I think frame_event is private. John