00001 /* Grafx2 - The Ultimate 256-color bitmap paint program 00002 00003 Copyright 2007-2008 Adrien Destugues 00004 Copyright 1996-2001 Sunset Design (Guillaume Dorme & Karl Maritaud) 00005 00006 Grafx2 is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU General Public License 00008 as published by the Free Software Foundation; version 2 00009 of the License. 00010 00011 Grafx2 is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with Grafx2; if not, see <http://www.gnu.org/licenses/> or 00018 write to the Free Software Foundation, Inc., 00019 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00020 */ 00021 00022 #ifndef __BRUSH_H_ 00023 #define __BRUSH_H_ 00024 00025 void Capturer_brosse(short Debut_X,short Debut_Y,short Fin_X,short Fin_Y,short Effacement); 00026 void Rotate_90_deg(void); 00027 void Etirer_brosse(short X1, short Y1, short X2, short Y2); 00028 void Etirer_brosse_preview(short X1, short Y1, short X2, short Y2); 00029 void Tourner_brosse(float Angle); 00030 void Tourner_brosse_preview(float Angle); 00031 00032 void Remap_brosse(void); 00033 void Get_colors_from_brush(void); 00034 void Outline_brush(void); 00035 void Nibble_brush(void); 00036 void Capturer_brosse_au_lasso(int Vertices, short * Points,short Effacement); 00037 00038 #endif
1.5.8