コンパイルオプション gcc -o window window.c `gtk-config --cflags` `gtk-config --libs` gcc -Wall -g helloworld.c -o hello_world `gtk-config --cflags` `gtk-config --libs` jeanne:~/appl/tools/gtk-prog/1$ gcc -Wall -g button01.c -o button01 `gtk-config --cflags` `gtk-config --libs`
1-1.ウィンドウを作る |
1-2 ウィンドウに ボタンを2つ(Menu1,Menu2と書かれたボタン)垂直に配置し、 それぞれのボタンを click すると Hello を出力する。 |
1-3 複数のボタンを垂直に配置、一番下に quit ボタンを置く。 それぞれのボタンをクリックすると Hello を返す。 |
1-3 複数ボタンをクリックしたとき、それぞれ違う言葉を出力する。 コールバックのお試し |
1-4 tabel に配置してみる。 GtkWidget *table; を使う。 ボタンを水平に配置し、下段にquit ボタン1つ置く。 |