/* * baricon.h * * Icon bar handling stuff * * © 1993-1998 Straylight */ /*----- Licensing note ----------------------------------------------------* * * This file is part of Straylight's Steel library. * * Steel is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * Steel is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Steel. If not, write to the Free Software Foundation, * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __baricon_h #define __baricon_h #ifndef __ibicon_h #include "ibicon.h" #endif #ifndef __wimp_h #include "wimp.h" #endif /*------------------------------------------------------- This is a collection of macros that interface with ibicon. -------------------------------------------------------*/ /* * Some types */ typedef void (*baricon_clickproc)(wimp_i); wimp_i baricon(char *,int,baricon_clickproc); wimp_i baricon_left(char *,int,baricon_clickproc); wimp_i baricon_textandsprite(char *,char *,int,int,baricon_clickproc); wimp_i baricon_textandsprite_left(char *,char *,int,int,baricon_clickproc); wimp_i baricon_newsprite(char *); wimp_i baricon_newtext(char *); #endif