Annotation of Amaya/amaya/amaya.h, revision 1.335

1.8       cvs         1: /*
                      2:  *
1.329     vatton      3:  *  (c) COPYRIGHT INRIA and W3C, 1996-2008
1.8       cvs         4:  *  Please first read the full copyright statement in file COPYRIGHT.
                      5:  *
                      6:  */
                      7: 
1.59      cvs         8: #ifndef AMAYA_H 
1.1       cvs         9: #define AMAYA_H
                     10: 
1.10      cvs        11: /* Thot interface */
                     12: #include "thot_gui.h"
                     13: #include "thot_sys.h"
1.79      cvs        14: #include "appstruct.h"
1.10      cvs        15: #include "application.h"
                     16: #include "attribute.h"
                     17: #include "browser.h"
                     18: #include "content.h"
                     19: #include "dialog.h"
1.103     cvs        20: #include "fileaccess.h"
1.10      cvs        21: #include "interface.h"
                     22: #include "libmsg.h"
                     23: #include "message.h"
                     24: #include "presentation.h"
                     25: #include "selection.h"
                     26: #include "reference.h"
                     27: #include "tree.h"
                     28: #include "view.h"
1.105     cvs        29: #include "uconvert.h"
1.82      cvs        30: #include "undo.h"
1.320     vatton     31: 
1.1       cvs        32: /* Included headerfiles */
1.10      cvs        33: #include "EDITOR.h"
1.1       cvs        34: #include "HTML.h"
1.197     kahan      35: #include "MathML.h"
1.217     vatton     36: #include "SVG.h"
1.84      cvs        37: #include "TextFile.h"
1.224     cvs        38: #include "XML.h"
1.1       cvs        39: #include "amayamsg.h"
1.156     cvs        40: #include "parser.h"
1.25      cvs        41: #define NAME_LENGTH     32
                     42: 
1.130     cvs        43: #define URL_STR       "/"
                     44: #define URL_SEP       '/'
1.245     cheyroul   45: 
1.36      cvs        46: 
1.94      cvs        47: /* Number of views used in Amaya */
                     48: #define AMAYA_MAX_VIEW_DOC  7
                     49: 
1.141     cvs        50: /* the type of character convertion we want to make on local URLs */
                     51: typedef enum _ConvertionType
                     52: {
                     53:   AM_CONV_NONE = 0,
                     54:   AM_CONV_URL_SEP = 0x1, /* converts URL_SEPs into DIR_SEPs */
                     55:   AM_CONV_PERCENT = 0x2, /* converts %xx into the equiv. char */
                     56:   AM_CONV_ALL = 0xFFFF   /* do everything */
                     57: }
                     58: ConvertionType;
                     59: 
1.139     cvs        60: /* the structure used for exchanging HTTP header info between the net library
                     61:    and amaya */
                     62: typedef struct _AHTHeaders
                     63:   {
1.198     cvs        64:     char *content_type;
                     65:     char *charset;
                     66:     char *content_length;
                     67:     char *reason;
1.214     kahan      68:     char *content_location;
1.238     kahan      69:     char *full_content_location;
1.246     vatton     70:     int   status;
1.139     cvs        71:   }
                     72: AHTHeaders;
                     73: 
1.320     vatton     74: /* the HTTP header name we want to make visible to the application */
                     75: typedef enum _AHTHeaderName
                     76:   {
                     77:     AM_HTTP_CONTENT_TYPE = 0,
                     78:     AM_HTTP_CHARSET = 1,
                     79:     AM_HTTP_CONTENT_LENGTH = 2,
                     80:     AM_HTTP_REASON = 3,
                     81:     AM_HTTP_CONTENT_LOCATION = 4,
                     82:     AM_HTTP_FULL_CONTENT_LOCATION = 5
                     83:   } 
                     84: AHTHeaderName;
                     85: 
1.50      cvs        86: /* The structures used for request callbacks */
                     87: typedef void   TIcbf (Document doc, int status, char *urlName,
1.139     cvs        88:                      char *outputfile, const AHTHeaders *http_headers,
1.50      cvs        89:                      const char *data_block, int data_block_size,
                     90:                      void *context);
                     91: 
1.198     cvs        92: typedef void  TTcbf (Document doc, int status, char *urlName,
1.312     cvs        93:                      char *outputfile, char *proxyName,
                     94:                      const AHTHeaders *http_headers, void *context);
1.50      cvs        95: 
1.320     vatton     96: /* the structure used for storing the context of the 
                     97:    GetAmayaDoc_callback function */
                     98: typedef struct _AmayaDoc_context
                     99: {
                    100:   Document   doc;
                    101:   Document   baseDoc;
                    102:   ThotBool   history;
                    103:   ThotBool   local_link;
                    104:   char      *target;
                    105:   char      *documentname; /* the document name */
                    106:   char      *initial_url;  /* initial loaded URL */
                    107:   char      *form_data;
                    108:   int        method;
                    109:   ThotBool   inNewWindow;
                    110:   TTcbf     *cbf;
                    111:   void      *ctx_cbf;
                    112: } AmayaDoc_context;
                    113: 
                    114: /* the structure used for storing the context of the 
                    115:    Reload_callback function */
                    116: typedef struct _RELOAD_context
                    117: {
                    118:   Document   newdoc;
                    119:   char      *documentname;
                    120:   char      *form_data;
                    121:   int        method;
                    122:   int        position; /* volume preceding the the first element to be shown */
                    123:   int        distance; /* distance from the top of the window to the top of this
                    124:                    element (% of the window height) */
                    125:   int        visibility; /* register the current visibility */
                    126:   ThotBool   maparea; /* register the current maparea */
                    127: } RELOAD_context;
                    128: 
1.25      cvs       129: /* How are Network accesses provided ? */
                    130: #include "libwww.h"
1.1       cvs       131: 
1.66      cvs       132: /* The different events to open a new document */
1.41      cvs       133: typedef enum _ClickEvent {
1.73      cvs       134:   CE_ABSOLUTE, CE_RELATIVE, CE_FORM_POST, CE_FORM_GET,
1.153     cvs       135:   CE_HELP, CE_MAKEBOOK, CE_LOG , CE_TEMPLATE, CE_INIT,
1.320     vatton    136:   CE_CSS, CE_ANNOT, CE_INSTANCE
1.41      cvs       137: } ClickEvent;
1.20      cvs       138: 
                    139: #define NO               0
                    140: #define YES              1
                    141: 
1.165     cvs       142: /* dialogues */
1.20      cvs       143: #define URLForm          1
1.29      cvs       144: #define OpenForm         2
                    145: #define URLName          3
                    146: #define LocalName        4
                    147: #define DirSelect        5
                    148: #define DocSelect        6
1.20      cvs       149: #define StopCommand      7
1.29      cvs       150: #define SaveForm         8
1.20      cvs       151: #define DirSave          9
                    152: #define DocSave         10
                    153: #define ToggleSave      11
1.29      cvs       154: #define NameSave        12
1.30      cvs       155: #define ImgDirSave      13
1.208     vatton    156: #define ConfirmForm     14
                    157: #define ConfirmText     15
                    158: #define AttrHREFForm    16
                    159: #define AttrHREFText    17
                    160: #define FormAnswer      18
                    161: #define RealmText       19
                    162: #define AnswerText      20
                    163: #define NameText        21
                    164: #define PasswordText    22
                    165: #define FilterText      23
                    166: #define ClassForm       24
                    167: #define ClassSelect     25
                    168: #define AClassForm      26
                    169: #define AClassSelect    27
                    170: #define ConfirmSave     28
                    171: #define ConfirmSaveList 29
                    172: #define BrowserDirSelect   30
                    173: #define BrowserDocSelect   31
                    174: #define BrowserFilterText  32
                    175: #define HREFLocalName   33
                    176: #define MakeIdMenu      34
                    177: #define mElemName       35
                    178: #define mAddId          36
                    179: #define mRemoveId       37
                    180: #define mIdUseSelection 38
                    181: #define mIdStatus       39
                    182: #define FileBrowserForm 40
                    183: #define FileBrowserText 41
                    184: #define FileBrowserFilter 42
                    185: #define FileBrowserLocalName 43
                    186: #define MimeTypeForm    44
                    187: #define MimeTypeSel     45
                    188: #define MimeTypeSave    46
                    189: #define CharsetForm     47
                    190: #define CharsetSave     48
                    191: #define CharsetSel      49
                    192: #define RadioSave       50
                    193: #define MimeFormStatus  51
                    194: #define SaveFormStatus  52
1.293     gully     195: #define OpenLocation    53
1.208     vatton    196: /* do not add items before this entry */
1.293     gully     197: #define OptionMenu     54
1.296     tollenae  198: #define OpenTemplate    55
1.318     carcone   199: #define PasswordSave    56
1.205     kahan     200: 
1.134     cvs       201: /* MAX_SUBMENUS references reserved for submenus of Option menu */
                    202: /* Do not insert new entries here */
1.91      cvs       203: #define MAX_SUBMENUS    400
1.208     vatton    204: #define Label1          54 /* no callback */
                    205: #define Label2          55 /* no callback */
                    206: #define Label3          56 /* no callback */
                    207: #define Label4          57 /* no callback */
                    208: #define About1         58 /* no callback */
                    209: #define About2         59 /* no callback */
                    210: #define About3         60 /* no callback */
                    211: #define Version                61 /* no callback */
                    212: #define CharsetSaveL    62 /* no callback */
                    213: #define MimeTypeSaveL   63 /* no callback */
                    214: /* first callback available: 454 */
1.177     cvs       215: #define AboutForm              454
                    216: #define TableForm       455
                    217: #define TableRows       456
                    218: #define TableCols       457
                    219: #define TableBorder     458
                    220: #define MathEntityForm  459
                    221: #define MathEntityText  460
                    222: #define TitleForm       461
                    223: #define TitleText       462
1.192     cvs       224: #define DocInfoForm           463
                    225: #define DocInfoMimeTypeTitle  464
                    226: #define DocInfoMimeType       465
                    227: #define DocInfoCharsetTitle   466
                    228: #define DocInfoCharset        467
                    229: #define DocInfoContentTitle   468
                    230: #define DocInfoContent        469
1.215     kahan     231: #define DocInfoURLTitle       470
                    232: #define DocInfoURL            471
1.194     cvs       233: #define DocInfoTitle1         472
                    234: #define DocInfoTitle2         473
                    235: #define DocInfoContent1       474
                    236: #define DocInfoContent2       475
1.215     kahan     237: #define DocInfoLocationTitle  476
                    238: #define DocInfoLocation       477
1.222     kahan     239: #define DocInfoDocTypeTitle   478
                    240: #define DocInfoDocType        479
1.317     vatton    241: #define CssDirSave            480
1.323     vatton    242: #define JavascriptPromptForm 481
                    243: #define JavascriptPromptText 482
                    244: #define MAX_REF 483
1.20      cvs       245: 
1.150     cvs       246: #define FormPrint        1
                    247: #define PrintOptions     2
                    248: #define PaperFormat      3
                    249: #define PrintSupport     4
                    250: #define PPrinterName     5
                    251: #define PaperOrientation 6
                    252: #define PPagesPerSheet   7
                    253: #define PRINT_MAX_REF   8
1.147     cvs       254: 
1.234     cvs       255: #define FormLibrary              1
                    256: #define CopySVGLibSelection      2
                    257: #define ReferToSVGLibSelection   3
                    258: #define AddSVGModel              4
                    259: #define NewSVGFileURL            5
                    260: #define SVGLibCatalogueTitle     6
1.240     cvs       261: #define NewSVGLibrary           13
                    262: #define SVGLibraryURL           14
1.242     cvs       263: #define SVGLibraryDir           15
                    264: #define SVGLibrarySel           16
                    265: #define LibraryFilter           17
                    266: #define SVGLibFileBrowser       18
                    267: #define SVGLibFileBrowserText   19
                    268: #define LibraryCopyOption       20
                    269: #define LIBRARY_MAX_REF         21
1.234     cvs       270: 
1.147     cvs       271: #define ImageURL       1
1.327     vatton    272: #define FormImage            2
                    273: #define FormObject      3
                    274: #define IMAGE_MAX_REF   4
1.147     cvs       275: 
                    276: #define CSSForm         0
                    277: #define CSSSelect       1
1.291     vatton    278: #define CSSEntry        2
1.303     vatton    279: #define CSSValue        3
                    280: #define MAX_CSS_REF     4
1.290     vatton    281: 
1.147     cvs       282: #define FormMaths 0
1.313     vatton    283: #define FormMathOperator 1
1.316     vatton    284: 
1.314     vatton    285: #define FormMathFenceAttributes 2
                    286: #define MathAttributeOpen 3
                    287: #define MathAttributeSeparators 4
                    288: #define MathAttributeClose 5
                    289: 
1.316     vatton    290: #define FormMathIntegral 6
                    291: #define MathIntegralNumber 7
                    292: #define MathIntegralContour 8
                    293: #define MathIntegralType 9
                    294: 
                    295: #define MenuMaths 10
                    296: #define MenuMaths1 11
                    297: #define MAX_MATHS 12
1.147     cvs       298: 
1.165     cvs       299: #define FormGraph 0
                    300: #define MenuGraph 1
1.225     vatton    301: #define MenuGraph1 2
                    302: #define MAX_GRAPH 3
1.165     cvs       303: 
1.11      cvs       304: /* The possible GET/POST/PUT request modes */
                    305: /*synchronous request*/
                    306: #define AMAYA_SYNC     1       /*0x000001 */  
                    307: /*synchronous request with incremental callbacks */
                    308: #define AMAYA_ISYNC    2       /*0x000010 */  
                    309: /*asynchronous request */
1.5       cvs       310: #define AMAYA_ASYNC    4       /*0x000100 */
1.11      cvs       311: /*asynchronous request with incremental callbacks */
1.5       cvs       312: #define AMAYA_IASYNC   8       /*0x001000 */
1.11      cvs       313: /* send the form using the POST HTTP method */
1.5       cvs       314: #define AMAYA_FORM_POST 16     /*0x010000 */
1.11      cvs       315: /* send the form using the GET HTTP method */
1.5       cvs       316: #define AMAYA_FORM_GET  32     /*0x100000 */
1.23      cvs       317: /* bypass caching */
1.265     vatton    318: #define AMAYA_NOCACHE  64 /* 2^6 */
1.23      cvs       319: /* don't follow redirections */
1.265     vatton    320: #define AMAYA_NOREDIR  128 /* 2^7 */
1.48      cvs       321: /* Prevents a stop race condition in ASYNC transfers */
1.265     vatton    322: #define AMAYA_ASYNC_SAFE_STOP  256 /* 2^8 */
                    323: #define AMAYA_LOAD_CSS   512 /* 2^9 */
                    324: #define AMAYA_FLUSH_REQUEST 1024 /* 2^10 */
                    325: #define AMAYA_USE_PRECONDITIONS 2048 /* 2^11 */
                    326: #define AMAYA_LOAD_IMAGE 4096 /* 2^12 */
1.167     kahan     327: /* post an annonation */
1.265     vatton    328: #define AMAYA_FILE_POST 8192 /* 2^13 */
1.167     kahan     329: /* delete an annotation */
1.265     vatton    330: #define AMAYA_DELETE    16384 /* 2^14 */
                    331: #define AMAYA_MBOOK_IMAGE 32768 /* 2^15 */
1.252     kahan     332: /* post an annotation using PUT */
1.265     vatton    333: #define AMAYA_SIMPLE_PUT 65536 /* 2^16 */
1.252     kahan     334: 
1.87      cvs       335: /*
                    336:  * Flags to indicate the action to take when the network options
                    337:  * are modified
                    338:  */
                    339: #define AMAYA_CACHE_RESTART 1
                    340: #define AMAYA_PROXY_RESTART 2
1.114     cvs       341: #define AMAYA_LANNEG_RESTART 4
                    342: #define AMAYA_SAFEPUT_RESTART 8
1.87      cvs       343: 
1.26      cvs       344: /*
                    345:  * Flags to indicate the status of the network requests associated
                    346:  * to a document.
                    347:  */
                    348: 
                    349: #define AMAYA_NET_INACTIVE 1
                    350: #define AMAYA_NET_ERROR    2
                    351: #define AMAYA_NET_ACTIVE   4
                    352: 
1.25      cvs       353: /*
                    354:  * Flags for HTParse, specifying which parts of the URL are needed
                    355:  */
                    356: #define AMAYA_PARSE_ACCESS      16  /* Access scheme, e.g. "HTTP" */
                    357: #define AMAYA_PARSE_HOST        8   /* Host name, e.g. "www.w3.org" */
                    358: #define AMAYA_PARSE_PATH        4   /* URL Path, e.g. "pub/WWW/TheProject.html" */
                    359: #define AMAYA_PARSE_ANCHOR      2   /* Fragment identifier, e.g. "news" */
                    360: #define AMAYA_PARSE_PUNCTUATION 1   /* Include delimiters, e.g, "/" and ":" */
                    361: #define AMAYA_PARSE_ALL         31  /* All the parts */
1.1       cvs       362: 
1.328     vatton    363: #define MAX_AutoSave_list 20
                    364: 
1.198     cvs       365: THOT_EXPORT int        AMAYA;     /* Index of amaya message table */
1.273     gully     366: extern      int        appArgc;          /* defined in EDITORAPP.c */
                    367: extern      char     **appArgv;   /* defined in EDITORAPP.c */
1.328     vatton    368: 
                    369: THOT_EXPORT char      *AttrHREFvalue;
                    370: THOT_EXPORT char      *LastURLName;    /* last URL requested               */
                    371: THOT_EXPORT char      *Error_DocURL; /* The parsed file */
                    372: THOT_EXPORT char      *DirectoryName;  /* local path of the document       */
                    373: THOT_EXPORT char      *DocumentName;   /* document name                    */
                    374: THOT_EXPORT char      *SavePath;       /* saving path                      */
                    375: THOT_EXPORT char      *SaveName;       /* saving name of the document      */
                    376: THOT_EXPORT char       SaveFileName[MAX_LENGTH];       /* concatenation of SavePath+SaveName */
                    377: THOT_EXPORT char      *ObjectName;     /* document name                    */
                    378: THOT_EXPORT char      *SaveImgsURL;    /* where to save remote Images      */
                    379: THOT_EXPORT char      *SaveCssURL;     /* where to save remote Images      */
                    380: THOT_EXPORT char      *TargetName;
                    381: THOT_EXPORT char      *SavingFile;     /* complete path or URL of the document */
                    382: THOT_EXPORT char      *SavedDocumentURL;/* URL of the document that contained the elements
                    383:                                            that are now in the Cut and Paste buffer */
                    384: THOT_EXPORT char      *AutoSave_list;
                    385: THOT_EXPORT char      *Template_list; /* list of templates */
                    386: THOT_EXPORT char      *URL_list; /* list of previous open URLs */
                    387: #ifdef _SVG
                    388: THOT_EXPORT char      *SVGlib_list;
                    389: #endif /* _SVG */
1.198     cvs       390: THOT_EXPORT char       TempFileDirectory[MAX_LENGTH];
                    391: THOT_EXPORT char       Answer_text[MAX_LENGTH];
                    392: THOT_EXPORT char       Answer_name[NAME_LENGTH];
                    393: THOT_EXPORT char       Answer_password[NAME_LENGTH];
                    394: THOT_EXPORT char       Display_password[NAME_LENGTH];
1.334     vatton    395: THOT_EXPORT char       CurrentNameSpace[MAX_LENGTH]; // namespace of the sniffed document
1.198     cvs       396: THOT_EXPORT char       ScanFilter[NAME_LENGTH]; /* to scan directories    */
                    397: THOT_EXPORT char       MathMLEntityName[MAX_LENGTH]; /* entity name typed by the user for a MathML expression */
1.323     vatton    398: THOT_EXPORT char       JavascriptPromptValue[MAX_LENGTH]; /* value typed by the user in a prompt form */
1.198     cvs       399: THOT_EXPORT char       IdElemName[MAX_LENGTH]; /* element name typed by the user from the MakeID menu */
                    400: THOT_EXPORT char       IdStatus[50]; /* element name typed by the user from the MakeID menu */
                    401: THOT_EXPORT char       ImgFilter[NAME_LENGTH];
1.279     cvs       402: THOT_EXPORT char       DirectoryImage[MAX_LENGTH];
                    403: THOT_EXPORT char       LastURLImage[MAX_LENGTH];
                    404: THOT_EXPORT char       ImageName[MAX_LENGTH];
                    405: THOT_EXPORT char       ImgAlt[MAX_LENGTH];
1.328     vatton    406: THOT_EXPORT char       UserMimeType[MAX_LENGTH];
1.205     kahan     407:                                         /* Used to pass the user's MIME type 
                    408:                                           choice when doing a Save As of a
                    409:                                           local object to a server */
1.328     vatton    410: THOT_EXPORT char       UserCharset[MAX_LENGTH];
1.205     kahan     411:                                         /* Used to pass the user's charset
                    412:                                           choice when doing a Save As of a
                    413:                                           local object to a server */
1.328     vatton    414: THOT_EXPORT char       SaveFormTmp[MAX_LENGTH];
1.207     kahan     415:                                         /* Used for storing the temporary
                    416:                                           changes in the ChangeCharset and
                    417:                                           ChangeMimetype forms */
1.328     vatton    418: 
                    419: THOT_EXPORT int        URL_list_len;
                    420: THOT_EXPORT int        Template_list_len;
                    421: /* list of auto-saved files */
                    422: THOT_EXPORT int        AutoSave_list_len;
                    423: THOT_EXPORT int        AutoSave_Interval;
1.198     cvs       424: THOT_EXPORT int        Lg_password;
                    425: THOT_EXPORT int        BaseDialog;
                    426: THOT_EXPORT int        BasePrint;
                    427: THOT_EXPORT int        BaseImage;
                    428: THOT_EXPORT int               MathsDialogue;
                    429: THOT_EXPORT int               GraphDialogue;
                    430: THOT_EXPORT int               BaseCSS;
                    431: THOT_EXPORT int        ReturnOption;
                    432: THOT_EXPORT int        NumberRows;
                    433: THOT_EXPORT int        NumberCols;
1.325     vatton    434: THOT_EXPORT int        TBorder; // border width of created tables
1.328     vatton    435: THOT_EXPORT int        TCaption; // value 0=no, 1=yes
                    436: THOT_EXPORT int        ImgPosition; // value 0=inline, 1=left, 2=center 3=right
1.198     cvs       437: THOT_EXPORT int        ReturnOptionMenu;
                    438: THOT_EXPORT int        IdDoc;
1.234     cvs       439: THOT_EXPORT int        BaseLibrary;
1.328     vatton    440: 
1.198     cvs       441: THOT_EXPORT Document   CurrentDocument;
                    442: THOT_EXPORT Document   SavingDocument;
                    443: THOT_EXPORT Document   SavingObject;
                    444: THOT_EXPORT Document   AttrHREFdocument;
                    445: THOT_EXPORT Document   DocBook;
                    446: THOT_EXPORT Document   IncludedDocument;
1.294     vatton    447: THOT_EXPORT Document   ParsedDoc; /* The document to which CSS are applied */
                    448: THOT_EXPORT Document   ParsedCSS; /* The CSS document currently parsed */
1.328     vatton    449: THOT_EXPORT Document   SelectionDoc;
                    450: THOT_EXPORT Document   W3Loading; /* the document being loaded */
                    451: THOT_EXPORT Document   BackupDocument; /* the current backup */
1.198     cvs       452: THOT_EXPORT Element    AttrHREFelement;
1.329     vatton    453: THOT_EXPORT Element    Right_ClikedElement;
1.328     vatton    454: 
                    455: THOT_EXPORT FILE      *ErrFile;
                    456: THOT_EXPORT FILE      *CSSErrFile;
                    457: 
                    458: THOT_EXPORT ThotBool   URL_list_keep;
                    459: THOT_EXPORT ThotBool   Answer_save_password;
1.325     vatton    460: THOT_EXPORT ThotBool   TMAX_Width;
1.281     vatton    461: THOT_EXPORT ThotBool   AttrHREFundoable;
                    462: THOT_EXPORT ThotBool   IsNewAnchor;
                    463: THOT_EXPORT ThotBool   UseLastTarget;
                    464: THOT_EXPORT ThotBool   LinkAsCSS;
                    465: THOT_EXPORT ThotBool   LinkAsXmlCSS;
1.323     vatton    466: THOT_EXPORT ThotBool   LinkAsJavascript;
1.198     cvs       467: THOT_EXPORT ThotBool   SaveAsHTML;
                    468: THOT_EXPORT ThotBool   SaveAsXML;
                    469: THOT_EXPORT ThotBool   SaveAsText;
1.324     vatton    470: THOT_EXPORT ThotBool   CopyImages;         /* should amaya copy images in Save As? */
                    471: THOT_EXPORT ThotBool   CopyCss;         /* should amaya copy CSS in Save As? */
                    472: THOT_EXPORT ThotBool   UpdateURLs;         /* should amaya update URLs in Save As? */
                    473: THOT_EXPORT ThotBool   RemoveTemplate; /* should amaya remove template in Save As? */
1.198     cvs       474: THOT_EXPORT ThotBool   UserAnswer;
1.280     vatton    475: THOT_EXPORT ThotBool   ExtraChoice;
1.281     vatton    476: THOT_EXPORT ThotBool   TableMenuActive;
                    477: THOT_EXPORT ThotBool   MTableMenuActive;
1.287     gully     478: THOT_EXPORT ThotBool   DontReplaceOldDoc;
1.198     cvs       479: THOT_EXPORT ThotBool   InNewWindow;
                    480: THOT_EXPORT ThotBool   SelectionInPRE;
                    481: THOT_EXPORT ThotBool   SelectionInComment;
                    482: THOT_EXPORT ThotBool   SelectionInEM;
                    483: THOT_EXPORT ThotBool   SelectionInSTRONG;
                    484: THOT_EXPORT ThotBool   SelectionInCITE;
                    485: THOT_EXPORT ThotBool   SelectionInABBR;
                    486: THOT_EXPORT ThotBool   SelectionInACRONYM;
                    487: THOT_EXPORT ThotBool   SelectionInINS;
                    488: THOT_EXPORT ThotBool   SelectionInDEL;
                    489: THOT_EXPORT ThotBool   SelectionInDFN;
                    490: THOT_EXPORT ThotBool   SelectionInCODE;
                    491: THOT_EXPORT ThotBool   SelectionInVAR;
                    492: THOT_EXPORT ThotBool   SelectionInSAMP;
                    493: THOT_EXPORT ThotBool   SelectionInKBD;
                    494: THOT_EXPORT ThotBool   SelectionInI;
                    495: THOT_EXPORT ThotBool   SelectionInB;
                    496: THOT_EXPORT ThotBool   SelectionInTT;
                    497: THOT_EXPORT ThotBool   SelectionInBIG;
                    498: THOT_EXPORT ThotBool   SelectionInSMALL;
1.335   ! carcone   499: THOT_EXPORT ThotBool   SelectionInSpan;
1.198     cvs       500: THOT_EXPORT ThotBool   SelectionInSub;
                    501: THOT_EXPORT ThotBool   SelectionInSup;
                    502: THOT_EXPORT ThotBool   SelectionInQuote;
                    503: THOT_EXPORT ThotBool   SelectionInBDO;
                    504: THOT_EXPORT ThotBool   HTMLErrorsFound;
                    505: THOT_EXPORT ThotBool   XMLErrorsFound;
1.203     cvs       506: THOT_EXPORT ThotBool   CSSErrorsFound;
1.198     cvs       507: THOT_EXPORT ThotBool   XMLErrorsFoundInProfile;
                    508: THOT_EXPORT ThotBool   XMLNotWellFormed;
1.283     vatton    509: THOT_EXPORT ThotBool   XMLInvalidToken;
1.204     cvs       510: THOT_EXPORT ThotBool   XMLCharacterNotSupported;
                    511: THOT_EXPORT ThotBool   XMLUnknownEncoding;
1.261     vatton    512: /*  enabling/disabling DAVLib */
                    513: THOT_EXPORT ThotBool   DAVLibEnable;
1.267     vatton    514: THOT_EXPORT ThotBool   Synchronizing;
1.272     vatton    515: THOT_EXPORT ThotBool   AmayaUniqueInstance;
1.198     cvs       516: THOT_EXPORT ThotBool   IdApplyToSelection; /* used in the Make ID menu */
1.310     vatton    517: THOT_EXPORT ThotBool   Check_read_ids; /* check all parsed IDs */
1.328     vatton    518: 
1.53      cvs       519: typedef enum
                    520: {
1.285     vatton    521:   docFree,
1.53      cvs       522:   docHTML,
1.74      cvs       523:   docText,
1.75      cvs       524:   docImage,
1.85      cvs       525:   docCSS,
1.110     cvs       526:   docSource,
1.127     cvs       527:   docAnnot,
1.164     cvs       528:   docLog,
                    529:   docSVG,
                    530:   docMath,
1.234     cvs       531:   docXml,
1.311     vatton    532:   docTemplate,
1.256     kahan     533:   docLibrary,
1.297     gully     534:   docBookmark,
1.323     vatton    535:   docJavascript,
1.297     gully     536:   docTypeMax
1.53      cvs       537: } DocumentType;
1.64      cvs       538: 
1.297     gully     539: THOT_EXPORT const char *DocumentTypeNames[docTypeMax]
                    540: #ifdef THOT_INITGLOBALVAR
                    541: = 
                    542: {
                    543:   "free",    /* docFree */
                    544:   "html",    /* docHTML */
                    545:   "text",    /* docText */
                    546:   "image",   /* docImage */
                    547:   "css",     /* docCSS */
                    548:   "source",  /* docSource */
                    549:   "annot",   /* docAnnot */
                    550:   "log",     /* docLog */
                    551:   "svg",     /* docSVG */
                    552:   "math",    /* docMath */
                    553:   "xml",     /* docXml */
                    554:   "library", /* docLibrary */
                    555:   "bookmark",/* docBookmark */
                    556: }
                    557: #endif /* THOT_INITGLOBALVAR */
                    558: ; /* do not remove this ; */
1.64      cvs       559: 
1.332     kia       560: 
1.64      cvs       561: /* a record for data associated with a request */
                    562: typedef struct _DocumentMetaDataElement
                    563: {
1.244     vatton    564:   char      *initial_url;      /* if the server returns a different URL name
                    565:                                  after a redirection, we store here the one
                    566:                                  that the browser first asked */
                    567:   char      *form_data;        /* form data associated with a URL */
                    568:   char      *content_type;     /* content type returned by the server */
                    569:   char      *charset;          /* charset returned by the server */
                    570:   char      *content_length;   /* content length returned by the server */
                    571:   char      *content_location; /* simplified content location returned by the server */
                    572:   char      *full_content_location; /* full content location returned by the server */
1.307     vatton    573:   char      *reason;           /* http_headers reason*/
1.308     vatton    574:   int        method;           /* method used to send this data */
1.321     vatton    575:   Element    link_icon;        /* there is a link to an icon */
1.135     cvs       576:   ThotBool   xmlformat;        /* the document should be exported in xml format */
1.321     vatton    577:   ThotBool   compound;         /* the document is a compound document */
1.144     kahan     578: #ifdef ANNOTATIONS
                    579:   Document   source_doc;       /* if the document is an annotation,
1.330     vatton    580:                                  this variable giveso the annoted document docid */
1.144     kahan     581: #endif /* ANNOTATIONS */
1.332     kia       582:   
                    583: //#ifdef TEMPLATES
                    584: //  ThotBool  isTemplate;       /* True if the document is a XTiger template or library,
                    585: //                         False if template instance or not using XTiger.*/
                    586: //  ThotBool  isInternalTemplate;  /* True if the template is loaded internaly, not used ad edited document.*/ 
                    587: //  char      *template_url;       /* the url of the original template (or null if not an instance) */
                    588: //  char      *template_version;   /* if this document is derived from a template,
                    589: //                                  The name and the version of the template used to create the document 
                    590: //                                  is stored in this variable */
                    591: //#endif /* TEMPLATES */
1.300     tollenae  592:   
1.64      cvs       593: } DocumentMetaDataElement;
1.202     cvs       594: 
1.64      cvs       595: 
1.200     cvs       596: #define DocumentTableLength MAX_DOCUMENTS
1.110     cvs       597: /* URL of each loaded document */
1.333     vatton    598: extern char                         *DocumentURLs[MAX_DOCUMENTS];
1.64      cvs       599: /* Any formdata associated with a URL */
                    600: THOT_EXPORT DocumentMetaDataElement *DocumentMeta[DocumentTableLength];
1.110     cvs       601: /* Type of document */
1.198     cvs       602: THOT_EXPORT DocumentType             DocumentTypes[DocumentTableLength];
1.213     vatton    603: /* Document that shows map areas */
                    604: THOT_EXPORT ThotBool                 MapAreas[DocumentTableLength];
1.305     cvs       605: /* Document splitted horizontally */
                    606: THOT_EXPORT ThotBool                 HSplit[DocumentTableLength];
                    607: /* Document splitted vertically */
                    608: THOT_EXPORT ThotBool                 VSplit[DocumentTableLength];
1.110     cvs       609: /* identifier of the document displaying the source code */
1.198     cvs       610: THOT_EXPORT Document                 DocumentSource[DocumentTableLength];
1.110     cvs       611: /* The whole document is loaded when the corresponding entry in FilesLoading is 0 */
1.198     cvs       612: THOT_EXPORT int                      FilesLoading[DocumentTableLength];
1.110     cvs       613: /* Status (error, success) of the download of the objects of a document */
1.198     cvs       614: THOT_EXPORT int                      DocNetworkStatus[DocumentTableLength];
1.42      cvs       615: 
1.5       cvs       616: 
1.64      cvs       617: #define IMAGE_NOT_LOADED        0
1.328     vatton    618: #define IMAGE_LOCAL                      1
                    619: #define IMAGE_LOADED                   2
                    620: #define IMAGE_MODIFIED               3
1.1       cvs       621: 
1.109     cvs       622: 
1.262     vatton    623: typedef void (*LoadedImageCallback)(Document doc, Element el, char *file,
                    624:                                    void *extra, ThotBool isnew);
1.5       cvs       625: typedef struct _ElemImage
                    626:   {
1.27      cvs       627:      Element             currentElement;/* first element using this image */
1.5       cvs       628:      struct _ElemImage  *nextElement;
1.27      cvs       629:      LoadedImageCallback callback;     /* Callback for non-standard handling */
                    630:      void              *extra;         /* any extra info for the CallBack */
1.5       cvs       631:   }
                    632: ElemImage;
                    633: 
                    634: typedef struct _LoadedImageDesc
                    635:   {
1.198     cvs       636:      char               *originalName;  /* complete URL of the image                */
1.262     vatton    637:      char               *localName;     /* relative name (without path) of the image*/
                    638:      char               *tempfile;      /* name of the file that stores the image   */ 
1.205     kahan     639:      char               *content_type;  /* the MIME type as sent by the server      */
1.58      cvs       640:      struct _LoadedImageDesc *prevImage;/* double linked list                       */
                    641:      struct _LoadedImageDesc *nextImage;/* easier to unchain                        */
                    642:      Document            document;     /* document concerned                       */
                    643:      struct _ElemImage  *elImage;      /* first element using this image           */
                    644:      int                 imageType;     /* the type of the image                    */
                    645:      int                 status;       /* the status of the image loading          */
1.5       cvs       646:   }
                    647: LoadedImageDesc;
1.109     cvs       648: 
                    649: /* the structure used for storing the context of the 
                    650:    FetchAndDisplayImages_callback function */
                    651: typedef struct _FetchImage_context {
1.198     cvs       652:   char               *base_url;
1.109     cvs       653:   LoadedImageDesc    *desc;
                    654: } FetchImage_context;
                    655: 
1.5       cvs       656: 
1.14      cvs       657: THOT_EXPORT LoadedImageDesc *ImageURLs;
1.31      cvs       658: THOT_EXPORT LoadedImageDesc *ImageLocal;
1.1       cvs       659: 
1.88      cvs       660: /* The default Amaya HOME pages (page shown at boot time */
1.292     vatton    661: #ifdef _WX
                    662: #define AMAYA_PAGE  "AmayaPage_WX.html"
                    663: #else /* _WX */
1.198     cvs       664: #define AMAYA_PAGE  "AmayaPage.html"
1.292     vatton    665: #endif /* _WX */
1.198     cvs       666: #define AMAYA_PAGE_DOC  "http://www.w3.org/Amaya/User/"
1.137     cvs       667: 
                    668: #ifndef MAX_TXT_LEN
                    669: #define MAX_TXT_LEN 1024       /* Max. length of strings */
                    670: #endif  /* MAX_TXT_LEN */
1.88      cvs       671: 
1.226     kahan     672: /* a collection of the XML MIME types that keep changing and that we use in Amaya */
                    673: #define AM_XHTML_MIME_TYPE        "application/xhtml+xml"
1.229     kahan     674: #define AM_SVG_MIME_TYPE          "image/svg+xml"
1.226     kahan     675: #define AM_MATHML_MIME_TYPE       "application/mathml+xml"
                    676: #define AM_GENERIC_XML_MIME_TYPE  "text/xml"
                    677: 
1.231     cvs       678: 
                    679: /* Doctype declarations used in Amaya */
1.275     cvs       680: /* first line of doctype declarations */
1.232     vatton    681: #define DOCTYPE1_HTML_STRICT          "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\""
                    682: #define DOCTYPE1_HTML_TRANSITIONAL    "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\""
                    683: #define DOCTYPE1_XHTML10_BASIC        "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML Basic 1.0//EN\""
                    684: #define DOCTYPE1_XHTML10_STRICT       "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\""
                    685: #define DOCTYPE1_XHTML11              "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\""
                    686: #define DOCTYPE1_XHTML11_PLUS_MATHML  "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN\""
1.235     quint     687: #define DOCTYPE1_XHTML11_PLUS_MATHML_PLUS_SVG  "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN\""
1.232     vatton    688: #define DOCTYPE1_XHTML10_TRANSITIONAL "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\""
1.331     carcone   689: #define DOCTYPE1_XHTML_PLUS_RDFa      "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML+RDFa 1.0//EN\""
1.232     vatton    690: #define DOCTYPE1_MATHML20             "<!DOCTYPE math PUBLIC \"-//W3C//DTD MathML 2.0//EN\""
                    691: #define DOCTYPE1_SVG10                "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.0//EN\""
1.231     cvs       692: 
1.275     cvs       693: /* second line of doctype declarations */
1.232     vatton    694: #define DOCTYPE2_HTML_STRICT          "      \"http://www.w3.org/TR/html4/strict.dtd\">"
                    695: #define DOCTYPE2_HTML_TRANSITIONAL    "      \"http://www.w3.org/TR/html4/loose.dtd\">"
                    696: #define DOCTYPE2_XHTML10_BASIC        "      \"http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd\">"
                    697: #define DOCTYPE2_XHTML10_STRICT       "      \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"
                    698: #define DOCTYPE2_XHTML11              "      \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">"
1.277     quint     699: #define DOCTYPE2_XHTML11_PLUS_MATHML  "      \"http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd\">"
1.232     vatton    700: #define DOCTYPE2_XHTML11_PLUS_MATHML_PLUS_SVG  "      \"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd\">"
                    701: #define DOCTYPE2_XHTML10_TRANSITIONAL "      \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"
1.331     carcone   702: #define DOCTYPE2_XHTML_PLUS_RDFa      "      \"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd\">"
1.232     vatton    703: #define DOCTYPE2_MATHML20             "      \"http://www.w3.org/TR/MathML2/dtd/mathml2.dtd\">"
1.295     vatton    704: #define DOCTYPE2_SVG10                "      \"http://www.w3.org/TR/2001/REC-SVG-20050904/DTD/svg10.dtd\">"
1.232     vatton    705: 
                    706: #define MATHML_XSLT_NAME     "pmathml.xsl"
1.286     vatton    707: #define MATHML_XSLT_URI      "xml-stylesheet type=\"text/xsl\" href=\""
1.231     cvs       708: 
1.254     quint     709: #define SVG_VERSION "1.0" /* version of the SVG specificatrion implemented
                    710:                             by the Amaya SVG editor */
                    711: 
1.25      cvs       712: #endif /* AMAYA_H */

Webmaster