Fedora8を使ってみる

Fedora8をデスクトップとして使ってみる

8.ブラシを円形にする

2007年02月25日 | gtk2
参考

(draw_brush の中)
gdk_draw_arc(pixmap,
widget->style->black_gc,
TRUE,
update_rect.x, update_rect.y,
update_rect.width, update_rect.height,
0,64*360);

(draw_brush の中)
ペンのサイズ変更
update_rect.x = x - 20;
update_rect.y = y - 20;
update_rect.width = 40;
update_rect.height = 40;

gcc hello.c -o base `pkg-config --cflags --libs gtk+-2.0`

編集