annotate pixmaps/tb_drag_arrow_down.xpm @ 11914:2219f4bf4a57
[gaim-migrate @ 14205]
SF Patch #1342017 from sadrul
"This patch allows a user to change brush color during
the doodle-session.
This patch is mostly a rough one to get an idea whether
the approach is correct. To make things simple, I have
kept brush_size and brush_color in GaimGtkWhiteboard,
although it's there in doodle_session. It could be in
either place, although I would think it's best to be in
GaimGtkWhiteboard because any/most implementations of
doodle-ing would have these attributes. So keeping them
within the prpl may not be the best option?
Anyway, considering the brush-size and color stay at
the prpl for now, I have introduced two functions in
GaimWhiteboardPrplOps to get/set the size and color of
the brush from the prpl.
rekkanoryo (using Y! 7) and I (using gaim) have tested
this, and it seemed to work OK."
Plus, I cleaned up a whole bunch of code.
My apologies for this all being committed together, but it was a case of "Oh, this will be quick." that lead into hours of making intertwined changes.
committer: Tailor Script <tailor@pidgin.im>
author |
Richard Laager <rlaager@wiktel.com> |
date |
Mon, 31 Oct 2005 02:19:51 +0000 |
parents |
5fb47ec9bfe4 |
children |
87e95b8ce60b |
rev |
line source |
4359
|
1 /* XPM */
|
|
2 static const char * arrow_down_xpm[] = {
|
|
3 "13 16 2 1",
|
|
4 " c None",
|
|
5 ". c #FF0000",
|
|
6 " ... ",
|
|
7 " ... ",
|
|
8 " ... ",
|
|
9 " ... ",
|
|
10 " ... ",
|
|
11 " ... ",
|
|
12 " ... ",
|
|
13 " ... ",
|
|
14 " ... ",
|
|
15 ".............",
|
|
16 " ........... ",
|
|
17 " ......... ",
|
|
18 " ....... ",
|
|
19 " ..... ",
|
|
20 " ... ",
|
|
21 " . "};
|