Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7443 → Rev 7444

/programs/cmm/iconedit/colors_mas.h
53,6 → 53,7
{
unsigned rows, columns;
dword mas[MAX_CELL_SIZE*MAX_CELL_SIZE];
dword mas_copy[MAX_CELL_SIZE*MAX_CELL_SIZE];
dword img;
_pixel_state pixel_state;
void create();
221,7 → 222,8
MOVE_DOWN,
FLIP_VER,
FLIP_HOR,
ROTE
ROTATE_LEFT,
ROTATE_RIGHT
};
void _image::move(int _direction)
{
278,9 → 280,44
set_pixel(rows-r-1, c, first_element_data);
}
break;
case ROTATE_LEFT:
//slow but the code is simple
//need to rewrite in case of big images support
move(ROTATE_RIGHT);
move(ROTATE_RIGHT);
move(ROTATE_RIGHT);
break;
case ROTATE_RIGHT:
if (columns!=rows) {
notify("Sorry, rotate is implemented for square canvaces only!");
break;
}
 
for (r=0; r<MAX_CELL_SIZE*MAX_CELL_SIZE; r++) {
mas_copy[r] = mas[r];
}
 
for (c = 0; c < columns; c++)
for (r = 0; r < rows; r++) {
set_pixel(c, rows-r-1, mas_copy[columns*r + c]);
}
 
columns >< rows;
break;
}
}
 
/*
1234
5678
90AB
 
951
 
A
B
 
*/