/***************************************************************************** ** Copyright (C) 1998-2004 Ljubomir Milanovic & Horst Wagner ** This file is part of the g2 library ** ** This library is free software; you can redistribute it and/or ** modify it under the terms of the GNU Lesser General Public ** License as published by the Free Software Foundation; either ** version 2.1 of the License, or (at your option) any later version. ** ** This library 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 ** Lesser General Public License for more details. ** ** You should have received a copy of the GNU Lesser General Public ** License along with this library; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ #ifndef _G2_FIG_FUNIX_H #define _G2_FIG_FUNIX_H #include "g2_FIG_P.h" #include "g2_physical_device.h" const g2_funix_fun g2_FIG_funix[] = { { g2_Delete, g2_FIG_delete }, { g2_Ink, g2_FIG_ink }, { g2_Pen, g2_FIG_pen }, { g2_SetBackground, NULL }, { g2_ClearPalette, NULL }, { g2_SetLineWidth, g2_FIG_set_line_width }, { g2_SetDash, g2_FIG_set_dash }, { g2_SetFontSize, g2_FIG_set_font_size }, { g2_Clear, g2_FIG_clear }, { g2_Flush, g2_FIG_flush }, { g2_Save, g2_FIG_flush }, { g2_Plot, g2_FIG_plot }, { g2_Line, g2_FIG_line }, { g2_PolyLine, g2_FIG_poly_line }, { g2_Polygon, g2_FIG_polygon }, { g2_FilledPolygon, g2_FIG_filled_polygon }, { g2_Rectangle, NULL }, { g2_FilledRectangle, NULL }, { g2_Triangle, NULL }, { g2_FilledTriangle, NULL }, { g2_Arc, g2_FIG_arc }, { g2_FilledArc, g2_FIG_filled_arc }, { g2_Ellipse, g2_FIG_ellipse }, { g2_FilledEllipse, g2_FIG_filled_ellipse }, { g2_Circle, NULL }, { g2_FilledCircle, NULL }, { g2_String, g2_FIG_draw_string }, { g2_FUNIX_NULL, NULL } }; #endif /* _G2_FIG_FUNIX_H */