11.6. Aspect Frame

The aspect frame widget is like a frame widget, except that it also enforces the aspect ratio (that is, the ratio of the width to the height) of the child widget to have a certain value, adding extra space if necessary. This is useful, for instance, if you want to preview a larger image. The size of the preview should vary when the user resizes the window, but the aspect ratio needs to always match the original image.

To create a new aspect frame use:

Gtk::AspectFrame.new( label, xalign, yalign, ratio, obey_child)

xalign and yalign specify alignment as with Alignment widgets. If obey_child is true, the aspect ratio of a child widget will match the aspect ratio of the ideal size it requests. Otherwise, it is given by ratio.

To change the options of an existing aspect frame, you can use:

Gtk::AspectFrame#set( xalign, yalign, ratio, obey_child)

As an example, the following program uses an AspectFrame to present a drawing area whose aspect ratio will always be 2:1, no matter how the user resizes the top-level window.

require 'gtk2'

Gtk.init
window = Gtk::Window.new( Gtk::Window::TOPLEVEL )
window.title=( "Aspect Frame" )
window.signal_connect( "destroy" ) { Gtk.main_quit }
window.border_width=( 10 )

# Create an aspect frame and it to our window
aspect_frame = Gtk::AspectFrame.new( "2x1", 0.5, 0.5, 2, false )
window.add( aspect_frame )
drawing_area = Gtk::DrawingArea.new

# Ask for a 200x200 window, but the AspectFrame will give us a 200x100
# Window since we are forcing a 2x1 aspect ratio
drawing_area.set_size_request( 200, 200 )
aspect_frame.add( drawing_area )
window.show_all
Gtk.main

Prev Next