Exercise 04 - gtk+

Out: Friday January 26, 2018
Due: Tuesday January 30, 2018 by 11:59pm.


  1. gtk+ is a widget library with a C interface. Most of the work of this exercise is to start understanding gtk+ by reading parts of its documentation and modifying code we provide.
  2. gtk+ documentation is available here. I'd read the Getting Started with GTK+ section, up through Opening Files. (No files in this exercise, but we'll eventually use them.) There is also per-widget reference information which you will likely want to consult.
  3. We provide code that creates a main window with a single quit button. You extend the implementation to display an additional button that shows an image, with the images displayed being rotating each time the button is clicked.

    Before

    After
  4. While we still want no memory leaks, finding them with valgrind in a gtk+ program is a nightmare, because gtk+ does not itself clean up. Our rule is that your code should have no leaks that involve just your code. That's vague, and there are sure to be questions about just what it means later, but operationally it means essentially that if a TA could fix your leak in 10 minutes or so of debugging, then you should have fixed it. If after 10 minutes it appears that fixing it would require modifying gtk+, then you're not expected to fix it.

  5. We provide a single source file, a makefile, and some sample images. We also provide a solution executable that relies on image files a.jpg, b.jpg, and c.jpg. (If you get tired of seeing our images, you can replace them with your own, but those file names must be preserved.)

  6. The distribution is here.

  7. It is common to see accessibility bus warnings when launching the program.

Hand in to the course dropbox: (The following are generic requirements that will appear every exercise. Exactly how pertinent they are can vary from one exercise to another.)

Your code must: