1 /* 2 * 3 * This file is part of XForms. 4 * 5 * XForms is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU Lesser General Public License as 7 * published by the Free Software Foundation; either version 2.1, or 8 * (at your option) any later version. 9 * 10 * XForms is distributed in the hope that it will be useful, but 11 * WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with XForms; see the file COPYING. If not, write to 17 * the Free Software Foundation, 59 Temple Place - Suite 330, Boston, 18 * MA 02111-1307, USA. 19 * 20 */ 21 22 23 /* 24 * Class Crossbutton header file 25 */ 26 #ifndef CROSSBUT_H 27 #define CROSSBUT_H 28 29 #define FL_CROSSBUTTON (FL_USER_CLASS_START + 1) 30 31 #define FL_CROSSBUTTON_BW 2 32 33 extern FL_OBJECT *fl_add_crossbutton(int, FL_Coord, FL_Coord, 34 FL_Coord, FL_Coord, const char *); 35 36 extern FL_OBJECT *fl_create_crossbutton(int, FL_Coord, FL_Coord, 37 FL_Coord, FL_Coord, const char *); 38 39 #endif 40