home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / wapuniverse-src-0.3.5.build9.tar.gz / wapuniverse-src-0.3.5.build9.tar / wapuniverse-0.3.5.build9 / formBrowser.h < prev    next >
C/C++ Source or Header  |  2000-11-12  |  3KB  |  69 lines

  1. #ifndef _formbrowser_h_
  2. #define _formbrowser_h_
  3. // ---------------------------------------------------------------------------
  4. // FormBrowser.h
  5. // Contains PalmOS specific code, main Browser form
  6. // 
  7. // Project: WAPUniverse for PalmOS
  8. // Copyright ⌐ 1999-2000 Filip Onkelinx
  9. //
  10. // http://www.wapuniverse.com/
  11. // filip@onkelinx.com
  12. //
  13. // This program is free software; you can redistribute it and/or
  14. // modify it under the terms of the GNU General Public License
  15. // as published by the Free Software Foundation; either version 2
  16. // of the License, or (at your option) any later version.
  17. //
  18. // This program is distributed in the hope that it will be useful,
  19. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. // GNU General Public License for more details.
  22. //
  23. // You should have received a copy of the GNU General Public License
  24. // along with this program; if not, write to the Free Software 
  25. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
  26. //
  27. // 
  28. // $Workfile: formBrowser.h $  
  29. // $Author: wapuniverse $  
  30. // $Date: 2000/11/11 20:51:09 $
  31. // $Revision: 1.9 $
  32. // 
  33. // $Header: /cvsroot/wapuniverse/wapuniverse/src/formBrowser.h,v 1.9 2000/11/11 20:51:09 wapuniverse Exp $
  34. // 
  35. // -------------------------------------------------------------------------------
  36.  
  37. #include    <PalmOS.h>
  38. #include    <SysEvtMgr.h>
  39. #include    "WAPUniverse.h"
  40. #include    "wsp.h"
  41.  
  42.  
  43.  
  44. Boolean ehFormBrowser(EventPtr event);
  45. extern void palmprintln(GlobalsType *g);
  46. extern void palmprintf(char *str, GlobalsType *g);
  47. extern void palmsrcprintf(char *str, GlobalsType *g);
  48. extern void palmDrawImage(WSPPDU *wsppdu, GlobalsType *g);
  49. extern void palmUnderline(Boolean ison);
  50. extern void palmBold(Boolean isong);
  51. extern void palmHyperLink(Boolean ison, Char *prefix, Char *url, GlobalsType *g);
  52. extern void palmGetPos(int* posx, int* posy, GlobalsType *g);
  53. extern void palmWmlInput(Char *fieldName, GlobalsType *g);
  54. extern void palmWmlInputValue(Char *value, GlobalsType *g);
  55. extern void palmWmlSelectOptionTxt(Char *txt, GlobalsType *g);
  56. extern void palmWmlSelect(Char *name, GlobalsType *g);
  57. extern void palmWmlSelectValue(Char *ivalue, GlobalsType *g);
  58. extern void palmWmlSelectOption(Char *value, GlobalsType *g);
  59. extern void palmWmlSelectEnd(GlobalsType *g);
  60. extern Boolean browserReloadEvt(GlobalsType *g);
  61. extern Boolean browserStopEvt(GlobalsType *g);
  62. extern Boolean browserSrcEvt(GlobalsType *g);
  63. extern Boolean browserURLsEvt();
  64. extern Boolean browserBackEvt(GlobalsType *g);
  65.  
  66.  
  67.  
  68. #endif
  69.