Took out i18n from Documentor until we have our own gettext, too much of a hassle...
[sdk] / documentor / src / Documentor.ec
1 import "ecere"
2 import "ec"
3 import "HTMLView"
4 import "IDESettings"
5 import "SettingsDialog"
6
7 static Context globalContext { };
8 static OldList defines { };
9 static OldList imports { };
10 static NameSpace globalData;
11 static OldList excludedSymbols { offset = (uint)&((Symbol)0).left }; 
12
13 #define UTF8_NUM_BYTES(x)  (__extension__({ byte b = x; (b & 0x80 && b & 0x40) ? ((b & 0x20) ? ((b & 0x10) ? 4 : 3) : 2) : 1; }))
14
15 default:
16 /*extern */int __ecereVMethodID_class_OnGetString;
17 private:
18
19
20 static void Dummy()
21 {
22 int a;
23 a.OnGetString(null, null, null);
24 }
25
26 static bool editing = true;
27
28 enum CodeObjectType { typeClass, typeData, typeMethod, typeEvent, typeProperty, typeNameSpace, typeDataType, typeEnumValue, typeDataPrivate, typeMethodPrivate, typePropertyPrivate };
29
30 static char * iconNames[CodeObjectType] = 
31 {
32    "<:ecere>constructs/class.png",
33    "<:ecere>constructs/data.png",
34    "<:ecere>constructs/method.png",
35    "<:ecere>constructs/event.png",
36    "<:ecere>constructs/property.png",
37    "<:ecere>constructs/namespace.png",
38    "<:ecere>constructs/dataType.png",
39    "<:ecere>constructs/enumValue.png",
40    "<:ecere>constructs/dataPrivate.png",
41    "<:ecere>constructs/methodPrivate.png",
42    "<:ecere>constructs/propertyPrivate.png"
43 };
44
45 IDESettings settings { }; // instantiate the IDESettings class from the IDESettings.ec file. Do this at a global level so that all methods can access settings.
46
47 IDESettingsContainer settingsContainer
48 {
49    driver = "JSON";
50    data = settings;
51    dataOwner = &settings;
52 };
53
54 // WARNING : This function expects a null terminated string since it recursively concatenate...
55 static void _PrintType(Type type, char * string, bool printName, bool printFunction, bool fullName)
56 {
57    if(type)
58    {
59       switch(type.kind)
60       {
61          case classType:
62             if(type._class && type._class.string)
63             {
64                if(fullName)
65                   strcat(string, type._class.string);
66                else
67                {
68                   if(type._class.registered)
69                   {
70                      char hex[10];
71                      sprintf(hex, "%08x", type._class.registered);
72                      strcat(string, "<a href=\"api://");
73                      strcat(string, hex);
74                      strcat(string, "\" style=\"text-decoration: none;\">");
75                      strcat(string, type._class.registered.name);
76                      strcat(string, "</a>");
77                   }
78                   else
79                      strcat(string, type._class.string);                     
80                }
81             }
82             break;
83          case pointerType:
84          {
85             /*Type funcType;
86             for(funcType = type; funcType && (funcType.kind == pointerType || funcType.kind == arrayType); funcType = funcType.type);
87             if(funcType && funcType.kind == functionType)
88             {
89                Type param;
90                DocPrintType(funcType.returnType, string, false, fullName);
91                strcat(string, "(*");
92                if(printName || funcType.thisClass)
93                {
94                   strcat(string, " ");
95                   if(funcType.thisClass)
96                   {
97                      strcat(string, funcType.thisClass.string);
98                      strcat(string, "::");
99                   }
100                   if(type.name)
101                      strcat(string, type.name);
102                }
103                strcat(string, ")(");
104                for(param = funcType.params.first; param; param = param.next)
105                {
106                   DocPrintType(param, string, false, fullName);
107                   if(param.next) strcat(string, ", ");
108                }
109                strcat(string, ")");               
110             }
111             else*/
112             {
113                _PrintType(type.type, string, false /*printName*/, printFunction, fullName);
114                if(string[strlen(string)-1] == '(')
115                   strcat(string, "*");
116                else
117                   strcat(string, " *");
118             }
119             break;
120          }
121          case voidType: strcat(string, "void"); break;
122          case intType:  strcat(string, type.isSigned ? "int" : "uint"); break;
123          case int64Type:  strcat(string, type.isSigned ? "int64" : "uint64"); break;
124          case charType: strcat(string, type.isSigned ? "char" : "byte"); break;
125          case shortType: strcat(string, type.isSigned ? "short" : "uint16"); break;
126          case floatType: strcat(string, "float"); break;
127          case doubleType: strcat(string, "double"); break;
128          case structType:
129             if(type.enumName)
130             {
131                strcat(string, "struct ");
132                strcat(string, type.enumName);
133             }
134             else if(type.typeName)
135             {
136                strcat(string, type.typeName);
137             }
138             else
139             {
140                /*
141                strcat(string, "struct ");
142                strcat(string,"(unnamed)");
143                */
144                Type member;
145                strcat(string, "struct {");
146                for(member = type.members.first; member; member = member.next)
147                {
148                   DocPrintType(member, string, true, fullName);
149                   strcat(string,"; ");
150                }
151                strcat(string,"}");
152             }
153             break;
154          case unionType:
155             if(type.enumName)
156             {
157                strcat(string, "union ");
158                strcat(string, type.enumName);
159             }
160             else if(type.typeName)
161             {
162                strcat(string, type.typeName);
163             }
164             else
165             {
166                strcat(string, "union ");
167                strcat(string,"(unnamed)");
168             }
169             break;
170          case enumType:
171             if(type.enumName)
172             {
173                strcat(string, "enum ");
174                strcat(string, type.enumName);
175             }
176             else if(type.typeName)
177             {
178                strcat(string, type.typeName);
179             }
180             else
181                strcat(string, "enum");
182             break;
183          case functionType:
184          {
185             if(printFunction)
186             {
187                if(type.dllExport)
188                   strcat(string, "dllexport ");
189                DocPrintType(type.returnType, string, false, fullName);
190                strcat(string, " ");
191             }
192             
193             // DANGER: Testing This
194             if(printName)
195             {
196                if(type.name)
197                {
198                   if(fullName)
199                      strcat(string, type.name);
200                   else
201                   {
202                      char * name = RSearchString(type.name, "::", strlen(type.name), true, false);
203                      if(name) name += 2; else name = type.name;
204                      strcat(string, "<b>");
205                      strcat(string, name);
206                      strcat(string, "</b>");
207                   }
208                }
209                else
210                {
211                   printf("");
212                }
213             }
214
215             if(printFunction)
216             {
217                Type param;
218                strcat(string, "(");
219                for(param = type.params.first; param; param = param.next)
220                {
221                   DocPrintType(param, string, true, fullName);
222                   if(param.next) strcat(string, ", ");
223                }
224                strcat(string, ")");
225             }
226             break;
227          }
228          case arrayType:
229          {
230             /*Type funcType;
231             for(funcType = type; funcType && (funcType.kind == pointerType || funcType.kind == arrayType); funcType = funcType.type);
232             if(funcType && funcType.kind == functionType)
233             {
234                Type param;
235                DocPrintType(funcType.returnType, string, false, fullName);
236                strcat(string, "(*");
237                if(printName || funcType.thisClass)
238                {
239                   strcat(string, " ");
240                   if(funcType.thisClass)
241                   {
242                      strcat(string, funcType.thisClass.string);
243                      strcat(string, "::");
244                   }
245                   if(type.name)
246                      strcat(string, type.name);
247                }
248                strcat(string, ")(");
249                for(param = funcType.params.first; param; param = param.next)
250                {
251                   DocPrintType(param, string, false, fullName);
252                   if(param.next) strcat(string, ", ");
253                }
254                strcat(string, ")");               
255             }
256             else*/
257             {
258                char baseType[1024], size[256];
259                Type arrayType = type;
260                baseType[0] = '\0';
261                size[0] = '\0';
262
263                while(arrayType.kind == TypeKind::arrayType)
264                {
265                   strcat(size, "[");
266                   if(arrayType.enumClass)
267                      strcat(size, arrayType.enumClass.string);
268                   else if(arrayType.arraySizeExp)
269                      PrintExpression(arrayType.arraySizeExp, size);
270                   //sprintf(string, "%s[%s]", baseType, size); 
271                   strcat(size, "]");
272
273                   arrayType = arrayType.arrayType;
274                }
275                _PrintType(arrayType, baseType, printName, printFunction, fullName);
276                strcat(string, baseType);
277                strcat(string, size);
278             }
279
280             /*
281                DocPrintType(type.arrayType, baseType, printName, fullName);
282                if(type.enumClass)
283                   strcpy(size, type.enumClass.string);
284                else if(type.arraySizeExp)
285                   PrintExpression(type.arraySizeExp, size);
286                //sprintf(string, "%s[%s]", baseType, size); 
287                strcat(string, baseType);
288                strcat(string, "[");
289                strcat(string, size); 
290                strcat(string, "]");
291                */
292
293             printName = false;
294             break;
295          }
296          case ellipsisType:
297             strcat(string, "...");
298             break;
299          case methodType:
300             _PrintType(type.method.dataType, string, false, printFunction, fullName);
301             break;
302          case subClassType:
303             strcat(string, "subclass(");
304             strcat(string, type._class ? type._class.string : "int");
305             strcat(string, ")");                  
306             break;
307          default:
308             printf("");
309       }
310       if(type.name && printName && type.kind != functionType && (type.kind != pointerType || type.type.kind != functionType))
311       {
312          strcat(string, " ");
313          strcat(string, type.name);
314       }
315    }
316 }
317
318 void DocPrintType(Type type, char * string, bool printName, bool fullName)
319 {
320    Type funcType;
321    for(funcType = type; funcType && (funcType.kind == pointerType || funcType.kind == arrayType); funcType = funcType.type);
322    if(funcType && funcType.kind == functionType && type != funcType)
323    {
324       char typeString[1024];
325       Type param;
326
327       DocPrintType(funcType.returnType, string, false, fullName);
328       strcat(string, "(");
329       _PrintType(type, string, printName, false, fullName);
330       strcat(string, ")");
331       /*
332       if(type.name)
333          strcat(string, type.name);
334       else
335       {
336          printf("");
337       }
338       */
339       strcat(string, "(");
340       for(param = funcType.params.first; param; param = param.next)
341       {
342          DocPrintType(param, string, true, fullName);
343          if(param.next) strcat(string, ", ");
344       }
345       strcat(string, ")");
346    }
347    else
348       _PrintType(type, string, printName, true, fullName);
349 }
350
351 void AddComponents(Module module, bool isDll)
352 {
353    DataRow row = null;
354    SubModule m;
355
356    if(module.name && (!strcmp(module.name, "ecere") || !strcmp(module.name, "ecereCOM")))
357    {
358       row = mainForm.browser.AddRow();
359       row.SetData(null, APIPageNameSpace { name = "ecereCOM", nameSpace = &module.application.systemNameSpace });
360       row.tag = (int)null;
361       AddNameSpace(row, null, module.application.systemNameSpace, null, "", !isDll);
362    }
363
364    for(m = module.modules.first; m; m = m.next)
365    {
366       if(m.importMode == publicAccess || !isDll)
367          AddComponents(m.module, true);
368    }
369
370    // PUT MODULE DESCRIPTION HERE
371    if(module.name && strcmp(module.name, "ecereCOM"))
372    {
373       row = mainForm.browser.AddRow();
374       row.SetData(null, APIPageNameSpace { name = module.name, module = module, nameSpace = &module.publicNameSpace });
375       row.tag = (int)module;
376       AddNameSpace(row, module, module.publicNameSpace, null /*module.application.systemNameSpace*/, "", !isDll);
377       if(!isDll)
378          AddNameSpace(row, module, module.privateNameSpace, null /*module.application.systemNameSpace*/, "", !isDll);
379    }
380 }
381
382 class APIPage
383 {
384 public:
385    char * name;
386    APIPage page;
387    char * label;
388    bool showPrivate;
389
390    char * OnGetString(char * tempString, void * fieldData, bool * needClass)
391    {
392       return name;
393    }
394
395    virtual void Generate(File f)
396    {
397       page.Generate(f);
398    }
399 };
400
401 enum DocumentationType
402 {
403    nameSpaceDoc,
404    classDoc,
405    functionDoc,
406    methodDoc
407 };
408
409 enum DocumentationItem
410 {
411    description,
412    usage,
413    remarks,
414    example,
415    seeAlso,
416    enumerationValue,
417    definition,
418    conversion,
419    memberDescription,
420    propertyDescription,
421    parameter,
422    returnValue
423 };
424
425 static void FigureFileName(char * fileName, Module module, DocumentationType type, void * object, DocumentationItem item, void * data)
426 {
427    NameSpace * nameSpace, * ns;
428    Class cl = null;
429    Method method = null;
430    GlobalFunction function = null;
431    char nsName[1024], temp[1024];
432    char docFile[1024];
433
434
435    switch(type)
436    {
437       case nameSpaceDoc: nameSpace = object; break;
438       case classDoc:     cl = (Class)object; nameSpace = cl.nameSpace; break;
439       case functionDoc:  function = object; nameSpace = function.nameSpace; break;
440       case methodDoc:    method = object; cl = method._class; nameSpace = cl.nameSpace; break;
441    }
442
443    nsName[0] = 0;
444    ns = nameSpace;
445    while(ns && ns->name)
446    {
447       strcpy(temp, "namespaces/");
448       strcat(temp, ns->name);
449       strcat(temp, "/");
450       strcat(temp, nsName);
451       strcpy(nsName, temp);
452       ns = ns->parent;
453    }
454    sprintf(docFile, "%s.eCdoc", (!module || !module.name || !strcmp(nsName, "namespaces/ecere/namespaces/com")) ? "ecereCOM" : module.name);
455
456    sprintf(fileName, "<%s/%s>", settings.docDir, docFile); // Note that in the ecereIDE.ini file, there can be no quotes around the path, and there needs to be the final backslash. Otherwise this does not work.
457    strcat(fileName, nsName);
458
459    if(cl)
460    {
461       strcat(fileName, "classes/");
462       strcat(fileName, cl.name);
463       strcat(fileName, "/");
464    }
465
466    if(method)
467    {
468       strcat(fileName, "methods/");
469       strcat(fileName, method.name);
470       strcat(fileName, "/");
471    }
472    else if(function)
473    {
474       char * name = RSearchString(function.name, "::", strlen(function.name), true, false);
475       if(name) name += 2; else name = function.name;
476       strcat(fileName, "functions/");
477       strcat(fileName, name);
478       strcat(fileName, "/");
479    }
480
481    switch(item)
482    {
483       case description: strcat(fileName, "description"); break;
484       case usage: strcat(fileName, "usage"); break;
485       case remarks: strcat(fileName, "remarks"); break;
486       case example: strcat(fileName, "example"); break;
487       case seeAlso: strcat(fileName, "seeAlso"); break;
488       case returnValue: strcat(fileName, "returnValue"); break;
489       case enumerationValue: 
490          strcat(fileName, "enumeration values/");
491          strcat(fileName, ((NamedLink)data).name);
492          break;
493       case definition:
494          strcat(fileName, "definitions/");
495          strcat(fileName, ((Definition)data).name);
496          break;
497       case conversion:
498       {
499          char * name = RSearchString(((Property)data).name, "::", strlen(((Property)data).name), true, false);
500          if(name) name += 2; else name = ((Property)data).name;
501          strcat(fileName, "conversions/");
502          strcat(fileName, name);
503          break;
504       }
505       case memberDescription:
506          strcat(fileName, "data members/");
507          strcat(fileName, ((DataMember)data).name);
508          break;
509       case propertyDescription:
510          strcat(fileName, "properties/");
511          strcat(fileName, ((Property)data).name);
512          break;
513       case parameter:
514       {
515          int count;
516          char name[1024];
517          Type prev;
518          strcat(fileName, "parameters/");
519          for(prev = data, count = 0; prev; prev = prev.prev, count++);
520          sprintf(name, "%s.%d", ((Type)data).name, count);
521          strcat(fileName, name);
522          break;
523       }
524    }
525 }
526
527 static char * ReadDoc(Module module, DocumentationType type, void * object, DocumentationItem item, void * data)
528 {
529    char fileName[MAX_LOCATION];
530    String contents = null;
531    File file;
532
533    FigureFileName(fileName, module, type, object, item, data);
534    file = FileOpen(fileName, read);
535    if(file)
536    {
537       uint len;
538       if((len = file.GetSize()))
539       {
540          contents = new char[len+1];
541          file.Read(contents, 1, len);
542          contents[len] = '\0';      
543       }
544       delete file;
545    }
546    if(contents)
547    {
548       int c;
549       for(c = 0; contents[c]; c++)
550          if(!isspace(contents[c])) break;
551       if(!contents[c])
552          delete contents;      
553    }
554    if(editing && !contents)
555       contents = CopyString("[Add Text]");
556    return contents;
557 }
558
559 class APIPageNameSpace : APIPage
560 {
561    NameSpace * nameSpace;
562    Module module;
563    
564    void Generate(File f)
565    {
566       char string[1024];
567       char nsName[1024], temp[1024];
568       NameSpace * ns;
569       BTNamedLink link;
570       uint tag;
571
572       nsName[0] = 0;
573       ns = nameSpace;
574       while(ns && ns->name)
575       {
576          strcpy(temp, ns->name);
577          if(nsName[0]) strcat(temp, "::");
578          strcat(temp, nsName);
579          strcpy(nsName, temp);
580          ns = ns->parent;
581       }
582       // Generate Class Page
583       f.Printf("<HTML><HEAD><TITLE>API Reference</TITLE></HEAD>\n<BODY><FONT SIZE=\"3\">\n");
584       if(nsName[0])
585       {
586          f.Printf("<FONT FACE=\"Arial\" SIZE=\"6\">%s</FONT><br><br>\n", nsName );
587          tag = (uint)nameSpace;
588          f.Printf("Module: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", (module && module.name) ? module : null, (!module || !module.name || !strcmp(nsName, "ecere::com")) ? "ecereCOM" : module.name);
589       }
590       else
591       {
592          tag = (uint)((!module || !module.name || !strcmp(nsName, "ecere::com") ? null : module));
593          f.Printf("<FONT FACE=\"Arial\" SIZE=\"6\">Module %s</FONT><br>\n", (!module || !module.name || !strcmp(nsName, "ecere::com")) ? "ecereCOM" : module.name);
594       }
595
596       nsName[0] = 0;
597       ns = nameSpace->parent;
598       while(ns && ns->name)
599       {
600          strcpy(temp, ns->name);
601          if(nsName[0]) strcat(temp, "::");
602          strcat(temp, nsName);
603          strcpy(nsName, temp);
604          ns = ns->parent;
605       }
606       if(nsName[0]) 
607          f.Printf("Parent namespace: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", nameSpace->parent, nsName);
608
609       f.Printf("<br>");
610       {
611          char * desc = ReadDoc(module, nameSpaceDoc, nameSpace, description, null);
612          if(desc)
613          {
614             f.Printf("<H3>Description</H3><br><br>\n");
615             if(editing)
616             {
617                char fileName[MAX_LOCATION];
618                FigureFileName(fileName, module, nameSpaceDoc, nameSpace, description, null);
619                f.Printf("<a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
620                f.Puts(desc);
621                f.Printf("</a><br><br>");
622             }
623             else
624                f.Printf("%s<br><br>", desc);
625             delete desc;
626          }
627       }
628
629       if(nameSpace->nameSpaces.first)
630       {
631          bool first = true;
632          for(ns = (NameSpace *)nameSpace->nameSpaces.first; ns; ns = (NameSpace *)((BTNode)ns).next)
633          {
634             char * desc = ReadDoc(module, nameSpaceDoc, ns, description, null);
635             if(first)
636             {
637                f.Printf("<H3>Sub Namespaces</H3><br><br>\n");
638                f.Printf("<TABLE >\n");
639                first = false;
640             }
641             f.Printf("<TR>");
642             f.Printf("<TD valign=top height=22 nowrap=1><img valign=center src=\"%s\">&nbsp;&nbsp;<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a></TD>", iconNames[typeNameSpace], ns, ns->name);
643             if(desc)
644             {
645                if(editing)
646                {
647                   char fileName[MAX_LOCATION];
648                   FigureFileName(fileName, module, nameSpaceDoc, ns, description, null);
649                   f.Printf("<TD valign=top height=22> <a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
650                   f.Puts(desc);
651                   f.Printf("</a></TD>");
652                }
653                else
654                   f.Printf("<TD valign=top height=22> %s</TD>", desc);
655                delete desc;
656             }
657             f.Printf("</TR><br>\n");
658          }
659          if(!first)
660             f.Printf("</TABLE><br>\n");
661       }
662
663       if(nameSpace->classes.first)
664       {
665          bool first = true;
666          for(link = (BTNamedLink)nameSpace->classes.first; link; link = (BTNamedLink)((BTNode)link).next)
667          {
668             Class cl = link.data;
669             if(!cl.templateClass)
670             {
671                char * desc = ReadDoc(module, classDoc, cl, description, null);
672
673                if(first)
674                {
675                   f.Printf("<a name=Classes></a><H3>Classes</H3><br><br>\n");
676                   f.Printf("<TABLE >\n");
677                   first = false;
678                }
679
680                f.Printf("<TR>");
681
682                f.Printf("<TD valign=top height=22 nowrap=1><img valign=center src=\"%s\">&nbsp;&nbsp;<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a></TD>", (cl.type == enumClass || cl.type == unitClass || cl.type == systemClass) ? iconNames[typeDataType] : iconNames[typeClass], cl, cl.name);
683                if(desc)
684                {
685                   if(editing)
686                   {
687                      char fileName[MAX_LOCATION];
688                      FigureFileName(fileName, module, classDoc, cl, description, null);
689                      f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
690                      f.Puts(desc);
691                      f.Printf("</a></TD>");
692                   }
693                   else
694                      f.Printf("<TD valign=top height=22>%s</TD>", desc);
695                   delete desc;
696                }            
697                f.Printf("</TR>\n");
698             }
699          }
700          if(!first)
701             f.Printf("</TABLE><br>\n");
702       }
703
704       if(nameSpace->functions.first)
705       {
706          bool first = true;
707          for(link = (BTNamedLink)nameSpace->functions.first; link; link = (BTNamedLink)((BTNode)link).next)
708          {
709             GlobalFunction function = link.data;
710             char * desc = ReadDoc(module, functionDoc, function, description, null);
711             char * name = RSearchString(function.name, "::", strlen(function.name), true, false);
712             if(name) name += 2; else name = function.name;
713             if(first)
714             {
715                f.Printf("<a name=Functions></a><H3>Functions</H3><br><br>\n");
716                f.Printf("<TABLE >\n");
717                first = false;
718             }
719             f.Printf("<TR>");
720             f.Printf("<TD valign=top height=22 nowrap=1><img valign=center src=\"%s\">&nbsp;&nbsp;<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a></TD>", iconNames[typeMethod], function, name);
721             if(desc)
722             {
723                if(editing)
724                {
725                   char fileName[MAX_LOCATION];
726                   FigureFileName(fileName, module, functionDoc, function, description, null);
727                   f.Printf("<TD valign=top height=22> <a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
728                   f.Puts(desc);
729                   f.Printf("</a></TD>");
730                }
731                else
732                   f.Printf("<TD valign=top height=22> %s</TD>", desc);
733                delete desc;
734             }
735             f.Printf("</TR><br>\n");
736          }
737          if(!first)
738             f.Printf("</TABLE><br>\n");
739       }
740
741       if(nameSpace->defines.first)
742       {
743          bool first = true;
744          for(link = (BTNamedLink)nameSpace->defines.first; link; link = (BTNamedLink)((BTNode)link).next)
745          {
746             DefinedExpression def = link.data;
747             char * desc = ReadDoc(module, nameSpaceDoc, nameSpace, definition, def);
748             if(first)
749             {
750                f.Printf("<a name=Definitions></a><H3>Definitions</H3><br><br>\n");
751                f.Printf("<TABLE >\n");
752                first = false;
753             }
754             f.Printf("<TR>");
755             f.Printf("<TD valign=top height=22 nowrap=1><a name=%08x></a><img valign=center src=\"%s\">&nbsp;&nbsp;%s</TD>", def, iconNames[typeData], def.name);
756             f.Printf("<TD valign=top height=22>%s</TD>", def.value);
757             if(desc)
758             {
759                if(editing)
760                {
761                   char fileName[MAX_LOCATION];
762                   FigureFileName(fileName, module, nameSpaceDoc, nameSpace, definition, def);
763                   f.Printf("<TD valign=top height=22> <a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
764                   f.Puts(desc);
765                   f.Printf("</a></TD>");
766                }
767                else
768                   f.Printf("<TD valign=top height=22> %s</TD>", desc);
769                delete desc;
770             }
771             f.Printf("</TR><br>\n");
772          }
773          if(!first)
774             f.Printf("</TABLE><br>\n");
775       }
776
777       f.Printf("</FONT></BODY></HTML>\n");
778    }   
779 }
780
781 class APIPageClass : APIPage
782 {
783    Class cl;
784
785    void Generate(File f)
786    {
787       char string[1024];
788       Method method;
789       Property prop;
790       DataMember member;
791       char nsName[1024], temp[1024];
792       NameSpace * ns = cl.nameSpace;
793       Module module = cl.module;
794
795       nsName[0] = 0;
796       while(ns && ns->name)
797       {
798          strcpy(temp, ns->name);
799          if(nsName[0]) strcat(temp, "::");
800          strcat(temp, nsName);
801          strcpy(nsName, temp);
802          ns = ns->parent;
803       }
804       // Generate Class Page
805       f.Printf("<HTML><HEAD><TITLE>API Reference</TITLE></HEAD>\n<BODY><FONT SIZE=\"3\">\n");
806       f.Printf("<FONT FACE=\"Arial\" SIZE=\"6\">%s</FONT><br><br>\n", name);
807
808       f.Printf("Module: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", (module && module.name) ? module : null, (!module || !module.name || !strcmp(nsName, "ecere::com")) ? "ecereCOM" : module.name);
809       if(nsName[0]) 
810          f.Printf("Namespace: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", cl.nameSpace, nsName);
811
812       {
813          char * classType = null;
814          switch(cl.type)
815          {
816             case bitClass:
817                classType = "Bit Collection";
818                break;
819             case enumClass:
820                classType = "Enumeration";
821                break;
822             case structClass:
823                classType = "Structure";
824                break;
825             case normalClass:
826                classType = "Class";
827                break;
828             case noHeadClass:
829                classType = "Class (No header)";
830                break;
831             case unitClass:
832                classType = "Unit";
833                break;
834             case systemClass:
835                classType = "Basic Data Type";
836                break;
837          }
838          f.Printf("Type: %s<br>\n", classType);
839       }
840       
841       if(cl.type != systemClass && cl.base)
842       {
843          f.Printf("Base Class: ");
844          if(!strcmp(cl.base.name, "struct") || !strcmp(cl.base.name, "class"))
845          {
846             f.Printf(cl.type == bitClass ? cl.dataTypeString : "None");
847          }
848          else if(cl.type == enumClass && !strcmp(cl.base.name, "enum"))
849             f.Printf("%s", cl.dataTypeString);
850          else
851             f.Printf("<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a>", cl.base, cl.base.name);
852          f.Printf("<br>\n");
853       }
854
855       {
856          char * desc = ReadDoc(module, classDoc, cl, description, null);
857          if(desc)
858          {
859             f.Printf("<br><H3>Description</H3><br><br>\n");
860             if(editing)
861             {
862                char fileName[MAX_LOCATION];
863                FigureFileName(fileName, module, classDoc, cl, description, null);
864                f.Printf("<a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
865                f.Puts(desc);
866                f.Printf("</a><br><br>");
867             }
868             else
869                f.Printf("%s<br><br>", desc);
870             delete desc;
871          }
872       }
873
874       if(cl.type == enumClass)
875       {
876          EnumClassData enumeration = (EnumClassData)cl.data;
877          if(enumeration.values.first)
878          {
879             NamedLink item;
880                         
881             f.Printf("<a name=EnumerationValues></a><H3>Enumeration Values</H3><br><br>\n");
882             f.Printf("<TABLE >\n");
883
884             for(item = enumeration.values.first; item; item = item.next)
885             {
886                char * desc = ReadDoc(module, classDoc, cl, enumerationValue, item);
887                bool needClass = true;
888                Class dataClass;
889                Class base = cl;
890                while(base.type == enumClass) base = base.base;
891
892                if(base.type == systemClass ||
893                   (base.type == bitClass && base.membersAndProperties.first && !strcmp(cl.fullName, ((DataMember)base.membersAndProperties.first).dataTypeString)))
894                {
895                   if(!base.dataType)
896                      base.dataType = ProcessTypeString(base.dataTypeString, false);
897
898                   if(base.dataType.kind != classType)
899                   {
900                      char string[256];
901                      Symbol classSym;
902                      string[0] = '\0';
903                      PrintType(base.dataType, string, false, true);
904                      classSym = FindClass(string);
905                      dataClass = classSym ? classSym.registered : null;
906                   }
907                   else
908                      dataClass = base.dataType._class ? base.dataType._class.registered : null;
909                }
910                else
911                   dataClass = base;                  
912                
913                f.Printf("<TR>");
914                f.Printf("<TD valign=top height=22 nowrap=1><a name=%08x></a><img valign=center src=\"%s\">&nbsp;&nbsp;%s</TD>", item, iconNames[typeEnumValue], item.name);
915                if(dataClass.type == systemClass)
916                {
917                   needClass = false;
918                   dataClass._vTbl[__ecereVMethodID_class_OnGetString](dataClass, &item.data, string, sizeof(string), &needClass);
919                }
920                else
921                   eSystem_FindClass(componentsApp, "class")._vTbl[__ecereVMethodID_class_OnGetString](dataClass, &item.data, string, sizeof(string), &needClass);
922                if(needClass)
923                   f.Printf("<TD valign=top height=22 nowrap=1>%s { %s }</TD>", dataClass.name, string);
924                else
925                   f.Printf("<TD valign=top height=22 nowrap=1>%s</TD>", string);
926                if(desc)
927                {
928                   if(editing)
929                   {
930                      char fileName[MAX_LOCATION];
931                      FigureFileName(fileName, module, classDoc, cl, enumerationValue, item);
932                      f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
933                      f.Puts(desc);
934                      f.Printf("</a></TD>");
935                   }
936                   else
937                      f.Printf("<TD valign=top height=22>%s</TD>", desc);
938                   delete desc;
939                }
940                f.Printf("</TR>");
941             }
942             f.Printf("</TABLE><BR>\n");
943          }
944       }
945
946       if(cl.conversions.first)
947       {
948          f.Printf("<a name=Conversions></a><H3>Conversions</H3><br><br>\n");
949          f.Printf("<TABLE >\n");
950          for(prop = cl.conversions.first; prop; prop = prop.next)
951          {
952             if((prop.memberAccess == publicAccess || (prop.memberAccess == privateAccess && showPrivate)) && prop.name)
953             {
954                char * desc = ReadDoc(module, classDoc, cl, conversion, prop);
955                DataRow mRow;
956                char * name;
957                Type type = ProcessTypeString(prop.name, false);
958                name = RSearchString(prop.name, "::", strlen(prop.name), true, false);
959                if(name) name += 2; else name = prop.name;
960
961                f.Printf("<TR>");
962                
963                string[0] = 0;
964                DocPrintType(type, string, true, false);
965                
966                f.Printf("<TD valign=top height=22 nowrap=1><a name=%08x></a><img valign=center src=\"%s\">&nbsp;&nbsp;%s</TD>", prop, iconNames[typeDataType], string);
967                if(desc)
968                {
969                   if(editing)
970                   {
971                      char fileName[MAX_LOCATION];
972                      FigureFileName(fileName, module, classDoc, cl, conversion, prop);
973                      f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
974                      f.Puts(desc);
975                      f.Printf("</a></TD>");
976                   }
977                   else
978                      f.Printf("<TD valign=top height=22>%s</TD>", desc);
979                   delete desc;
980                }
981                
982                f.Printf("</TR>\n");
983                
984                FreeType(type);
985             }
986          }
987          f.Printf("</TABLE><br>\n");
988       }
989
990       if(cl.membersAndProperties.first)
991       {
992          bool first = true;
993          for(prop = (Property)cl.membersAndProperties.first; prop; prop = prop.next)
994          {
995             if(prop.memberAccess == publicAccess || (prop.memberAccess == privateAccess && showPrivate))
996             {
997                if(first)
998                {
999                   f.Printf("<a name=Members></a><H3>Properties and Members</H3><br><br>\n");
1000                   f.Printf("<TABLE >\n");
1001                   first = false;
1002                }
1003
1004                if(prop.isProperty)
1005                {
1006                   char * desc = ReadDoc(module, classDoc, cl, propertyDescription, prop);
1007                   if(!prop.dataType)
1008                      prop.dataType = ProcessTypeString(prop.dataTypeString, false);
1009
1010                   f.Printf("<TR>");
1011                   string[0] = 0;
1012                   DocPrintType(prop.dataType, string, true, false);
1013
1014                   f.Printf("<TD valign=top height=22 nowrap=1><a name=%08x></a><img valign=center src=\"%s\">&nbsp;&nbsp;%s</TD>", prop, iconNames[typeProperty], prop.name);
1015                   f.Printf("<TD valign=top height=22 nowrap=1>%s</TD>", string);
1016                   if(desc)
1017                   {
1018                      if(editing)
1019                      {
1020                         char fileName[MAX_LOCATION];
1021                         FigureFileName(fileName, module, classDoc, cl, propertyDescription, prop);
1022                         f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1023                         f.Puts(desc);
1024                         f.Printf("</a></TD>");
1025                      }
1026                      else
1027                         f.Printf("<TD valign=top height=22>%s</TD>", desc);
1028                      delete desc;
1029                   }
1030                   f.Printf("</TR>\n");
1031                }
1032                else
1033                {
1034                   AddDataMemberToPage(f, (DataMember)prop, 0, showPrivate);
1035                }
1036             }
1037          }
1038          if(!first)
1039             f.Printf("</TABLE><br>\n");
1040       }
1041
1042       if(cl.methods.first)
1043       {
1044          bool first = true;
1045          // Virtual Methods
1046          for(method = (Method)cl.methods.first; method; method = (Method)((BTNode)method).next)
1047          {
1048             if((method.memberAccess == publicAccess || (method.memberAccess == privateAccess && showPrivate)) && method.type == virtualMethod)
1049             {
1050                char * desc = ReadDoc(module, methodDoc, method, description, null);
1051                if(first)
1052                {
1053                   f.Printf("<a name=VirtualMethods></a><H3>Virtual Methods</H3><br><br>\n");
1054                   f.Printf("<TABLE >\n");
1055                   first = false;
1056                }
1057                if(!method.dataType)
1058                   ProcessMethodType(method);
1059
1060                f.Printf("<TR>");
1061                f.Printf("<TD valign=top height=22 nowrap=1><img valign=center src=\"%s\">&nbsp;&nbsp;<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a></TD>", method.dataType.thisClass ? iconNames[typeEvent] : iconNames[typeMethod], method, method.name);
1062                if(desc)
1063                {
1064                   if(editing)
1065                   {
1066                      char fileName[MAX_LOCATION];
1067                      FigureFileName(fileName, module, methodDoc, method, description, null);
1068                      f.Printf("<TD valign=top height=22> <a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1069                      f.Puts(desc);
1070                      f.Printf("</a></TD>");
1071                   }
1072                   else
1073                      f.Printf("<TD valign=top height=22> %s</TD>", desc);
1074                   delete desc;
1075                }
1076                f.Printf("</TR><br>\n");
1077             }
1078          }
1079          if(!first)
1080             f.Printf("</TABLE><br>\n");
1081
1082          // Non-Virtual Methods
1083          first = true;
1084          for(method = (Method)cl.methods.first; method; method = (Method)((BTNode)method).next)
1085          {
1086             if((method.memberAccess == publicAccess || (method.memberAccess == privateAccess && showPrivate)) && method.type != virtualMethod)
1087             {
1088                char * desc = ReadDoc(module, methodDoc, method, description, null);
1089                if(first)
1090                {
1091                   f.Printf("<a name=Methods></a><H3>Non-Virtual Methods</H3><br><br>\n");
1092                   f.Printf("<TABLE >\n");
1093                   first = false;
1094                }
1095
1096                if(!method.dataType)
1097                   ProcessMethodType(method);
1098
1099                f.Printf("<TR>");
1100                f.Printf("<TD valign=top height=22 nowrap=1><img valign=center src=\"%s\">&nbsp;&nbsp;<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a></TD>", iconNames[typeMethod], method, method.name);
1101                if(desc)
1102                {
1103                   if(editing)
1104                   {
1105                      char fileName[MAX_LOCATION];
1106                      FigureFileName(fileName, module, methodDoc, method, description, null);
1107                      f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1108                      f.Puts(desc);
1109                      f.Printf("</a></TD>");
1110                   }
1111                   else
1112                      f.Printf("<TD valign=top height=22>%s</TD>", desc);
1113                   delete desc;
1114                }
1115                
1116                f.Printf("</TR><br>\n");
1117             }
1118          }
1119          if(!first)
1120             f.Printf("</TABLE><br>\n");
1121       }
1122       {
1123          char * usageDoc = ReadDoc(module, classDoc, cl, usage, null);
1124          if(usageDoc)
1125          {
1126             f.Printf("<H3>Usage</H3><br>\n");
1127             if(editing)
1128             {
1129                char fileName[MAX_LOCATION];
1130                FigureFileName(fileName, module, classDoc, cl, usage, null);
1131                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1132                f.Puts(usageDoc);
1133                f.Printf("</a>\n");
1134             }
1135             else
1136                f.Printf("<br>%s\n", usageDoc);
1137             f.Printf("<br><br>\n");
1138             delete usageDoc;
1139          }
1140       }
1141       {
1142          char * exampleDoc = ReadDoc(module, classDoc, cl, example, null);
1143          if(exampleDoc)
1144          {
1145             f.Printf("<H3>Example</H3><br>\n");
1146             f.Printf("<FONT face=\"Courier New\">\n");
1147             f.Printf("<br><TABLE >\n");
1148             if(editing)
1149             {
1150                char fileName[MAX_LOCATION];
1151                FigureFileName(fileName, module, classDoc, cl, example, null);
1152                f.Printf("<TR><TD><CODE><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1153                f.Puts(exampleDoc);
1154                f.Printf("</a></CODE></TD></TR>\n"); // bgcolor=#CFC9C0
1155             }
1156             else
1157                f.Printf("<TR><TD><CODE>%s</CODE></TD></TR>\n", exampleDoc);   // bgcolor=#CFC9C0
1158
1159             f.Printf("</TABLE></FONT>\n");
1160             f.Printf("<br>\n");
1161             delete exampleDoc;
1162          }
1163       }
1164       {
1165          char * remarksDoc = ReadDoc(module, classDoc, cl, remarks, null);
1166
1167          if(remarksDoc)
1168          {
1169             f.Printf("<H3>Remarks</H3><br>\n");
1170             if(editing)
1171             {
1172                char fileName[MAX_LOCATION];
1173                FigureFileName(fileName, module, classDoc, cl, remarks, null);
1174                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1175                f.Puts(remarksDoc);
1176                f.Printf("</a>\n");
1177             }
1178             else
1179                f.Printf("<br>%s\n", remarksDoc);
1180             f.Printf("<br><br>\n");
1181             delete remarksDoc;
1182          }
1183       }
1184       
1185       if(cl.type != systemClass)
1186       {
1187          bool first = true;
1188          OldLink c;
1189          for(c = cl.derivatives.first; c; c = c.next)
1190          {
1191             Class deriv = c.data;
1192             // TO VERIFY: Does this properly check public status?
1193             if(eSystem_FindClass(componentsApp, deriv.fullName))
1194             {
1195                if(first)
1196                {
1197                   f.Printf("<H3>Derived Classes</H3><br>\n");
1198                   f.Printf("<br>");
1199                   first = false;
1200                }
1201                else
1202                   f.Printf(", ");
1203                f.Printf("<a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a>", deriv, deriv.name);
1204              }            
1205          }
1206          if(!first)
1207             f.Printf("<br><br>\n");
1208       }
1209       {
1210          char * seeAlsoDoc = ReadDoc(module, classDoc, cl, seeAlso, null);
1211          if(seeAlsoDoc)
1212          {
1213             f.Printf("<H3>See Also</H3><br>\n");
1214             if(editing)
1215             {
1216                char fileName[MAX_LOCATION];
1217                FigureFileName(fileName, module, classDoc, cl, seeAlso, null);
1218                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1219                f.Puts(seeAlsoDoc);
1220                f.Printf("</a>\n");
1221             }
1222             else
1223                f.Printf("<br>%s\n", seeAlsoDoc);
1224             f.Printf("<br><br>\n");
1225             delete seeAlsoDoc;
1226          }
1227       }
1228       f.Printf("</FONT></BODY></HTML>\n");
1229    }   
1230 }
1231
1232 class APIPageMethod : APIPage
1233 {
1234    Method method;
1235    void Generate(File f)
1236    {
1237       Class cl = method._class;
1238       char string[1024];
1239       Module module = cl.module;
1240       Type param;
1241       char nsName[1024], temp[1024];
1242       NameSpace * ns = cl.nameSpace;
1243
1244       nsName[0] = 0;
1245       while(ns && ns->name)
1246       {
1247          strcpy(temp, ns->name);
1248          if(nsName[0]) strcat(temp, "::");
1249          strcat(temp, nsName);
1250          strcpy(nsName, temp);
1251          ns = ns->parent;
1252       }
1253
1254       f.Printf("<HTML><HEAD><TITLE>API Reference</TITLE></HEAD>\n<BODY><FONT SIZE=\"3\">\n");
1255       f.Printf("<FONT FACE=\"Arial\" SIZE=\"6\">%s</FONT><br><br>\n", name);
1256
1257       f.Printf("Module: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", (module && module.name) ? module : null, (!module || !module.name || !strcmp(nsName, "ecere::com")) ? "ecereCOM" : module.name);
1258       if(nsName[0])
1259          f.Printf("Namespace: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", cl.nameSpace, nsName);
1260       f.Printf("Class: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", cl, cl.name);
1261       if(method.dataType.staticMethod)
1262       {
1263          f.Printf("this pointer class: None<br>\n");
1264       }
1265       else if(method.dataType.thisClass && method.dataType.thisClass.registered && (method.dataType.thisClass.registered != method._class || method.type == virtualMethod))
1266       {
1267          f.Printf("this pointer class: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", method.dataType.thisClass.registered, method.dataType.thisClass.registered.name);
1268       }
1269
1270       // Generate Method Page
1271       string[0] = 0;
1272       if(!method.dataType.name)
1273          method.dataType.name = CopyString(method.name);
1274       DocPrintType(method.dataType, string, true, false);
1275       f.Printf("<br>%s", string);
1276
1277       {
1278          char * desc = ReadDoc(module, methodDoc, method, description, null);
1279          if(desc)
1280          {
1281             f.Printf("<br><br><H3>Description</H3><br><br>\n");
1282             if(editing)
1283             {
1284                char fileName[MAX_LOCATION];
1285                FigureFileName(fileName, module, methodDoc, method, description, null);
1286                f.Printf("<a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1287                f.Puts(desc);
1288                f.Printf("</a>");
1289             }
1290             else
1291                f.Printf("%s", desc);
1292             delete desc;
1293          }
1294       }
1295
1296       f.Printf("<br><br>\n");
1297       if(method.dataType.params.first && ((Type)method.dataType.params.first).kind != voidType)
1298       {
1299          f.Printf("<H3>Parameters</H3><br><br>\n");
1300       }
1301       if((method.dataType.returnType && method.dataType.returnType.kind != voidType) ||
1302          (method.dataType.params.first && ((Type)method.dataType.params.first).kind != voidType))
1303       {
1304          f.Printf("<TABLE  valign=center>\n");
1305       }
1306
1307       for(param = method.dataType.params.first; param; param = param.next)
1308       {
1309          // ADD DESCRIPTION HERE
1310          if(param.kind != voidType)
1311          {
1312             char * desc = ReadDoc(module, methodDoc, method, parameter, param);
1313             f.Printf("<TR>");
1314             string[0] = 0;
1315             DocPrintType(param, string, false, false);
1316
1317             f.Printf("<TD valign=top height=22 nowrap=1>%s&nbsp;</TD>\n", param.name ? param.name : "");
1318             f.Printf("<TD valign=top height=22 nowrap=1>%s&nbsp;</TD>\n", string);
1319             if(desc)
1320             {
1321                if(editing)
1322                {
1323                   char fileName[MAX_LOCATION];
1324                   FigureFileName(fileName, module, methodDoc, method, parameter, param);
1325                   f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1326                   f.Puts(desc);
1327                   f.Printf("s</a>&nbsp;</TD>\n");
1328                }
1329                else
1330                   f.Printf("<TD valign=top height=22>%s&nbsp;</TD>\n", desc);
1331                delete desc;
1332             }
1333             
1334             f.Printf("</TR>\n");
1335          }
1336       }
1337       if(method.dataType.returnType && method.dataType.returnType.kind != voidType)
1338       {
1339          char * desc = ReadDoc(module, methodDoc, method, returnValue, null);
1340          if(method.dataType.params.first && ((Type)method.dataType.params.first).kind != voidType)
1341          {
1342             f.Printf("<TR><TD>&nbsp;</TD></TR>");
1343          }
1344          f.Printf("<TR>");
1345          f.Printf("<TD valign=top height=22 nowrap=1><B>Return Value</B></TD>\n");
1346          string[0] = 0;
1347          DocPrintType(method.dataType.returnType, string, false, false);
1348          f.Printf("<TD valign=top height=22>%s&nbsp;</TD>\n", string);
1349          if(desc)
1350          {
1351             if(editing)
1352             {
1353                char fileName[MAX_LOCATION];
1354                FigureFileName(fileName, module, methodDoc, method, returnValue, null);
1355                f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1356                f.Puts(desc);
1357                f.Printf("</a>&nbsp;</TD>\n");
1358             }
1359             else
1360                f.Printf("<TD valign=top height=22>%s&nbsp;</TD>\n", desc);
1361             delete desc;
1362          }
1363          f.Printf("</TR>\n");
1364          f.Printf("</TABLE>\n");
1365       }
1366       if((method.dataType.returnType && method.dataType.returnType.kind != voidType) ||
1367          (method.dataType.params.first && ((Type)method.dataType.params.first).kind != voidType))
1368       {
1369          f.Printf("</TABLE><br>\n");
1370       }
1371       {
1372          char * usageDoc = ReadDoc(module, methodDoc, method, usage, null);
1373          if(usageDoc)
1374          {
1375             f.Printf("<H3>Usage</H3><br>\n");
1376             if(editing)
1377             {
1378                char fileName[MAX_LOCATION];
1379                FigureFileName(fileName, module, methodDoc, method, usage, null);
1380                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1381                f.Puts(usageDoc);
1382                f.Printf("</a>\n");
1383             }
1384             else
1385                f.Printf("<br>%s\n", usageDoc);
1386             f.Printf("<br><br>\n");
1387             delete usageDoc;
1388          }
1389       }
1390       {
1391          char * exampleDoc = ReadDoc(module, methodDoc, method, example, null);
1392          if(exampleDoc)
1393          {
1394             f.Printf("<H3>Example</H3><br>\n");
1395             f.Printf("<FONT face=\"Courier New\">\n");
1396             f.Printf("<br><TABLE >\n");
1397             if(editing)
1398             {
1399                char fileName[MAX_LOCATION];
1400                FigureFileName(fileName, module, methodDoc, method, example, null);
1401                f.Printf("<TR><TD><CODE><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1402                f.Puts(exampleDoc);
1403                f.Printf("</a></CODE></TD></TR>\n");   // bgcolor=#CFC9C0
1404             }
1405             else
1406                f.Printf("<TR><TD><CODE>%s</CODE></TD></TR>\n", exampleDoc);   // bgcolor=#CFC9C0
1407             f.Printf("</TABLE></FONT>\n");
1408             f.Printf("<br>\n");
1409             delete exampleDoc;
1410          }
1411       }
1412       {
1413          char * remarksDoc = ReadDoc(module, methodDoc, method, remarks, null);
1414          if(remarksDoc)
1415          {
1416             f.Printf("<H3>Remarks</H3><br>\n");
1417             if(editing)
1418             {
1419                char fileName[MAX_LOCATION];
1420                FigureFileName(fileName, module, methodDoc, method, remarks, null);
1421                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1422                f.Puts(remarksDoc);
1423                f.Printf("</a>\n");
1424             }
1425             else
1426                f.Printf("<br>%s\n", method, remarksDoc);
1427             f.Printf("<br><br>\n");
1428             delete remarksDoc;
1429          }
1430       }
1431       {
1432          char * seeAlsoDoc = ReadDoc(module, methodDoc, method, seeAlso, null);
1433          if(seeAlsoDoc)
1434          {
1435             f.Printf("<H3>See Also</H3><br>\n");
1436             if(editing)
1437             {
1438                char fileName[MAX_LOCATION];
1439                FigureFileName(fileName, module, methodDoc, method, seeAlso, null);
1440                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1441                f.Puts(seeAlsoDoc);
1442                f.Printf("</a>\n");
1443             }
1444             else
1445                f.Printf("<br>%s\n", method, seeAlsoDoc);
1446             
1447             f.Printf("<br><br>\n");
1448             delete seeAlsoDoc;
1449          }
1450       }
1451       f.Printf("</FONT></BODY></HTML>\n");
1452    }   
1453 }
1454
1455 class APIPageFunction : APIPage
1456 {
1457    GlobalFunction function;
1458    void Generate(File f)
1459    {
1460       char string[1024];
1461       Module module = function.module;
1462       Type param;
1463       char nsName[1024], temp[1024];
1464       NameSpace * ns = function.nameSpace;
1465
1466       nsName[0] = 0;
1467       while(ns && ns->name)
1468       {
1469          strcpy(temp, ns->name);
1470          if(nsName[0]) strcat(temp, "::");
1471          strcat(temp, nsName);
1472          strcpy(nsName, temp);
1473          ns = ns->parent;
1474       }
1475
1476       f.Printf("<HTML><HEAD><TITLE>API Reference</TITLE></HEAD>\n<BODY><FONT SIZE=\"3\">\n");
1477       f.Printf("<FONT FACE=\"Arial\" SIZE=\"6\">%s</FONT><br><br>\n", name);
1478
1479       f.Printf("Module: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", (module && module.name) ? module : null, (!module || !module.name || !strcmp(nsName, "ecere::com")) ? "ecereCOM" : module.name);
1480
1481       if(nsName[0])
1482          f.Printf("Namespace: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", function.nameSpace, nsName);
1483
1484       if(!function.dataType)
1485          function.dataType = ProcessTypeString(function.dataTypeString, false);
1486
1487       if(function.dataType.thisClass && function.dataType.thisClass.registered)
1488       {
1489          f.Printf("this pointer class: <a href=\"api://%08x\" style=\"text-decoration: none;\">%s</a><br>\n", function.dataType.thisClass.registered, function.dataType.thisClass.registered.name);
1490       }
1491
1492       // Generate Method Page
1493       string[0] = 0;
1494       if(!function.dataType.name)
1495          function.dataType.name = CopyString(function.name);
1496       DocPrintType(function.dataType, string, true, false);
1497       f.Printf("<br>%s", string);
1498
1499       {
1500          char * desc = ReadDoc(module, functionDoc, function, description, null);
1501          if(desc)
1502          {
1503             f.Printf("<br><br><H3>Description</H3><br><br>\n");
1504             if(editing)
1505             {
1506                char fileName[MAX_LOCATION];
1507                FigureFileName(fileName, module, functionDoc, function, description, null);
1508                f.Printf("<a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1509                f.Puts(desc);
1510                f.Printf("</a>");
1511             }
1512             else
1513                f.Printf("%s", desc);
1514             delete desc;
1515          }
1516       }
1517       f.Printf("<br><br>\n");
1518       if(function.dataType.params.first && ((Type)function.dataType.params.first).kind != voidType)
1519       {
1520          f.Printf("<H3>Parameters</H3><br><br>\n");
1521       }
1522       if((function.dataType.returnType && function.dataType.returnType.kind != voidType) ||
1523          (function.dataType.params.first && ((Type)function.dataType.params.first).kind != voidType))
1524       {
1525          f.Printf("<TABLE  valign=center>\n");
1526       }
1527
1528       for(param = function.dataType.params.first; param; param = param.next)
1529       {
1530          // ADD DESCRIPTION HERE
1531          if(param.kind != voidType)
1532          {
1533             char * desc = ReadDoc(module, functionDoc, function, parameter, param);
1534             f.Printf("<TR>");
1535             string[0] = 0;
1536             DocPrintType(param, string, false, false);
1537
1538             f.Printf("<TD valign=top height=22 nowrap=1>%s&nbsp;</TD>\n", param.name ? param.name : "");
1539             f.Printf("<TD valign=top height=22 nowrap=1>%s&nbsp;</TD>\n", string);
1540             if(param)
1541             {
1542                if(editing)
1543                {
1544                   char fileName[MAX_LOCATION];
1545                   FigureFileName(fileName, module, functionDoc, function, parameter, param);
1546                   f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1547                   f.Puts(desc);
1548                   f.Printf("</a>&nbsp;</TD>\n");
1549                }
1550                else
1551                   f.Printf("<TD valign=top height=22>%s&nbsp;</TD>\n", desc);
1552                delete desc;
1553             }
1554             f.Printf("</TR>\n");
1555          }
1556       }
1557       if(function.dataType.returnType && function.dataType.returnType.kind != voidType)
1558       {
1559          char * desc = ReadDoc(module, functionDoc, function, returnValue, null);
1560          if(function.dataType.params.first && ((Type)function.dataType.params.first).kind != voidType)
1561          {
1562             f.Printf("<TR><TD>&nbsp;</TD></TR>");
1563          }
1564          f.Printf("<TR>");
1565          f.Printf("<TD valign=top height=22 nowrap=1><B>Return Value</B></TD>\n");
1566          string[0] = 0;
1567          DocPrintType(function.dataType.returnType, string, false, false);
1568          f.Printf("<TD valign=top height=22>%s&nbsp;</TD>\n", string);
1569          if(desc)
1570          {
1571             if(editing)
1572             {
1573                char fileName[MAX_LOCATION];
1574                FigureFileName(fileName, module, functionDoc, function, returnValue, null);
1575                f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1576                f.Puts(desc);
1577                f.Printf("</a>&nbsp;</TD>\n");
1578             }
1579             else
1580                f.Printf("<TD valign=top height=22>%s&nbsp;</TD>\n", function, desc);
1581             delete desc;
1582          }
1583          f.Printf("</TR>\n");
1584          f.Printf("</TABLE>\n");
1585       }
1586       if((function.dataType.returnType && function.dataType.returnType.kind != voidType) ||
1587          (function.dataType.params.first && ((Type)function.dataType.params.first).kind != voidType))
1588       {
1589          f.Printf("</TABLE><br>\n");
1590       }
1591       {
1592          char * usageDoc = ReadDoc(module, functionDoc, function, usage, null);
1593          if(usageDoc)
1594          {
1595             f.Printf("<H3>Usage</H3><br>\n");
1596             if(editing)
1597             {
1598                char fileName[MAX_LOCATION];
1599                FigureFileName(fileName, module, functionDoc, function, usage, null);
1600                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1601                f.Puts(usageDoc);
1602                f.Printf("</a>\n");
1603             }
1604             else
1605                f.Printf("<br>%s\n", usageDoc);
1606             f.Printf("<br><br>\n");
1607             delete usageDoc;
1608          }
1609       }
1610       {
1611          char * exampleDoc = ReadDoc(module, functionDoc, function, example, null);
1612          if(exampleDoc)
1613          {
1614             f.Printf("<H3>Example</H3><br>\n");
1615             f.Printf("<FONT face=\"Courier New\">\n");
1616             f.Printf("<br><TABLE >\n");
1617             if(editing)
1618             {
1619                char fileName[MAX_LOCATION];
1620                FigureFileName(fileName, module, functionDoc, function, example, null);
1621                f.Printf("<TR><TD><CODE><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1622                f.Puts(exampleDoc);
1623                f.Printf("</a></CODE></TD></TR>\n");   // bgcolor=#CFC9C0
1624             }
1625             else
1626                f.Printf("<TR><TD><CODE>%s</CODE></TD></TR>\n", exampleDoc);   // bgcolor=#CFC9C0
1627             f.Printf("</TABLE></FONT>\n");
1628             f.Printf("<br>\n");
1629             delete exampleDoc;
1630          }
1631       }
1632       {
1633          char * remarksDoc = ReadDoc(module, functionDoc, function, remarks, null);
1634          if(remarksDoc)
1635          {
1636             f.Printf("<H3>Remarks</H3><br>\n");
1637             if(editing)
1638             {
1639                char fileName[MAX_LOCATION];
1640                FigureFileName(fileName, module, functionDoc, function, remarks, null);
1641                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1642                f.Puts(remarksDoc);
1643                f.Printf("</a>\n");
1644             }
1645             else
1646                f.Printf("<br>%s\n", remarksDoc);
1647             f.Printf("<br><br>\n");
1648             delete remarksDoc;
1649          }
1650       }
1651       {
1652          char * seeAlsoDoc = ReadDoc(module, functionDoc, function, seeAlso, null);
1653          if(seeAlsoDoc)
1654          {
1655             f.Printf("<H3>See Also</H3><br>\n");
1656             if(editing)
1657             {
1658                char fileName[MAX_LOCATION];
1659                FigureFileName(fileName, module, functionDoc, function, seeAlso, null);
1660                f.Printf("<br><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1661                f.Puts(seeAlsoDoc);
1662                f.Printf("</a>\n");
1663             }
1664             else
1665                f.Printf("<br>%s\n", seeAlsoDoc);
1666             f.Printf("<br><br>\n");
1667             delete seeAlsoDoc;
1668          }
1669       }
1670       f.Printf("</FONT></BODY></HTML>\n");
1671    }   
1672 }
1673
1674 static void AddNameSpace(DataRow parentRow, Module module, NameSpace mainNameSpace, NameSpace comNameSpace, char * parentName, bool showPrivate)
1675 {
1676    char nsName[1024];
1677    NameSpace * ns;
1678    NameSpace * nameSpace = mainNameSpace;
1679    DataRow row;
1680    DataRow classesRow = null;
1681    DataRow functionsRow = null, definesRow = null;
1682    APIPage page;
1683
1684    char fileName[MAX_LOCATION];
1685    
1686    strcpy(nsName, parentName ? parentName : "");
1687    if(nameSpace->name)
1688    {
1689       if(nsName[0])
1690          strcat(nsName, "::");
1691       strcat(nsName, nameSpace->name);
1692    }
1693
1694    if(nsName[0])
1695    {
1696       row = parentRow.AddRow();
1697       row.SetData(null, (page = APIPageNameSpace { nameSpace->name, module = module, nameSpace = nameSpace, showPrivate = showPrivate }));
1698       row.tag = (int)nameSpace;
1699       row.icon = mainForm.icons[typeNameSpace];
1700    }
1701    else
1702    {
1703       // "Global NameSpace"
1704       row = parentRow;
1705       page = parentRow.GetData(null);
1706    }
1707
1708    {
1709       bool first = true;
1710
1711       for(ns = (NameSpace *)mainNameSpace.nameSpaces.first; ns; ns = (NameSpace *)((BTNode)ns).next)
1712       {
1713          NameSpace * comNS = (comNameSpace != null) ? (NameSpace *)comNameSpace.nameSpaces.FindString(ns->name) : null;
1714          AddNameSpace(row, module, ns, comNS, nsName, showPrivate);
1715       }
1716       if(comNameSpace != null)
1717       {
1718          for(ns = (NameSpace *)comNameSpace.nameSpaces.first; ns; ns = (NameSpace *)((BTNode)ns).next)
1719          {
1720             if(!mainNameSpace.nameSpaces.FindString(ns->name))
1721             {
1722                AddNameSpace(row, module, ns, null, nsName, showPrivate);
1723             }
1724          }
1725       }
1726    }
1727    if(mainNameSpace.classes.first || (comNameSpace && comNameSpace.classes.first))
1728    {
1729       for(nameSpace = mainNameSpace ; nameSpace; nameSpace = (nameSpace == mainNameSpace) ? comNameSpace : null)
1730       {
1731          if(nameSpace->classes.first)
1732          {
1733             BTNamedLink link;
1734             Class cl;
1735             for(link = (BTNamedLink)nameSpace->classes.first; link; link = (BTNamedLink)((BTNode)link).next)
1736             {
1737                cl = link.data;
1738                if(!cl.templateClass && (!module || cl.module == module || (!cl.module.name && !strcmp(module.name, "ecere"))))
1739                {
1740                   if(!classesRow) { classesRow = row.AddRow(); classesRow.SetData(null, APIPage { "Classes", page = page }); classesRow.collapsed = true; classesRow.icon = mainForm.icons[typeClass]; classesRow.tag = 1; }
1741                   AddClass(classesRow, module, cl, nsName, showPrivate);
1742                }
1743             }
1744          }
1745       }
1746    }
1747
1748    if(mainNameSpace.functions.first || (comNameSpace && comNameSpace.functions.first))
1749    {
1750       for(nameSpace = mainNameSpace ; nameSpace; nameSpace = (nameSpace == mainNameSpace) ? comNameSpace : null)
1751       {
1752          if(nameSpace->functions.first)                            
1753          {
1754             BTNamedLink link;
1755             GlobalFunction fn;
1756             for(link = (BTNamedLink)nameSpace->functions.first; link; link = (BTNamedLink)((BTNode)link).next)
1757             {
1758                fn = link.data;
1759                if(!module || fn.module == module || (!fn.module.name && !strcmp(module.name, "ecere")))
1760                {
1761                   char * name = ( name = RSearchString(fn.name, "::", strlen(fn.name), false, false), name ? name + 2 : fn.name);
1762                   DataRow fnRow;
1763                   if(!functionsRow) { functionsRow = row.AddRow(); functionsRow.SetData(null, APIPage { "Functions", page = page }); functionsRow.collapsed = true; functionsRow.icon = mainForm.icons[typeMethod];  functionsRow.tag = 2; };
1764                   fnRow = functionsRow.AddRow(); fnRow.SetData(null, APIPageFunction { name, function = fn }); fnRow.icon = mainForm.icons[typeMethod]; fnRow.tag = (int)fn;
1765                }
1766             }            
1767          }
1768       }
1769    }
1770    
1771    if(mainNameSpace.defines.first || (comNameSpace && comNameSpace.defines.first))
1772    {
1773       for(nameSpace = mainNameSpace ; nameSpace; nameSpace = (nameSpace == mainNameSpace) ? comNameSpace : null)
1774       {
1775          if(nameSpace->defines.first)
1776          {
1777             BTNamedLink link;
1778             Definition def;
1779             for(link = (BTNamedLink)nameSpace->defines.first; link; link = (BTNamedLink)((BTNode)link).next)
1780             {
1781                def = link.data;
1782                //if(def.module == module)
1783                {
1784                   char * name = ( name = RSearchString(def.name, "::", strlen(def.name), false, false), name ? name + 2 : def.name);
1785                   DataRow defRow;
1786                   if(!definesRow) { definesRow = row.AddRow(); definesRow.SetData(null, APIPage { "Definitions", page = page }); definesRow.collapsed = true; definesRow.icon = mainForm.icons[typeData]; definesRow.tag = 3; };
1787                   defRow = definesRow.AddRow(); defRow.SetData(null, APIPage { name, page = page }); defRow.icon = mainForm.icons[typeData]; defRow.tag = (int)def;
1788                }
1789             }            
1790          }
1791       }
1792    }
1793 }
1794
1795 static void AddDataMemberToPage(File f, DataMember member, int indent, bool showPrivate)
1796 {
1797    char string[1024];
1798    int c;
1799    if(!member.dataType)
1800       member.dataType = ProcessTypeString(member.dataTypeString, false);
1801
1802    f.Printf("<TR>");
1803    string[0] = 0;
1804    DocPrintType(member.dataType, string, true, false);
1805
1806    f.Printf("<TD valign=top height=22 nowrap=1><a name=%08x></a>", member);
1807    for(c = 0; c<indent; c++)
1808       f.Printf("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
1809    f.Printf("<img valign=center src=\"%s\">&nbsp;&nbsp;%s</TD>", iconNames[typeData], member.name ? member.name : ((member.type == structMember) ? "(struct)" : "(union)"));
1810    f.Printf("<TD valign=top height=22 nowrap=1>%s</TD>", (member.type == normalMember) ? string : "");
1811    if(member.type == normalMember)
1812    {
1813       char * desc = ReadDoc(member._class.module, classDoc, member._class, memberDescription, member);
1814       if(desc)
1815       {
1816          if(editing)
1817          {
1818             char fileName[MAX_LOCATION];
1819             FigureFileName(fileName, member._class.module, classDoc, member._class, memberDescription, member);
1820             f.Printf("<TD valign=top height=22><a style=\"text-decoration:none;\" href=\"edit://%s\">", fileName);
1821             f.Puts(desc);
1822             f.Printf("</a></TD>");
1823          }
1824          else
1825             f.Printf("<TD valign=top height=22>%s</TD>", desc);
1826          delete desc;
1827       }
1828    }
1829    else
1830       f.Printf("<TD valign=top height=22></TD>");
1831    
1832    if(member.type != normalMember)
1833    {
1834       DataMember subMember;
1835       for(subMember = member.members.first; subMember; subMember = subMember.next)
1836       {
1837          if((subMember.memberAccess == publicAccess || (subMember.memberAccess == privateAccess && showPrivate)))
1838          {
1839             AddDataMemberToPage(f, subMember, indent + 1, showPrivate);
1840          }
1841       }
1842    }
1843    f.Printf("</TR><br>\n");
1844 }
1845
1846 static void AddDataMember(DataRow parentRow, APIPage page, DataMember member)
1847 {
1848    DataRow row;
1849    if(member.type == normalMember)
1850    {
1851       row = parentRow.AddRow(); row.SetData(null, APIPage { member.name, page = page }); row.icon = mainForm.icons[typeData];
1852       row.tag = (int)member;
1853    }
1854    else
1855    {
1856       DataMember m;
1857       row = parentRow.AddRow(); row.SetData(null, APIPage { (member.type == unionMember) ? "(union)" : "(struct)", page });
1858       row.icon = mainForm.icons[typeData];
1859       row.tag = (int)member;
1860
1861       for(m = member.members.first; m; m = m.next)
1862       {
1863          if(m.memberAccess == publicAccess || (m.memberAccess == privateAccess && page.showPrivate))
1864             AddDataMember(row, page, m);
1865       }
1866    }
1867 }
1868
1869 static void AddClass(DataRow parentRow, Module module, Class cl, char * nsName, bool showPrivate)
1870 {
1871    char fileName[MAX_LOCATION];
1872    char string[1024];
1873    Method method;
1874    Property prop;
1875    DataMember member;
1876    Type param;
1877    DataRow row;
1878    DataRow methodsRow = null, virtualsRow = null, eventsRow = null;
1879    DataRow propertiesRow = null, membersRow = null, conversionsRow = null, enumRow = null;
1880    APIPage page;
1881
1882    row = parentRow.AddRow();
1883    row.SetData(null, (page = APIPageClass { cl.name, cl = cl, showPrivate = showPrivate }));
1884    row.tag = (int)cl;
1885    row.collapsed = true;
1886    row.icon = (cl.type == enumClass || cl.type == unitClass || cl.type == systemClass) ? mainForm.icons[typeDataType] : mainForm.icons[typeClass];
1887
1888    // METHODS
1889    if(cl.methods.first)
1890    {
1891       for(method = (Method)cl.methods.first; method; method = (Method)((BTNode)method).next)
1892       {
1893          if(method.memberAccess == publicAccess || (method.memberAccess == privateAccess && showPrivate))
1894          {
1895             DataRow mRow;
1896             if(!method.dataType)
1897                ProcessMethodType(method);
1898             if(method.type == virtualMethod)
1899             {
1900                if(method.dataType.thisClass)
1901                {
1902                   if(!eventsRow) { eventsRow = row.AddRow(); eventsRow.SetData(null, APIPage { "Events", page = page }); eventsRow.collapsed = true; eventsRow.icon = mainForm.icons[typeEvent];  eventsRow.tag = 4; }
1903                   mRow = eventsRow.AddRow(); mRow.SetData(null, APIPageMethod { method.name, method = method }); mRow.icon = mainForm.icons[typeEvent];
1904                   mRow.tag = (int)method;
1905                }
1906                else
1907                {
1908                   if(!virtualsRow) { virtualsRow = row.AddRow(); virtualsRow.SetData(null, APIPage { "Virtual Methods", page = page }); virtualsRow.collapsed = true; virtualsRow.icon = mainForm.icons[typeMethod]; virtualsRow.tag = 4; }
1909                   mRow = virtualsRow.AddRow(); mRow.SetData(null, APIPageMethod { method.name, method = method }); mRow.icon = mainForm.icons[typeMethod];
1910                   mRow.tag = (int)method;
1911                }
1912             }
1913             else
1914             {
1915                if(!methodsRow) { methodsRow = row.AddRow(); methodsRow.SetData(null, APIPage { "Methods", page = page }); methodsRow.collapsed = true; methodsRow.icon = mainForm.icons[typeMethod]; methodsRow.tag = 5; }
1916                mRow = methodsRow.AddRow(); mRow.SetData(null, APIPageMethod { method.name, method = method }); mRow.icon = mainForm.icons[typeMethod];
1917                mRow.tag = (int)method;
1918             }
1919          }
1920       }
1921    }
1922
1923    if(cl.membersAndProperties.first)
1924    {
1925       for(prop = (Property)cl.membersAndProperties.first; prop; prop = prop.next)
1926       {
1927          if(prop.memberAccess == publicAccess || (prop.memberAccess == privateAccess && showPrivate))
1928          {
1929             if(!prop.dataType)
1930                prop.dataType = ProcessTypeString(prop.dataTypeString, false);
1931             if(prop.isProperty)
1932             {
1933                DataRow mRow;
1934                if(!propertiesRow) { propertiesRow = row.AddRow(); propertiesRow.SetData(null, APIPage { "Properties", page = page }); propertiesRow.collapsed = true; propertiesRow.icon = mainForm.icons[typeProperty]; propertiesRow.tag = 6; }
1935                mRow = propertiesRow.AddRow(); mRow.SetData(null, APIPage { prop.name, page }); mRow.icon = mainForm.icons[typeProperty];
1936                mRow.tag = (int)prop;
1937             }
1938             else
1939             {
1940                if(!membersRow) { membersRow = row.AddRow(); membersRow.SetData(null, APIPage { "Data Members", page = page }); membersRow.collapsed = true; membersRow.icon = mainForm.icons[typeData]; membersRow.tag = 6; }
1941                AddDataMember(membersRow, page, (DataMember)prop);
1942             }
1943          }
1944       }
1945    }
1946
1947    if(cl.conversions.first)
1948    {
1949       for(prop = cl.conversions.first; prop; prop = prop.next)
1950       {
1951          DataRow mRow;
1952          char * name;
1953          if(!conversionsRow) { conversionsRow = row.AddRow(); conversionsRow.SetData(null, APIPage { "Conversions", page = page }); conversionsRow.collapsed = true; conversionsRow.icon = mainForm.icons[typeDataType]; conversionsRow.tag = 7; }
1954          name = RSearchString(prop.name, "::", strlen(prop.name), true, false);
1955          if(name) name += 2; else name = prop.name;
1956          mRow = conversionsRow.AddRow(); mRow.SetData(null, APIPage { name, page = page }); mRow.icon = mainForm.icons[typeDataType];
1957          mRow.tag = (int)prop;
1958       }
1959    }
1960    if(cl.type == enumClass)
1961    {
1962       EnumClassData enumeration = (EnumClassData)cl.data;
1963       NamedLink item;
1964       for(item = enumeration.values.first; item; item = item.next)
1965       {
1966          DataRow mRow;                                                                                                                                                                                      
1967          if(!enumRow) { enumRow = row.AddRow(); enumRow.SetData(null, APIPage { "Enumeration Values", page = page }); enumRow.collapsed = true; enumRow.icon = mainForm.icons[typeEnumValue]; enumRow.tag = 8; }
1968          mRow = enumRow.AddRow(); mRow.SetData(null, APIPage { item.name, page = page }); mRow.icon = mainForm.icons[typeEnumValue];         
1969          mRow.tag = (int)item;
1970       }
1971    }
1972 }
1973
1974 class MainForm : Window
1975 {
1976    size = { 1000, 600 };
1977    hasClose = true;
1978    borderStyle = sizable;
1979    hasMaximize = true;
1980    hasMinimize = true;
1981    text = "API Documentation Browser";
1982
1983    BitmapResource icons[CodeObjectType];
1984
1985    MainForm()
1986    {
1987       CodeObjectType c;
1988       for(c = 0; c < CodeObjectType::enumSize; c++)
1989       {
1990          icons[c] = BitmapResource { iconNames[c], window = this, alphaBlend = true };
1991       }
1992       browser.AddField(DataField { dataType = class(APIPage) });
1993    }
1994
1995    hasMenuBar = true;
1996    menu = Menu { };
1997    Menu fileMenu { menu, "File", f };
1998    Array<FileFilter> fileFilters
1999    { [
2000       { "eC Shared Library files (*.dll, *.so, *.dylib)", "dll, so, dylib" },
2001       { "eC Symbol files (*.sym)", "sym" }
2002    ] };
2003
2004    FileDialog fileDialog
2005    {
2006       filters = fileFilters.array, sizeFilters = fileFilters.count * sizeof(FileFilter)
2007    };
2008    MenuItem fileOpenItem
2009    {
2010       fileMenu, "Open...", o, ctrlO;
2011
2012       bool NotifySelect(MenuItem selection, Modifiers mods)
2013       {
2014          if(fileDialog.Modal() == ok)
2015          {
2016             OpenModule(fileDialog.filePath);
2017          }
2018          return true;
2019       }
2020    };
2021    MenuItem fileSettingsItem
2022    {
2023       fileMenu, "Settings...", s, ctrlS; // set the Settings item to the file menu with shortcut keys:s and ctrl+s
2024
2025       bool NotifySelect(MenuItem selection, Modifiers mods)
2026       {
2027          SettingsDialog { master = this }.Modal(); // Open the settings dialog to allow the user to change the directory for the eCdoc files
2028       }
2029    };
2030    MenuDivider { fileMenu };
2031    MenuItem fileExit { fileMenu, "Exit", x, altF4, NotifySelect = MenuFileExit };
2032
2033    void OpenModule(char * filePath)
2034    {
2035       char extension[MAX_EXTENSION];
2036       Module module = null;
2037       static char symbolsDir[MAX_LOCATION];
2038
2039       FreeContext(globalContext);
2040       FreeExcludedSymbols(excludedSymbols);
2041       ::defines.Free(FreeModuleDefine);
2042       imports.Free(FreeModuleImport);
2043       
2044       FreeGlobalData(globalData);
2045       FreeTypeData(componentsApp);
2046       FreeIncludeFiles();
2047       delete componentsApp;
2048
2049       SetGlobalContext(globalContext);
2050       componentsApp = __ecere_COM_Initialize(false, 1, null);
2051       SetPrivateModule(componentsApp);
2052
2053       StripLastDirectory(filePath, symbolsDir);
2054       SetSymbolsDir(symbolsDir);
2055
2056       GetExtension(filePath, extension);
2057
2058       mainForm.browser.Clear();
2059
2060       ImportModule(filePath, normalImport, publicAccess, false);
2061
2062       if(extension[0] && strcmpi(extension, "so") && strcmpi(extension, "dll"))
2063          componentsApp.name = CopyString(filePath);
2064       
2065       for(module = componentsApp.allModules.first; module; module = module.next)
2066       {
2067          if(module.name && (!strcmp(module.name, "ecere") || !strcmp(module.name, "ecereCOM")))
2068             break;
2069       }
2070       if(!module)
2071          eModule_LoadStrict(componentsApp, "ecereCOM", publicAccess /*privateAccess*/);
2072       AddComponents(componentsApp, false);
2073
2074       for(module = componentsApp.allModules.first; module; module = module.next)
2075       {
2076          if(module.name && (!strcmp(module.name, filePath)))
2077             break;
2078       }
2079       if(!module) module = componentsApp;
2080       mainForm.browser.SelectRow(mainForm.browser.FindSubRow((int)module));
2081
2082       SetSymbolsDir(null);
2083    }
2084
2085    ListBox browser
2086    {
2087       this, anchor = { left = 0, top = 0, bottom = 0 }, borderStyle = 0, background = aliceBlue;
2088       treeBranches = true; collapseControl = true; fullRowSelect = false; rootCollapseButton = true;
2089       hotKey = alt0;
2090
2091       bool NotifySelect(ListBox listBox, DataRow row, Modifiers mods)
2092       {
2093          APIPage page = row.GetData(null);
2094          if(view.edit) view.OnLeftButtonDown(0,0,0);
2095          if(page && page.page) page = page.page;
2096          view.edit = false;
2097          view.PositionCaret(true);
2098          if(page != view.page)
2099          {
2100             Window activeChild = this.activeChild;
2101
2102             view.Destroy(0);
2103             if(page)
2104                view.Create();
2105             activeChild.Activate();
2106          }
2107          else if(!view.created)
2108             view.Create();
2109          
2110          {
2111             page = row.GetData(null);
2112             if(page && page.page)
2113             {
2114                switch(row.tag)
2115                {
2116                   case 1: view.GoToAnchor("Classes"); break;
2117                   case 2: view.GoToAnchor("Functions"); break;
2118                   case 3: view.GoToAnchor("Definitions"); break;
2119                   case 4: view.GoToAnchor("VirtualMethods"); break;
2120                   case 5: view.GoToAnchor("Methods"); break;
2121                   case 6: view.GoToAnchor("Members"); break;
2122                   case 7: view.GoToAnchor("Conversions"); break;
2123                   case 8: view.GoToAnchor("EnumerationValues"); break;
2124                   default:
2125                   {
2126                      char hex[10];
2127                      sprintf(hex, "%08x", row.tag);
2128                      view.GoToAnchor(hex);
2129                   }
2130                }
2131             }
2132             else
2133             {
2134                view.SetScrollPosition(0, 0);
2135             }
2136          }
2137          return true;
2138       }
2139    };
2140    HelpView view
2141    {
2142       this, anchor = { top = 0, bottom = 0, right = 0 };
2143       hotKey = escape;
2144    };
2145    PaneSplitter slider
2146    {
2147       this, leftPane = browser, rightPane = view, split = 300 /*scaleSplit = 0.3 */
2148    };
2149
2150    bool OnClose(bool parentClosing)
2151    {
2152       if(view.edit)
2153          view.OnLeftButtonDown(0,0,0);
2154       return true;
2155    }
2156
2157    bool OnPostCreate()
2158    {
2159       mainForm.OpenModule((((GuiApplication)__thisModule).argc > 1) ? ((GuiApplication)__thisModule).argv[1] : "ecere");
2160       //mainForm.OpenModule("ec");
2161       //mainForm.OpenModule("c:/games/chess/debug/chess.sym");
2162       //mainForm.OpenModule("c:/ide/Objects.IDE.Win32.Debug/ide.sym");
2163       {
2164          int index = mainForm.browser.currentRow.index;
2165          int rowHeight = mainForm.browser.rowHeight;
2166          int height = mainForm.browser.clientSize.h;
2167
2168          mainForm.browser.scroll = { 0, index * rowHeight - height / 2 };
2169       }
2170       return true;
2171    }
2172 };
2173
2174 class EditDialog : Window
2175 {
2176    borderStyle = sizable;
2177    size = { 600, 400 };
2178    autoCreate = false;
2179
2180    EditBox editBox
2181    {
2182       this, anchor = { left = 16, top = 16, right = 18, bottom = 61 }
2183    };
2184    Button saveChanges
2185    {
2186       this, text = "Save Changes", anchor = { horz = 184, vert = 160 }
2187    };
2188    Button cancel
2189    {
2190       this, text = "Cancel", anchor = { horz = 254, vert = 160 }
2191    };
2192 }
2193
2194 #define UTF8_IS_FIRST(x)   (__extension__({ byte b = x; (!(b) || !((b) & 0x80) || (b) & 0x40); }))
2195 #define UTF8_NUM_BYTES(x)  (__extension__({ byte b = x; (b & 0x80 && b & 0x40) ? ((b & 0x20) ? ((b & 0x10) ? 4 : 3) : 2) : 1; }))
2196
2197 class HelpView : HTMLView
2198 {
2199    APIPage page;
2200
2201    hasVertScroll = true;
2202    hasHorzScroll = true;
2203    bool edit;
2204    char editString[MAX_LOCATION];
2205
2206    bool OnCreate()
2207    {
2208       TempFile f { };
2209       page = mainForm.browser.currentRow.GetData(null);
2210       if(page)
2211       {
2212          page.Generate(f);
2213          f.Seek(0, start);
2214          OpenFile(f, null);
2215          GoToAnchor(page.label);
2216          // Go to label...
2217          if(page.page) page = page.page;
2218       }
2219       delete f;
2220       return HTMLView::OnCreate();
2221    }
2222    EditDialog dialog
2223    {
2224
2225    };
2226
2227    void SaveEdit()
2228    {
2229       char archiveFile[MAX_LOCATION];
2230       char fileName[MAX_FILENAME];
2231       char directory[MAX_LOCATION];
2232       char * location;
2233       Archive archive;
2234       SplitArchivePath(editString, archiveFile, &location);
2235       GetLastDirectory(location, fileName);
2236       StripLastDirectory(location, directory);
2237       archive = ArchiveOpen(archiveFile, { true } );
2238       if(archive)
2239       {
2240          TempFile f { };
2241          ArchiveDir dir = archive.OpenDirectory(directory, null, replace);
2242          Block block;
2243          bool empty = true;
2244          for(block = textBlock.parent.subBlocks.first; block; block = block.next)
2245          {
2246             if(block.type == TEXT && block.textLen)
2247             {
2248                empty = false;
2249                break;
2250             }
2251          }
2252          if(!empty)
2253          {
2254             for(block = textBlock.parent.subBlocks.first; block; block = block.next)
2255             {
2256                if(block.type == BR)
2257                   f.Puts("<br>");
2258                else if(block.type == TEXT)
2259                   f.Write(block.text, 1, block.textLen);
2260             }
2261          }
2262          f.Seek(0, start);
2263          dir.AddFromFile(fileName, f, null, replace, 0, null, null);
2264          delete dir;
2265          delete archive;
2266          delete f;
2267          if(empty)
2268          {
2269             Block parent = textBlock.parent;
2270             while((block = parent.subBlocks.first))
2271             {
2272                parent.subBlocks.Remove(block);
2273                delete block;
2274             }
2275             textBlock = Block { type = TEXT, parent = parent, font = parent.font };
2276             textBlock.text = CopyString("[Add Text]");
2277             textBlock.textLen = strlen(textBlock.text);
2278             parent.subBlocks.Add(textBlock);
2279          }
2280
2281          edit = false;            
2282          if(created)
2283          {
2284             ComputeMinSizes();
2285             ComputeSizes();
2286             PositionCaret(true);
2287             Update(null);
2288          }
2289       }
2290    }
2291
2292    bool OnLeftButtonDown(int x, int y, Modifiers mods)
2293    {
2294       if(edit)
2295       {
2296          // Update overLink
2297          HTMLView::OnMouseMove(x, y, mods);
2298          if(textBlock && overLink == textBlock.parent)
2299          {
2300             selPosition = curPosition = TextPosFromPoint(x, y, &textBlock);
2301             PositionCaret(true);            
2302          }
2303          else
2304          {
2305             SaveEdit();
2306             HTMLView::OnLeftButtonDown(x, y, mods);
2307          }
2308          return true;
2309       }
2310       return HTMLView::OnLeftButtonDown(x, y, mods);
2311    }
2312
2313    bool OnLeftButtonUp(int x, int y, Modifiers mods)
2314    {
2315       if(!edit || !textBlock || clickedLink != textBlock.parent)
2316       {
2317          HTMLView::OnLeftButtonUp(x, y, mods);
2318          if(edit)
2319          {
2320             selPosition = curPosition = TextPosFromPoint(x, y, &textBlock);
2321             PositionCaret(true);
2322          }
2323       }
2324       return true;
2325    }
2326
2327    // Returns true if it needs scrolling
2328    /*
2329    bool FindMouse(int px, int py, int * tx, int * ty, EditLine * tline, bool half)
2330    {
2331       int w;
2332       int c;
2333       int x, y;
2334       EditLine line;
2335       bool needHScroll = false;
2336
2337       if(py < 0)
2338       {
2339          if(this.viewY > 0)
2340          {
2341             y = this.viewY-1;
2342             line = this.viewLine ? (void *)this.viewLine.prev : null;
2343          }
2344          else
2345          {
2346             y = 0;
2347             line = (void *)this.lines.first;
2348          }
2349       }
2350       else
2351       {
2352          py = Min(py, clientSize.h);
2353          py /= this.space.h;
2354          py = Min(py, this.lineCount);
2355          y = this.viewY;
2356          for(c = 0, line = this.viewLine; (line != (void *)this.lines.last && c<py); line = line.next, c++)
2357          {
2358             y++;
2359          }
2360       }
2361
2362       if( (px >= clientSize.w || px < clientSize.w/2) && this.viewX)
2363          needHScroll = true;
2364       px = Max(px,0);
2365       px = Min(px,clientSize.w+this.space.w);
2366
2367       if(tx && line)
2368       {
2369          *tx = AdjustXPosition(line, px + viewX, half, null, MAXINT, 0);
2370       }
2371
2372       if(tline) *tline = line;
2373       if(ty) *ty = y;
2374
2375       // Prevent divide by 0 from non valid this.font
2376       if(!this.space.h)
2377          return (y < this.viewY) || needHScroll;
2378       else
2379          return (y < this.viewY || y >= this.viewY + clientSize.h / this.space.h) || needHScroll;
2380       return false;
2381    }
2382 */
2383 /*
2384    bool OnLeftButtonDown(int mx, int my, Modifiers mods)
2385    {
2386       int x,y;
2387       EditLine line;
2388
2389       if(style.noSelect) return true;
2390
2391       if(!mods.isActivate)
2392       {
2393          Capture();
2394          mouseSelect = true;
2395       }
2396
2397       mouseX = mx - XOFFSET;
2398       mouseY = my;
2399
2400       FindMouse(mouseX, mouseY, &x, &y, &line, true);
2401
2402       if(!style.readOnly)
2403       {
2404          if(wordSelect)
2405             mouseMove = false;
2406          else if(IsMouseOnSelection() && !mods.isActivate)
2407          {
2408             DirtyLine(this.y);
2409             mouseMove = true;
2410             dropX = x;
2411             dropY = y;
2412             dropLine = line;
2413          }
2414       }
2415
2416       if(!mouseMove && !wordSelect && (!mods.isActivate || style.multiLine))
2417       {
2418          if(mods.shift && !mods.isActivate)
2419          {
2420             this.x = x;
2421             this.y = y;
2422             this.line = line;
2423             DirtyAll();
2424          }
2425          else
2426          {
2427             SelDirty();
2428             DirtyLine(this.y);
2429             this.x = x;
2430             this.y = y;
2431             this.line = line;
2432             DirtyLine(this.y);
2433             this.selLine = this.line;
2434             this.selX = this.x;
2435             this.selY = this.y;
2436             //Deselect();
2437          }
2438          ComputeColumn();
2439       }
2440       
2441       UpdateDirty();
2442       UpdateCaretPosition(true);
2443       return true;
2444    }
2445 */
2446 /*
2447    bool OnLeftButtonUp(int x, int y, Modifiers mods)
2448    {
2449       timer.Stop();
2450
2451       mouseSelect = false;
2452       wordSelect = false;
2453       
2454       x -= XOFFSET;
2455       
2456       ReleaseCapture();
2457       if(!style.readOnly)
2458       {
2459          if(mouseMove)
2460          {
2461             EditLine line;
2462             FindMouse(mouseX, mouseY, &x, &y, &line, true);
2463     
2464             dropX = x;
2465             dropY = y;
2466             dropLine = line;
2467
2468             mouseMove = IsMouseOnSelection();
2469
2470             if(!mouseMove)
2471             {
2472                int size = SelSize();
2473                if(size)
2474                {
2475                   char * text = new char[size+1];
2476                   if(text)
2477                   {
2478                      int moveX = 0;
2479                      GetSel(text, false);
2480
2481                      if(Max(selY, this.y) == dropY)
2482                      {
2483                         if(this.x > selX)
2484                         {
2485                            if(this.dropX > this.selX)
2486                               moveX = this.x - this.selX;
2487                         }
2488                         else
2489                         {
2490                            if(this.dropX > this.x)
2491                               moveX = this.selX - this.x;
2492                         }
2493                      }
2494                      DelSel(null);
2495                      this.dropX -= moveX;
2496                      this.selX = this.x = this.dropX;
2497                      this.selY = this.y = this.dropY;
2498                      this.selLine = this.line = this.dropLine;
2499                      AddS(text);
2500                      SetViewToCursor(true);
2501                      delete text;
2502                      Modified();
2503                   }
2504                }
2505             }
2506             else
2507             {
2508                SelDirty();
2509                DirtyLine(this.y);
2510                this.x = x;
2511                this.y = y;
2512                this.line = line;
2513                ComputeColumn();
2514                DirtyLine(this.y);
2515                Deselect();
2516                UpdateDirty();
2517             }
2518          }
2519          else
2520          {
2521             EditLine line;
2522             mouseX = x;
2523             mouseY = y;
2524
2525             FindMouse(mouseX, mouseY, &x, &y, &line, true);
2526
2527             NotifyDropped(master, this, x, y);
2528          }
2529       }
2530       mouseMove = false;
2531       return true;
2532    }
2533
2534    bool OnMouseMove(int mx, int my, Modifiers mods)
2535    {
2536       int x,y;
2537       EditLine line;
2538       bool needScroll;
2539       
2540       if(mods != -1 && mods.isSideEffect) 
2541       { 
2542          SetSelectCursor(); 
2543          return true; 
2544       }
2545       if(style.noSelect) return true;
2546       if(wordSelect) return true;
2547       mouseX = mx - XOFFSET;
2548       mouseY = my;
2549
2550       needScroll = FindMouse(this.mouseX, this.mouseY, &x, &y, &line, true);
2551
2552       if(this.mouseMove || this.mouseSelect)
2553       {
2554          if(!needScroll)
2555             timer.Stop();
2556          else 
2557          {
2558             if(needScroll)
2559                timer.Start();
2560             if(mods != -1 && 
2561                ((style.hScroll) || (style.vScroll)))
2562                return true;
2563          }
2564       }
2565
2566       if(this.mouseMove)
2567       {
2568          DirtyLine(this.dropY);
2569          this.dropX = x;
2570          this.dropY = y;
2571          DirtyLine(this.dropY);
2572          this.dropLine = line;
2573          SetViewToCursor(true);
2574       }
2575       else if(this.mouseSelect)
2576       {
2577          DirtyLine(this.selY);
2578          DirtyLine(this.y);
2579          this.x = x;
2580          this.y = y;
2581          ComputeColumn();
2582          DirtyLine(this.y);
2583          this.line = line;
2584          SetViewToCursor(true);
2585          UpdateDirty();
2586       }
2587       SetSelectCursor();
2588       return true;
2589    }
2590
2591    bool OnLeftDoubleClick(int mx, int my, Modifiers mods)
2592    {
2593       int x,y;
2594       EditLine line;
2595       
2596       mx -= XOFFSET;
2597
2598       if(style.noSelect) return true;
2599       FindMouse(mx, my, &x, &y, &line, false);
2600       if(!NotifyDoubleClick(master, this, line, mods))
2601          return false;
2602       if(x < line.count)
2603       {
2604          int c;
2605          int start = -1;
2606          int numBytes;
2607          for(c = x; c >= 0; c--)
2608          {
2609             unichar ch;
2610             while(c > 0 && !UTF8_IS_FIRST(line.buffer[c])) c--;
2611             ch = UTF8_GET_CHAR(line.buffer + c, numBytes);
2612             if(!IS_ALUNDER(ch))
2613                break;
2614             start = c;
2615          }
2616          if(start != -1)
2617          {
2618             for(c = start; c<line.count; c += numBytes)
2619             {
2620                unichar ch = UTF8_GET_CHAR(line.buffer + c, numBytes);
2621                if(!IS_ALUNDER(ch))
2622                   break;
2623             }
2624             SelDirty();
2625             DirtyLine(this.y);
2626             this.y = y;
2627             DirtyLine(this.y);
2628             this.selX = start;
2629             this.x = c;
2630             ComputeColumn();
2631             this.line = this.selLine = line;
2632             this.wordSelect = (c != start);
2633             UpdateDirty();
2634          }
2635       }
2636       return true;
2637    }
2638 */
2639    bool OnOpen(char * href)
2640    {
2641       if(!strncmp(href, "api://", 6))
2642       {
2643          int tag = strtoul(href + 6, null, 16);
2644          DataRow row = mainForm.browser.FindSubRow(tag);
2645          if(row)
2646          {
2647             edit = false;
2648             mainForm.browser.SelectRow(row);
2649             while((row = row.parent))
2650                row.collapsed = false;
2651             row = mainForm.browser.currentRow;
2652             mainForm.browser.scroll = { 0, row.index * mainForm.browser.rowHeight - mainForm.browser.clientSize.h / 2 };
2653          }
2654       }
2655       else if(!strncmp(href, "edit://", 7))
2656       {
2657          Block block;
2658          int startX = clickedLink.startX, startY = clickedLink.startY;
2659          for(block = (Block)clickedLink.subBlocks.first; block; block = block.next)
2660          {
2661             if(block.type == TEXT) startX = block.startX, startY = block.startY;
2662             if(block.type == BR && (!block.prev || !block.next || block.next.type != TEXT))
2663             {
2664                Block newBlock { type = TEXT, parent = block.parent, font = block.parent.font };
2665                int tw = 0, th = 0;
2666                display.FontExtent(block.font.font, " ", 1, null, &th);
2667                if(!block.prev)
2668                {
2669                   block.parent.subBlocks.Insert(null, newBlock);
2670                   block = newBlock;
2671                }
2672                else
2673                {
2674                   block.parent.subBlocks.Insert(block, newBlock);
2675                   startY += th;
2676                }               
2677                newBlock.startX = startX;
2678                newBlock.startY = startY;
2679                newBlock.text = new0 char[1];
2680             }
2681          }
2682
2683          textBlock = (Block)clickedLink.subBlocks.first;
2684          if(!strcmp(textBlock.text, "[Add Text]"))
2685          {
2686             textBlock.text[0] = 0;
2687             textBlock.textLen = 0;               
2688          }
2689
2690          strcpy(editString, href + 7);
2691          selPosition = curPosition = 0;
2692          // dialog.Create();
2693          edit = true;
2694          PositionCaret(true);
2695       }
2696       return true;
2697    }
2698
2699    Block textBlock;
2700    char * text;
2701    int curPosition, selPosition;
2702
2703    bool OnKeyDown(Key key, unichar ch)
2704    {
2705       if(edit)
2706       {
2707          switch(key)
2708          {
2709             case escape:
2710                OnLeftButtonDown(0,0,0);
2711                return false;
2712             case end:
2713                selPosition = curPosition = textBlock.textLen;
2714                PositionCaret(true);
2715                Update(null);
2716                break;
2717             case home:
2718                selPosition = curPosition = 0;
2719                PositionCaret(true);
2720                Update(null);
2721                break;
2722             case ctrlHome:
2723                selPosition = curPosition = 0;
2724                while(textBlock.prev)
2725                   textBlock = textBlock.prev.prev;
2726                PositionCaret(true);
2727                Update(null);
2728                return false;
2729             case ctrlEnd:
2730                while(textBlock.next && textBlock.next.next)
2731                   textBlock = textBlock.next.next;
2732                selPosition = curPosition = textBlock.textLen;
2733                PositionCaret(true);
2734                Update(null);
2735                return false;
2736          }
2737       }
2738       else
2739          return HTMLView::OnKeyDown(key, ch);
2740       return true;
2741    }
2742    bool OnKeyHit(Key key, unichar ch)
2743    {
2744       if(edit)
2745       {
2746          switch(key)
2747          {
2748             case up:
2749             {
2750                if(caretY == textBlock.startY)
2751                {
2752                   if(textBlock.prev)
2753                   {
2754                      textBlock = textBlock.prev.prev;
2755                      selPosition = curPosition = Min(curPosition, textBlock.textLen);
2756                      PositionCaret(false);
2757                      caretY = MAXINT;
2758                   }
2759                   else
2760                      return false;
2761                }
2762
2763                {
2764                   int tw = 0, th = 0;
2765                   int textPos = 0;
2766                   int sx = textBlock.startX, sy = textBlock.startY;
2767                   char * text = textBlock.text;
2768                   int maxW;
2769                   Block block = textBlock;
2770                   while(block && block.type != TD) block = block.parent;
2771                   if(block)
2772                   {
2773                      Block table = block;
2774                      while(table && table.type != TABLE) table = table.parent;
2775                      if(table)
2776                         maxW = block.w - 2* table.cellPadding;
2777                      else
2778                         maxW = clientSize.w - 10 - sx;
2779                   }
2780                   else
2781                      maxW = clientSize.w - 10 - sx;
2782                   display.FontExtent(textBlock.font.font, " ", 1, null, &th);
2783
2784                   do
2785                   {
2786                      int startPos = textPos;
2787                      int width = 0;
2788                      int x = 0;
2789                      bool lineComplete = false;
2790                      for(; textPos<textBlock.textLen && !lineComplete;)
2791                      {
2792                         int w;
2793                         int len;
2794                         char * nextSpace = strchr(text + textPos, ' ');
2795
2796                         if(nextSpace)
2797                            len = (nextSpace - (text + textPos)) + 1;
2798                         else
2799                            len = textBlock.textLen - textPos;
2800                         
2801                         display.FontExtent(textBlock.font.font, text + textPos, len, &w, &th);
2802
2803                         if(x + width + w > maxW && x > 0)
2804                         {
2805                            lineComplete = true;
2806                            break;
2807                         }
2808                         textPos += len;
2809                         width += w;
2810                         if(nextSpace)
2811                         {
2812                            x += width;
2813                            width = 0;
2814                         }
2815                         if(textPos == textBlock.textLen || (sy == caretY - th && caretX <= x + width + sx))
2816                         {
2817                            x += width;
2818                            curPosition = textPos;
2819                            while(curPosition > 0 && x + sx > caretX && textPos > startPos)
2820                            {
2821                               int len;
2822                               while(curPosition > 0 && !UTF8_IS_FIRST(text[--curPosition]));
2823                               len = curPosition - startPos;
2824                               display.FontExtent(textBlock.font.font, text + startPos, len, &x, null);
2825                            }
2826                            selPosition = curPosition;
2827                            PositionCaret(false);
2828                            return false;
2829                         }
2830                      }
2831                      if(sy == caretY - th || textPos == textBlock.textLen)
2832                      {
2833                         if(textPos != textBlock.textLen)
2834                         {
2835                            int c = textPos - 1;
2836                            while(c > 0 && text[c] == ' ') c--;
2837                            selPosition = curPosition = c + 1;
2838                         }
2839                         else
2840                            selPosition = curPosition = textBlock.textLen;
2841                         PositionCaret(false);
2842                         return false;
2843                      }
2844                      sy += th;
2845                      sx = textBlock.startX;
2846                   } while(textPos < textBlock.textLen);
2847                   return false;
2848                }
2849                return false;
2850             }
2851             case down:
2852             {
2853                int tw = 0, th = 0;
2854                int textPos = 0;
2855                int sx = textBlock.startX, sy = textBlock.startY;
2856                char * text = textBlock.text;
2857                int maxW;
2858                Block block = textBlock;
2859                while(block && block.type != TD) block = block.parent;
2860                if(block)
2861                {
2862                   Block table = block;
2863                   while(table && table.type != TABLE) table = table.parent;
2864                   if(table)
2865                      maxW = block.w - 2* table.cellPadding;
2866                   else
2867                      maxW = clientSize.w - 10 - sx;
2868                }
2869                else
2870                   maxW = clientSize.w - 10 - sx;
2871                display.FontExtent(textBlock.font.font, " ", 1, null, &th);
2872
2873                while(!textPos || textPos < textBlock.textLen)
2874                {
2875                   int startPos = textPos;
2876                   int width = 0;
2877                   int x = 0;
2878                   bool lineComplete = false;
2879                   for(; (textPos < textBlock.textLen) && !lineComplete;)
2880                   {
2881                      int w;
2882                      int len;
2883                      char * nextSpace = strchr(text + textPos, ' ');
2884
2885                      if(nextSpace)
2886                         len = (nextSpace - (text + textPos)) + 1;
2887                      else
2888                         len = textBlock.textLen - textPos;
2889                      
2890                      display.FontExtent(textBlock.font.font, text + textPos, len, &w, &th);
2891
2892                      if(x + width + w > maxW && x > 0)
2893                      {
2894                         lineComplete = true;
2895                         break;
2896                      }
2897                      textPos += len;
2898                      width += w;
2899                      if(nextSpace)
2900                      {
2901                         x += width;
2902                         width = 0;
2903                      }
2904                      if(sy > caretY && (textPos == textBlock.textLen || caretX <= x + width + sx))
2905                      {
2906                         curPosition = textPos;
2907                         x += width;
2908                         while(curPosition > 0 && x + sx > caretX && textPos > startPos)
2909                         {
2910                            int len;
2911                            while(curPosition > 0 && !UTF8_IS_FIRST(text[--curPosition]));
2912                            len = curPosition - startPos;
2913                            display.FontExtent(textBlock.font.font, text + startPos, len, &x, null);
2914                         }
2915                         selPosition = curPosition;
2916                         PositionCaret(false);
2917                         return false;
2918                      }
2919                   }
2920                   if(sy > caretY)
2921                   {
2922                      selPosition = curPosition = textBlock.textLen;
2923                      PositionCaret(false);
2924                      return false;
2925                   } 
2926                   else if(textPos == textBlock.textLen && textBlock.next && textBlock.next.next)
2927                   {
2928                      startPos = 0;
2929                      textPos = 0;
2930                      textBlock = textBlock.next.next;
2931                      sy = textBlock.startY;
2932                      sx = textBlock.startX;
2933                      text = textBlock.text;
2934                   }
2935                   else
2936                   {
2937                      sy += th;
2938                      sx = textBlock.startX;
2939                   }
2940                }
2941                
2942                /*if(textBlock.next && textBlock.next.next)
2943                {
2944                   textBlock = textBlock.next.next;
2945                   selPosition = curPosition = Min(curPosition, textBlock.textLen);
2946                   PositionCaret(false);
2947                }*/
2948                break;
2949             }
2950             #define IS_ALUNDER(ch) ((ch) == '_' || isalnum((ch)))
2951             case ctrlRight:
2952             {
2953                // SELECTION CTRL-RIGHT
2954                /*
2955                bool foundAlpha = false;
2956                bool found = false;
2957                Block line, lastLine;
2958                int lastC;
2959
2960                for(line = textBlock; (line && !found); line = line.next ? line.next.next : null)
2961                {
2962                   int start = (line == textBlock) ? curPosition : 0;
2963                   int c;
2964                   for(c = start; c < line.textLen; c++)
2965                   {
2966                      if(IS_ALUNDER(line.text[c]))
2967                      {
2968                         foundAlpha = true;
2969                         lastC = c;
2970                         lastLine = line;
2971                      }
2972                      else if(foundAlpha)
2973                      {
2974                         found = true;
2975                         break;
2976                      }
2977                   }
2978                   if(!found && (c != curPosition || line != textBlock))
2979                   {
2980                      found = true;
2981                      lastLine = line;
2982                      lastC = line.textLen-1;
2983                      break;
2984                   }
2985                }  
2986                if(found)
2987                {
2988                   selPosition = curPosition = lastC+1;
2989                   textBlock = lastLine;
2990                   PositionCaret(true);
2991                }
2992                */
2993                
2994                bool foundAlpha = false;
2995                bool found = false;
2996                Block line;
2997
2998                for(line = textBlock; (line && !found); line = line.next ? line.next.next : null)
2999                {
3000                   int start = (line == textBlock) ? curPosition : 0;
3001                   int c;
3002                   for(c = start; c < line.textLen; c++)
3003                   {
3004                      if(!IS_ALUNDER(line.text[c]))
3005                         foundAlpha = true;
3006                      else if(foundAlpha)
3007                      {
3008                         found = true;
3009                         selPosition = curPosition = c;
3010                         textBlock = line;
3011                         PositionCaret(true);
3012                         break;
3013                      }
3014                   }
3015                   // No next word found, 
3016                   if(!found && (c != curPosition || line != textBlock))
3017                   {
3018                      found = true;
3019                      selPosition = curPosition = line.textLen;
3020                      textBlock = line;
3021                      PositionCaret(true);
3022                   }
3023                   foundAlpha = true;
3024                }
3025                break;
3026             }
3027             case ctrlLeft:
3028             {
3029                bool foundAlpha = false;
3030                bool found = false;
3031                Block line, lastLine;
3032                int lastC;
3033
3034                for(line = textBlock; (line && !found); line = line.prev ? line.prev.prev : null)
3035                {
3036                   int start, c;
3037                   if(curPosition == 0 && line != textBlock)
3038                   {
3039                      foundAlpha = true;
3040                      lastC = line.textLen;
3041                      lastLine = line;
3042                      break;
3043                   }
3044                   if(line == textBlock) start = curPosition-1; else start = line.textLen-1;
3045                   for(c = start; c>=0; c--)
3046                   {
3047                      if(IS_ALUNDER(line.text[c]))
3048                      {
3049                         foundAlpha = true;
3050                         lastC = c;
3051                         lastLine = line;
3052                      }
3053                      else
3054                      {
3055                         if(foundAlpha)
3056                         {
3057                            found = true;
3058                            break;
3059                         }
3060                      }
3061                   }
3062                   // No next word found, 
3063                   if(!found && curPosition > 0)
3064                   {
3065                      foundAlpha = true;
3066                      lastC = 0;
3067                      lastLine = line;
3068                      break;
3069                   }
3070                }
3071                if(foundAlpha)
3072                {
3073                   textBlock = lastLine;
3074                   selPosition = curPosition = lastC;
3075                   PositionCaret(true);
3076                }
3077                break;
3078             }
3079             case right:
3080                if(curPosition < textBlock.textLen)
3081                {
3082                   curPosition += UTF8_NUM_BYTES(textBlock.text[curPosition]);
3083                   PositionCaret(true);
3084                   selPosition = curPosition;
3085                }
3086                else if(textBlock.next && textBlock.next.next)
3087                {
3088                   textBlock = textBlock.next.next;
3089                   selPosition = curPosition = 0;
3090                   PositionCaret(true);
3091                }
3092                break;
3093             case left:
3094                if(curPosition > 0)
3095                {
3096                   while(curPosition > 0 && !UTF8_IS_FIRST(textBlock.text[--curPosition]));
3097                   PositionCaret(true);
3098                   selPosition = curPosition;
3099                }
3100                else if(textBlock.prev)
3101                {
3102                   textBlock = textBlock.prev.prev;
3103                   selPosition = curPosition = textBlock.textLen;
3104                   PositionCaret(true);
3105                }
3106                break;
3107             case backSpace:
3108                if(curPosition)
3109                {
3110                   int c = curPosition;
3111                   int nb = 1;
3112                   while(c > 0 && !UTF8_IS_FIRST(textBlock.text[--c])) nb++;
3113                   memmove(textBlock.text + curPosition - nb, textBlock.text + curPosition, textBlock.textLen - curPosition + 1);
3114                   textBlock.textLen -= nb;
3115                   textBlock.text = renew textBlock.text char[textBlock.textLen + 1];
3116                   curPosition -= nb;
3117                   selPosition = curPosition;
3118                   {
3119                      //Clear(html.block);
3120                      //CreateForms(html.block);
3121                      ComputeMinSizes();
3122                      ComputeSizes();
3123                      //PositionForms();
3124                   }
3125                   PositionCaret(true);
3126                   Update(null);
3127                }
3128                else if(textBlock.prev)
3129                {
3130                   Block prev = textBlock.prev, prevBlock = textBlock.prev.prev;
3131                   prevBlock.text = renew prevBlock.text char[prevBlock.textLen + textBlock.textLen + 1];
3132                   memcpy(prevBlock.text + prevBlock.textLen, textBlock.text, textBlock.textLen + 1);
3133
3134                   selPosition = curPosition = prevBlock.textLen;
3135                   prevBlock.textLen += textBlock.textLen;
3136                   textBlock.parent.subBlocks.Remove(prev);
3137                   delete prev;
3138                   textBlock.parent.subBlocks.Remove(textBlock);                  
3139                   delete textBlock;
3140                   textBlock = prevBlock;
3141                   
3142                   {
3143                      //Clear(html.block);
3144                      //CreateForms(html.block);
3145                      ComputeMinSizes();
3146                      ComputeSizes();
3147                      //PositionForms();
3148                   }
3149                   PositionCaret(true);
3150                   Update(null);
3151                }
3152                break;
3153             case del:
3154                if(textBlock.textLen > curPosition)
3155                {
3156                   int nb = UTF8_NUM_BYTES(textBlock.text[curPosition]);
3157                   memmove(textBlock.text + curPosition, textBlock.text + curPosition + nb, textBlock.textLen - curPosition + 1 - nb + 1);
3158                   textBlock.textLen -= nb;
3159                   textBlock.text = renew textBlock.text char[textBlock.textLen + 1];
3160                   {
3161                      //Clear(html.block);
3162                      //CreateForms(html.block);
3163                      ComputeMinSizes();
3164                      ComputeSizes();
3165                      //PositionForms();
3166                   }
3167                   PositionCaret(true);
3168                   Update(null);
3169                }
3170                else if(textBlock.next && textBlock.next.next)
3171                {
3172                   Block next = textBlock.next, nextBlock = textBlock.next.next;
3173                   textBlock.text = renew textBlock.text char[textBlock.textLen + nextBlock.textLen + 1];
3174                   memcpy(textBlock.text + textBlock.textLen, nextBlock.text, nextBlock.textLen + 1);
3175
3176                   textBlock.textLen += nextBlock.textLen;
3177                   textBlock.parent.subBlocks.Remove(next);
3178                   delete next;
3179                   textBlock.parent.subBlocks.Remove(nextBlock);                  
3180                   delete nextBlock;
3181                   
3182                   {
3183                      //Clear(html.block);
3184                      //CreateForms(html.block);
3185                      ComputeMinSizes();
3186                      ComputeSizes();
3187                      //PositionForms();
3188                   }
3189                   PositionCaret(true);
3190                   Update(null);
3191                }
3192                break;
3193             case enter:
3194             {
3195                Block block { type = BR, parent = textBlock.parent, font = textBlock.font };
3196                Block newBlock { type = TEXT, parent = textBlock.parent, font = textBlock.font };
3197                int startY = textBlock.startY, startX = textBlock.startX;
3198                int tw = 0, th = 0;
3199
3200                display.FontExtent(textBlock.font.font, " ", 1, null, &th);
3201                textBlock.parent.subBlocks.Insert(textBlock, block);
3202                textBlock.parent.subBlocks.Insert(block, newBlock);
3203
3204                startY += th;
3205
3206                newBlock.textLen = textBlock.textLen - curPosition;
3207                newBlock.text = new char[newBlock.textLen+1];
3208                memcpy(newBlock.text, textBlock.text + curPosition, textBlock.textLen - curPosition + 1);
3209                textBlock.textLen = curPosition;
3210                textBlock.text[curPosition] = 0;
3211
3212                newBlock.startY = startY;
3213                newBlock.startX = startX;
3214                selPosition = curPosition = 0;
3215                {
3216                   //Clear(html.block);
3217                   //CreateForms(html.block);
3218                   ComputeMinSizes();
3219                   ComputeSizes();
3220                   //PositionForms();
3221                }
3222                textBlock = newBlock;
3223                PositionCaret(true);
3224                Update(null);
3225                break;
3226             }
3227             case shiftInsert:
3228             case ctrlV:
3229             {
3230                ClipBoard clipBoard { };
3231                if(clipBoard.Load())
3232                {  
3233                   int c;
3234                   char * text = clipBoard.memory;
3235                   char ch;
3236                   int start = 0;
3237                   Block parent = textBlock.parent;
3238                   FontEntry font = textBlock.font;
3239                   for(c = 0; ; c++)
3240                   {
3241                      ch = text[c];
3242                      if(ch == '\n' || ch == '\r' || !ch)
3243                      {
3244                         int len = c - start;
3245                         textBlock.text = renew textBlock.text char[textBlock.textLen + 1 + len];
3246                         memmove(textBlock.text + curPosition + len, textBlock.text + curPosition, textBlock.textLen - curPosition + 1);
3247                         memcpy(textBlock.text + curPosition, text + start, len);
3248                         textBlock.textLen += len;
3249                         curPosition += len;
3250                         selPosition = curPosition;
3251                         if(!ch) break;
3252                         {
3253                            Block block { type = BR, parent = parent, font = font };
3254                            Block newBlock { type = TEXT, parent = parent, font = font };
3255                            int startY = textBlock.startY, startX = textBlock.startX;
3256                            int tw = 0, th = 0;
3257
3258                            display.FontExtent(textBlock.font.font, " ", 1, null, &th);
3259                            textBlock.parent.subBlocks.Insert(textBlock, block);
3260                            textBlock.parent.subBlocks.Insert(block, newBlock);
3261
3262                            startY += th;
3263
3264                            newBlock.textLen = textBlock.textLen - curPosition;
3265                            newBlock.text = new char[newBlock.textLen+1];
3266                            memcpy(newBlock.text, textBlock.text + curPosition, textBlock.textLen - curPosition + 1);
3267                            textBlock.textLen = curPosition;
3268                            textBlock.text[curPosition] = 0;
3269
3270                            newBlock.startY = startY;
3271                            newBlock.startX = startX;
3272                            selPosition = curPosition = 0;
3273                            textBlock = newBlock;
3274                         }
3275                         if(ch == '\r' && text[c+1] == '\n') c++;
3276                         start = c + 1;
3277                      }
3278                   }
3279                   ComputeMinSizes();
3280                   ComputeSizes();
3281                   PositionCaret(true);
3282                   Update(null);
3283                }
3284                delete clipBoard;
3285                break;
3286             }
3287             default:
3288             {
3289                // eC BUG HERE: (Should be fixed)
3290                if(key.ctrl && !key.alt && ch >= 32 && ch != 128 /*&& ch < 128*/)
3291                {
3292                   char string[5];
3293                   int len = UTF32toUTF8Len(&ch, 1, string, 5);
3294                   int c;
3295
3296                   textBlock.text = renew textBlock.text char[textBlock.textLen + len + 1];
3297                   memmove(textBlock.text + curPosition + len, textBlock.text + curPosition, textBlock.textLen - curPosition + 1);
3298                   
3299                   for(c = 0; c<len; c++)
3300                   {
3301                      textBlock.text[curPosition] = string[c];
3302                      textBlock.textLen++;
3303                      curPosition++;
3304                   }
3305                   selPosition = curPosition;
3306                   
3307                   {
3308                      //Clear(html.block);
3309                      //CreateForms(html.block);
3310                      ComputeMinSizes();
3311                      ComputeSizes();
3312                      //PositionForms();
3313                   }
3314                   PositionCaret(true);
3315                   Update(null);
3316                }
3317             }
3318          }
3319       }
3320       return true;
3321    }
3322
3323    void OnResize(int width, int height)
3324    {
3325       HTMLView::OnResize(width, height);
3326       PositionCaret(true);
3327    }
3328
3329    int caretX, caretY;
3330    void PositionCaret(bool setCaretX)
3331    {
3332       if(edit)
3333       {
3334          int tw = 0, th = 0;
3335          int textPos = 0;
3336          int sx = textBlock.startX, sy = textBlock.startY;
3337          char * text = textBlock.text;
3338          int maxW;
3339          Block block = textBlock;
3340          while(block && block.type != TD) block = block.parent;
3341          if(block)
3342          {
3343             Block table = block;
3344             while(table && table.type != TABLE) table = table.parent;
3345             if(table)
3346                maxW = block.w - 2* table.cellPadding;
3347             else
3348                maxW = clientSize.w - 10 - sx;
3349          }
3350          else
3351             maxW = clientSize.w - 10 - sx;
3352          
3353          display.FontExtent(textBlock.font.font, " ", 1, null, &th);
3354
3355          while(textPos < textBlock.textLen)
3356          {
3357             int startPos = textPos;
3358             int width = 0;
3359             int x = 0;
3360             bool lineComplete = false;
3361
3362             for(; textPos<textBlock.textLen && !lineComplete;)
3363             {
3364                int w;
3365                int len;
3366                char * nextSpace = strchr(text + textPos, ' ');
3367
3368                if(nextSpace)
3369                   len = (nextSpace - (text + textPos)) + 1;
3370                else
3371                   len = textBlock.textLen - textPos;
3372                
3373                display.FontExtent(textBlock.font.font, text + textPos, len, &w, &th);
3374
3375                if(x + width + w > maxW && x > 0)
3376                {
3377                   lineComplete = true;
3378                   break;
3379                }
3380                textPos += len;
3381
3382                width += w;
3383
3384                if(nextSpace)
3385                {
3386                   x += width;
3387                   width = 0;
3388                }
3389             }
3390             if(curPosition < textPos || textPos == textBlock.textLen)
3391             {
3392                int len = curPosition - startPos;
3393                display.FontExtent(textBlock.font.font, text + startPos, len, &tw, null);
3394                sx += tw;
3395                break;            
3396             }
3397             sy += th;
3398             sx = textBlock.startX;
3399          }
3400          if(setCaretX)
3401             caretX = sx;
3402          caretY = sy;
3403          SetCaret(sx, sy, th);
3404          {
3405             Point scrollPos = scroll;
3406             bool doScroll = false;
3407             if(sy - scroll.y + th > clientSize.h)
3408             {
3409                scrollPos.y = sy + th - clientSize.h;
3410                doScroll = true;
3411             }
3412             else if(sy - scroll.y < 0)
3413             {
3414                scrollPos.y = sy;
3415                doScroll = true;            
3416             }
3417             if(sx - scroll.x + 10 > clientSize.w)
3418             {
3419                scrollPos.x = sx + 10 - clientSize.w;
3420                doScroll = true;
3421             }
3422             else if(sx - scroll.x < 10)
3423             {
3424                scrollPos.x = sx - 10;
3425                doScroll = true;            
3426             }
3427             if(doScroll)
3428                scroll = scrollPos;
3429          }
3430       }
3431       else
3432          SetCaret(0,0,0);
3433    }
3434
3435    // Returns a character offset into the TextBlock from a window coordinate
3436    int TextPosFromPoint(int px, int py, Block * block)
3437    {
3438       Block parentBlock = this.textBlock.parent;
3439       Block textBlock;
3440       int result = 0;
3441       *block = this.textBlock;
3442
3443       px += scroll.x;
3444       py += scroll.y;
3445
3446       for(textBlock = parentBlock.subBlocks.first; textBlock; textBlock = textBlock.next)
3447       {
3448          int sx = textBlock.startX, sy = textBlock.startY;
3449          int th = 0;
3450          int textPos = 0;
3451          char * text = textBlock.text;
3452          int maxW;
3453          Block b = textBlock;
3454          int space;
3455
3456          if(textBlock.type != TEXT) continue;
3457
3458          while(b && b.type != TD) b = b.parent;
3459          if(b)
3460          {
3461             Block table = b;
3462             while(table && table.type != TABLE) table = table.parent;
3463             if(table)
3464                maxW = b.w - 2* table.cellPadding;
3465             else
3466                maxW = clientSize.w - 10 - sx;
3467          }
3468          else
3469             maxW = clientSize.w - 10 - sx;
3470          
3471          display.FontExtent(textBlock.font.font, " ", 1, &space, &th);
3472          //space = space/2+2;
3473          space = 2;
3474
3475          while(textPos < textBlock.textLen)
3476          {
3477             int startPos = textPos;
3478             int width = 0;
3479             int x = 0;
3480             bool lineComplete = false;
3481
3482             for(; textPos<textBlock.textLen && !lineComplete;)
3483             {
3484                int w;
3485                int len;
3486                char * nextSpace = strchr(text + textPos, ' ');
3487
3488                if(nextSpace)
3489                   len = (nextSpace - (text + textPos)) + 1;
3490                else
3491                   len = textBlock.textLen - textPos;
3492                
3493                display.FontExtent(textBlock.font.font, text + textPos, len, &w, &th);
3494
3495                sx = x + textBlock.startX;
3496                if(/*py >= sy && */py < sy + th && /*px >= sx-space && */px < sx + w-space)
3497                {
3498                   int c, numBytes;
3499                   char ch;
3500                   *block = textBlock;
3501                   for(c = textPos; (ch = text[c]); c += numBytes)
3502                   {
3503                      numBytes = UTF8_NUM_BYTES(ch);
3504                      display.FontExtent(textBlock.font.font, text + c, numBytes, &w, &th);
3505                      if(/*py >= sy && */py < sy + th && /*px >= sx-w/2-space && */px < sx + w -w/2-space)
3506                         break;
3507                      sx += w;
3508                   }
3509                   return c;
3510                }
3511
3512                if(x + width + w > maxW && x > 0)
3513                {
3514                   lineComplete = true;
3515                   break;
3516                }
3517                textPos += len;
3518
3519                width += w;
3520
3521                if(nextSpace)
3522                {
3523                   x += width;
3524                   width = 0;
3525                }
3526             }
3527             if(/*py >= sy && */py < sy + th)
3528             {
3529                *block = textBlock;
3530                return textBlock.textLen;
3531             }
3532             sy += th;
3533          }
3534          *block = textBlock;
3535          result = textBlock.textLen;
3536       }
3537       return result;
3538    }
3539 }
3540
3541 Application componentsApp;
3542
3543 class Documentor : GuiApplication
3544 {
3545    bool Init()
3546    {
3547       Platform os = GetRuntimePlatform();
3548       componentsApp = __ecere_COM_Initialize(false, 1, null);
3549       SetPrivateModule(componentsApp);
3550       SetGlobalContext(globalContext);
3551       SetExcludedSymbols(&excludedSymbols);
3552       SetDefines(&::defines);
3553       SetImports(&imports);
3554       
3555       SetGlobalData(globalData);
3556
3557       settingsContainer.dataOwner = &settings;
3558       settingsContainer.Load();
3559       if(!settings.docDir || !settings.docDir[0] )
3560       {
3561          if(os == win32) // if Windows OS then
3562          {
3563             char programFilesDir[MAX_LOCATION];
3564             char appData[MAX_LOCATION]; 
3565             char homeDrive[MAX_LOCATION];
3566             char winDir[MAX_LOCATION];
3567             GetEnvironment("APPDATA", appData, sizeof(appData));
3568             GetEnvironment("HOMEDRIVE", homeDrive, sizeof(homeDrive));
3569             GetEnvironment("windir", winDir, sizeof(winDir));
3570             if(GetEnvironment("ProgramFiles", programFilesDir, MAX_LOCATION))
3571             {
3572                PathCat(programFilesDir, "ECERE SDK\\doc");
3573                settings.docDir = programFilesDir;
3574             }
3575             else if(homeDrive && homeDrive[0])
3576             {
3577                PathCat(homeDrive, "ECERE SDK\\doc");
3578                settings.docDir = homeDrive;
3579             }
3580             else if(winDir && winDir[0])
3581             {
3582                PathCat(winDir, "..\\ECERE SDK\\doc");
3583                settings.docDir = winDir;
3584             }
3585             else
3586                settings.docDir = "C:\\ECERE SDK\\doc";
3587          }
3588          else // if Os is Linux, or Mac OSX or something else
3589             settings.docDir = "/usr/share/ecere/doc/";
3590          settingsContainer.Save();
3591       }
3592
3593       //if(argc > 1)
3594       {
3595       #if 0
3596          Module module = eModule_Load(componentsApp, "ecere" /*argv[1]*/, privateAccess);
3597          DataRow row;
3598          AddComponents(module, true);
3599          mainForm.browser.currentRow = row = mainForm.browser.FindSubRow((int)module);
3600          // mainForm.browser.currentRow = row = mainForm.browser.FindSubRow((int)eSystem_FindClass(componentsApp, "Window"));
3601          while((row = row.parent))
3602             row.collapsed = false;
3603       #endif
3604       }
3605       return true;
3606    }
3607
3608    void Terminate()
3609    {
3610       FreeContext(globalContext);
3611       FreeExcludedSymbols(excludedSymbols);
3612       ::defines.Free(FreeModuleDefine);
3613       imports.Free(FreeModuleImport);
3614
3615       FreeGlobalData(globalData);
3616       FreeTypeData(componentsApp);
3617       FreeIncludeFiles();
3618       delete componentsApp;
3619    }
3620 }
3621
3622 MainForm mainForm { };