Update of /cvsroot/simspark/simspark/contrib/rsgedit/res
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21348/res
Added Files:
xpm_pause.xpm xpm_play.xpm
Log Message:
- rsgedit no longer crashes, when window is closed via it's decoration
- added toolbar buttons and menu entries to start and pause the simulation
- the simulation is initially paused
--- NEW FILE: xpm_pause.xpm ---
/* XPM */
static char *xpm_pause[] = {
/* columns rows colors chars-per-pixel */
"16 16 2 1",
" c gray100",
". c black",
/* pixels */
" ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" .. .. ",
" ",
" "
};
--- NEW FILE: xpm_play.xpm ---
/* XPM */
static char *xpm_play[] = {
/* columns rows colors chars-per-pixel */
"16 16 2 1",
" c gray100",
". c black",
/* pixels */
" ",
" ... ",
" .... ",
" ..... ",
" .. ... ",
" .. ... ",
" .. ... ",
" .. ... ",
" .. ... ",
" .. ... ",
" .. ... ",
" ..... ",
" .... ",
" ... ",
" ",
" "
};
|