00001 /* $Id: picogui.h 3806 2003-05-04 06:11:21Z micah $ 00002 * 00003 * picogui.h - Include file for your average PicoGUI client using the 00004 * C client library 00005 * 00006 * PicoGUI small and efficient client/server GUI 00007 * Copyright (C) 2000 Micah Dowty <micahjd@users.sourceforge.net> 00008 * 00009 * This library is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Lesser General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 2.1 of the License, or (at your option) any later version. 00013 * 00014 * This library is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public 00020 * License along with this library; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 * 00023 * Contributors: Philippe Ney <philippe.ney@smartdata.ch> 00024 * 00025 * 00026 * 00027 */ 00028 #ifdef __cplusplus 00029 extern "C" { 00030 #endif // __cplusplus 00031 00032 #include <picogui/constants.h> /* PicoGUI client/server shared constants */ 00033 #include <picogui/network.h> /* Client/server shared data structures */ 00034 #include <picogui/client_c.h> /* Client API */ 00035 #include <picogui/stddialog.h> /* Client-side standard dialogs */ 00036 #include <picogui/canvas.h> /* Canvas widget low-level interface */ 00037 #include <picogui/pgfx.h> /* PGFX abstract graphics interface */ 00038 #include <picogui/applet.h> /* PGL applet messaging system */ 00039 00040 #ifdef __cplusplus 00041 } 00042 #endif // __cplusplus 00043 00044 /* The End */
1.3-rc3