ide/CodeEditor: Fixed bad memory read on re-parsing
[sdk] / ide / src / designer / CodeEditor.ec
1 import "ide"
2
3 // *** Color Schemes ***
4
5 // *** The Old Color Scheme that was causing me auras and ophtalmic migraines -- Uncomment at your own risk! ***
6 /*
7 FontResource panelFont { $"Courier New", 10 };
8 FontResource codeFont { $"Courier New", 10 };
9 Color selectionColor = Color { 10, 36, 106 };
10 Color selectionText = white;
11 Color viewsBackground = white;
12 Color viewsText = black;
13 Color outputBackground = white;
14 Color outputText = black;
15 Color projectViewBackground = white;
16 Color projectViewText = black;
17 Color codeEditorBG = white;
18 Color codeEditorFG = black;
19 Color marginColor = Color {230, 230, 230};
20 Color selectedMarginColor = Color {200, 200, 200};
21 Color lineNumbersColor = Color {60, 60, 60};
22 SyntaxColorScheme colorScheme
23 {
24    keywordColors = [ blue, blue ];
25    commentColor = dimGray;
26    charLiteralColor = crimson;
27    stringLiteralColor = crimson;
28    preprocessorColor = green;
29    numberColor = teal;
30 };
31 */
32
33 // The new nice dark scheme -- so peaceful on my brain
34
35 FontResource panelFont { $"Courier New", 10 };
36 FontResource codeFont { $"Courier New", 10 };
37 /*
38 FontResource panelFont { $"Consolas", 12 };
39 FontResource codeFont { $"Consolas", 12 };
40 */
41 Color selectionColor = lightYellow;
42 Color selectionText = Color { 30, 40, 50 };
43 Color viewsBackground = Color { 30, 40, 50 };
44 Color viewsText = lightGray;
45 Color outputBackground = black;
46 Color outputText = lime;
47 Color projectViewBackground = Color { 30, 40, 50 };
48 Color projectViewText = lightGray;
49 Color codeEditorBG = black;
50 Color codeEditorFG = ivory;
51 Color marginColor = Color {24, 24, 24};
52 Color selectedMarginColor = Color {64, 64, 64};
53 Color lineNumbersColor = Color {160, 160, 160};
54 SyntaxColorScheme colorScheme
55 {
56    keywordColors = [ skyBlue, skyBlue ];
57    commentColor = Color { 125, 125, 125 };
58    charLiteralColor = Color { 245, 50, 245 };
59    stringLiteralColor = Color { 245, 50, 245 };
60    preprocessorColor = { 120, 220, 140 };
61    numberColor = Color {   0, 192, 192 };
62 };
63
64 // *********************
65
66 import "findCtx"
67 import "findExp"
68 import "findParams"
69
70 // UNTIL IMPLEMENTED IN GRAMMAR
71 #define ACCESS_CLASSDATA(_class, baseClass) \
72    (_class ? ((void *)(((char *)_class.data) + baseClass.offsetClass)) : null)
73
74 #ifdef ECERE_STATIC
75 extern int __attribute__((__stdcall__)) __ecereDll_Load_ecere(struct __ecereNameSpace__ecere__com__Instance * module);
76 extern int __attribute__((__stdcall__)) __ecereDll_Unload_ecere(struct __ecereNameSpace__ecere__com__Instance * module);
77 #endif
78
79 static Array<FileFilter> fileFilters
80 { [
81    { $"C/C++/eC Files (*.ec, *.eh, *.c, *.cpp, *.cc, *.cxx, *.h, *.hpp, *.hh, *.hxx)", "ec, eh, c, cpp, cc, cxx, h, hpp, hh, hxx" },
82    { $"Header Files for C/C++ (*.eh, *.h, *.hpp, *.hh, *.hxx)", "eh, h, hpp, hh, hxx" },
83    { $"C/C++/eC Source Files (*.ec, *.c, *.cpp, *.cc, *.cxx)", "ec, c, cpp, cc, cxx" },
84    { $"Text files (*.txt)", "txt" },
85    { $"All files", null }
86 ] };
87
88 static Array<FileType> fileTypes
89 { [
90    { $"eC Source Code", "ec", whenNoneGiven },
91    { $"Text Files", "txt", never }
92 ] };
93
94 static char * iconNames[] =
95 {
96    "<:ecere>constructs/class.png",
97    "<:ecere>constructs/data.png",
98    "<:ecere>constructs/method.png",
99    "<:ecere>constructs/event.png",
100    "<:ecere>constructs/property.png",
101    "<:ecere>constructs/namespace.png",
102    "<:ecere>constructs/dataType.png",
103    "<:ecere>constructs/enumValue.png",
104    "<:ecere>constructs/dataPrivate.png",
105    "<:ecere>constructs/methodPrivate.png",
106    "<:ecere>constructs/propertyPrivate.png"
107 };
108
109 enum SheetType { methods, properties };
110
111 extern int __ecereVMethodID_class_OnEdit;
112 extern int __ecereVMethodID_class_OnDisplay;
113 extern int __ecereVMethodID_class_OnGetString;
114 extern int __ecereVMethodID_class_OnFree;
115 extern int __ecereVMethodID_class_OnCompare;
116 extern int __ecereVMethodID_class_OnCopy;
117 extern int __ecereVMethodID_class_OnSaveEdit;
118 extern int __ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad;
119
120 class RTCMenuBits
121 {
122 public:
123    bool ignoreBreakpoints:1;
124    bool atSameLevel:1;
125    bool oldImplementation:1;
126 };
127
128 class EditFileDialog : FileDialog
129 {
130    bool OnCreate()
131    {
132       if(!ide.projectView && ideSettings.ideFileDialogLocation)
133          currentDirectory = ideSettings.ideFileDialogLocation;
134       return FileDialog::OnCreate();
135    }
136 }
137
138 EditFileDialog codeEditorFileDialog
139 {
140    type = multiOpen, text = $"Open",
141    types = fileTypes.array, sizeTypes = fileTypes.count * sizeof(FileType);
142    filters = fileFilters.array, sizeFilters = fileFilters.count * sizeof(FileFilter)
143 };
144
145 EditFileDialog codeEditorFormFileDialog
146 {
147    type = open, text = $"Open Project",
148    types = fileTypes.array, sizeTypes = fileTypes.count * sizeof(FileType),
149    filters = fileFilters.array, sizeFilters = fileFilters.count * sizeof(FileFilter)
150 };
151
152 define OpenBracket = '{';
153 define CloseBracket = '}';
154
155 enum MethodAction
156 {
157    actionAddMethod = 1,
158    actionDeleteMethod = 2,
159    actionDetachMethod = 3,
160    actionAttachMethod = 4,
161    actionReattachMethod = 5
162 };
163
164 //extern StatusField pos, ovr, caps, num;
165 //extern Class thisClass;
166
167 File output;
168
169 File fileInput;
170
171 bool parseError = false;
172
173 int returnCode;
174
175 Class insideClass;
176 Expression ctxInsideExp;
177 Expression paramsInsideExp;
178 ClassFunction insideFunction;
179 ClassDef insideDef;
180 Type instanceType;
181 char * instanceName;
182 Type functionType;
183 int paramsID;
184 bool insideInstance;
185
186 /****************************************************************************
187                               GENERATING
188 ****************************************************************************/
189
190 static void OutputString(File f, char * string)
191 {
192    int c;
193    for(c = 0; string[c]; c++)
194    {
195       if(string[c] == '\"')
196          f.Puts("\\\"");
197       else if(string[c] == '\\')
198          f.Puts("\\\\");
199       else if(string[c] == '\n')
200       {
201          f.Puts("\\n");
202          if(c > 30)
203             f.Puts("\"\n   \"");
204       }
205       else
206          f.Putc(string[c]);
207    }
208 }
209
210 void OutputType(File f, Type type, bool outputName)
211 {
212    if(type)
213    {
214       switch(type.kind)
215       {
216          case voidType:
217             f.Printf("void");
218             break;
219          case charType:
220             if(!type.isSigned) f.Printf("unsigned ");
221             f.Printf("char");
222             break;
223          case shortType:
224             if(!type.isSigned) f.Printf("unsigned ");
225             f.Printf("short");
226             break;
227          case intType:
228             if(!type.isSigned) f.Printf("unsigned ");
229             f.Printf("int");
230             break;
231          case int64Type:
232             if(!type.isSigned) f.Printf("unsigned ");
233             f.Printf("__int64");
234             break;
235          case longType:
236             if(!type.isSigned) f.Printf("unsigned ");
237             f.Printf("long");
238             break;
239          case floatType:
240             f.Printf("float");
241             break;
242          case doubleType:
243             f.Printf("double");
244             break;
245          case classType:
246          {
247             if(type._class && !strcmp(type._class.string, "class"))
248             {
249                switch(type.classObjectType)
250                {
251                   case anyObject:
252                      f.Printf("any_object");
253                      break;
254                   default:
255                      f.Printf("typed_object");
256                      break;
257                }
258                if(type.byReference)
259                   f.Printf(" &");
260             }
261             else
262                // ADD CODE TO DECIDE WHETHER TO OUTPUT FULLY QUAlIFIED OR NOT:
263                f.Printf(type._class.shortName ? type._class.shortName : type._class.string);
264             break;
265          }
266          case structType:
267             break;
268          case unionType:
269             break;
270          case functionType:
271             break;
272          case arrayType:
273             OutputType(f, type.type, false);
274             break;
275          case pointerType:
276             OutputType(f, type.type, false);
277             f.Printf(" *");
278             break;
279          case ellipsisType:
280             f.Printf("...");
281             break;
282          case enumType:
283             break;
284          case methodType:
285             break;
286       }
287       if(outputName)
288       {
289          if(type.name)
290          {
291             f.Printf(" ");
292             f.Printf(type.name);
293          }
294       }
295       if(type.kind == arrayType)
296       {
297          f.Printf("[");
298          f.Printf("%d", type.arraySize);
299          f.Printf("]");
300       }
301    }
302 }
303
304 void DeleteJunkBefore(EditBoxStream f, int pos, int * position)
305 {
306    char ch;
307    int before = 0;
308
309    if(position)
310       f.Seek(pos - *position, current);
311
312    // Try to delete spaces and \n before...
313    f.Seek(-1, current);
314    for(;f.Getc(&ch);)
315    {
316       if(!isspace(ch))
317          break;
318       /*else if(ch == '\n')
319       {
320          // Look for // comments on the line before
321          EditBox editBox = f.editBox;
322          EditLine line = editBox.line;
323          char * text;
324          char last = 0;
325          int c;
326          bool quoted = false;
327          line = line.prev;
328          text = line.text;
329          for(c = 0; text[c]; c++)
330          {
331             if(text[c] == '"')
332             {
333                quoted ^= true;
334                last = 0;
335             }
336             else if(!quoted)
337             {
338                if(text[c] == '/' && last == '/')
339                   break;
340                last = text[c];
341             }
342          }
343          if(text[c])
344             break;
345       }*/
346       before++;
347       f.Seek(-2, current);
348    }
349
350    f.DeleteBytes(before);
351    if(position)
352       *position = pos;
353 }
354
355 void GetLocText(EditBox editBox, File f, int position, Location loc, char ** text, int * size, int pad, int linePad)
356 {
357    EditLine l1, l2;
358    int y1,x1, y2,x2;
359
360    editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
361
362    // Cut & Paste function
363
364    {
365       EditLine l1, l2;
366       int y1,x1,y2,x2;
367
368       f.Seek(loc.start.pos - position, current);
369       l1 = editBox.line;
370       x1 = editBox.charPos;
371       y1 = editBox.lineNumber;
372       f.Seek(loc.end.pos - loc.start.pos, current);
373       l2 = editBox.line;
374       x2 = editBox.charPos;
375       y2 = editBox.lineNumber;
376       editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
377
378       *size = editBox.SelSize();
379       *text = new char[*size+1 + (y2-y1+1) * linePad + pad]; // Add pad for tabs and new name
380       editBox.GetSel(*text, false);
381    }
382
383    editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
384    f.Printf(""); // Make the stream point to where the editbox is
385 }
386
387 void Code_FixProperty(Property prop, Instance object)
388 {
389    Designer::FixProperty(prop, object);
390 }
391
392 bool Code_IsPropertyModified(Instance test, ObjectInfo selected, Property prop)
393 {
394    bool result = false;
395    if(prop.dataTypeString && (!prop.IsSet || prop.IsSet(selected.instance)))
396    {
397       Class dataType = prop.dataTypeClass;
398
399       if(!dataType)
400          dataType = prop.dataTypeClass = eSystem_FindClass(test._class.module, prop.dataTypeString);
401
402       if(dataType && dataType._vTbl && dataType.type == structClass)
403       {
404          void * dataForm = new0 byte[dataType.structSize];
405          void * dataTest = new0 byte[dataType.structSize];
406
407          ((void (*)(void *, void *))(void *)prop.Get)(selected.instance, dataForm);
408          ((void (*)(void *, void *))(void *)prop.Get)(test, dataTest);
409
410          if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
411          {
412             ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
413             result = true;
414          }
415          delete dataForm;
416          delete dataTest;
417       }
418       else if(dataType && dataType._vTbl && (dataType.type == normalClass || dataType.type == noHeadClass))
419       {
420          void * dataForm, * dataTest;
421          bool isEditBoxContents = false;
422          bool freeDataForm = false, freeDataTest = false;
423
424          // Because contents property is broken for mutiline EditBox at the moment
425          if(!strcmp(prop.name, "contents") && !strcmp(prop._class.name, "EditBox"))
426             isEditBoxContents = true;
427
428          if(isEditBoxContents && ((EditBox)selected.instance).multiLine)
429          {
430             dataForm = ((EditBox)selected.instance).multiLineContents;
431             freeDataForm = true;
432          }
433          else
434             dataForm = ((void *(*)(void *))(void *)prop.Get)(selected.instance);
435          if(isEditBoxContents && ((EditBox)test).multiLine)
436          {
437             dataTest = ((EditBox)test).multiLineContents;
438             freeDataTest = true;
439          }
440          else
441             dataTest = ((void *(*)(void *))(void *)prop.Get)(test);
442
443          if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
444          {
445             ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
446             result = true;
447          }
448
449          if(freeDataForm) delete dataForm;
450          if(freeDataTest) delete dataTest;
451       }
452       else if(dataType && dataType._vTbl)
453       {
454          DataValue dataForm, dataTest;
455
456          GetProperty(prop, selected.instance, &dataForm);
457          GetProperty(prop, test, &dataTest);
458
459          if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, &dataForm, &dataTest))
460          {
461             SetProperty(prop, test, dataForm);
462
463             // In case setting on test unset on real instance (e.g. isDefault)
464             if(strcmp(prop.name, "name"))
465             {
466                GetProperty(prop, selected.instance, &dataTest);
467                if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, &dataForm, &dataTest))
468                   SetProperty(prop, selected.instance, dataForm);
469             }
470             result = true;
471          }
472       }
473    }
474    return result;
475 }
476
477 bool Code_IsPropertyDisabled(ObjectInfo selected, char * name)
478 {
479    bool disabled = false;
480    if(selected.oClass == selected)
481    {
482       ClassDef def;
483       if(selected.classDefinition)
484       {
485          for(def = selected.classDefinition.definitions->first; def; def = def.next)
486          {
487             if(def.type == defaultPropertiesClassDef)
488             {
489                MemberInit prop;
490                for(prop = def.defProperties->first; prop; prop = prop.next)
491                {
492                   if(prop.identifiers && prop.identifiers->first)
493                   {
494                      Identifier id = prop.identifiers->first;
495                      if(prop.variable && !strcmp(id.string, name))
496                      {
497                         disabled = true;
498                         break;
499                      }
500                   }
501                }
502             }
503             if(disabled) break;
504          }
505       }
506    }
507    else if(selected.instCode)
508    {
509       MembersInit members;
510       if(selected.instCode.members)
511       {
512          for(members = selected.instCode.members->first; members; members = members.next)
513          {
514             if(members.type == dataMembersInit && members.dataMembers)
515             {
516                MemberInit prop;
517                for(prop = members.dataMembers->first; prop; prop = prop.next)
518                {
519                   if(prop.identifiers && prop.identifiers->first)
520                   {
521                      Identifier id = prop.identifiers->first;
522                      if(prop.variable && !strcmp(id.string, name))
523                      {
524                         disabled = true;
525                         break;
526                      }
527                   }
528                }
529             }
530             if(disabled) break;
531          }
532       }
533    }
534    return disabled;
535 }
536
537 static bool CheckCompatibleMethod(Method method, Type type, Class regClass, bool isForm, Symbol selectedClass)
538 {
539    bool result = false;
540    bool reset = false;
541    if(!method.dataType)
542       method.dataType = ProcessTypeString(method.dataTypeString, false);
543    if(!method.dataType.thisClass && !isForm)
544    {
545       reset = true;
546       method.dataType.thisClass = selectedClass;
547    }
548    //result = MatchTypes(method.dataType, type, null, regClass, regClass, false);
549    result = MatchTypes(type, method.dataType, null, regClass, regClass, false, true, true, false);
550    if(reset)
551       method.dataType.thisClass = null;
552    return result;
553 }
554
555 bool Code_IsFunctionEmpty(ClassFunction function, Method method, ObjectInfo object)
556 {
557    bool confirmation = true;
558    Statement body = function.body;
559    // Check if it contains any code
560    if((!body.compound.declarations || !body.compound.declarations->count) && (!body.compound.statements || body.compound.statements->count <= 1))
561    {
562       Class moduleClass = eSystem_FindClass(object.instance._class.module, "Module");
563       Statement stmt = body.compound.statements ? body.compound.statements->first : null;
564       Type dataType = method.dataType;
565       Type returnType = dataType.returnType;
566       Expression exp = null;
567
568       if(!method.dataType)
569          method.dataType = ProcessTypeString(method.dataTypeString, false);
570
571       confirmation = false;
572
573       // Check if default function should be calling base class:
574       if(object.instance._class._vTbl[method.vid] == moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad]) // Temp Check for DefaultFunction
575       {
576          if(returnType.kind != voidType)
577          {
578             if(!stmt || stmt.type != returnStmt || !stmt.expressions || stmt.expressions->count != 1)
579                confirmation = true;
580             else
581             {
582                exp = stmt.expressions->first;
583                if(returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
584                {
585                   if( (exp.type != identifierExp || strcmp(exp.identifier.string, "true")) &&
586                       (exp.type != constantExp || strcmp(exp.constant, "1")))
587                      confirmation = true;
588                }
589                else
590                {
591                   if(exp.type != constantExp || strcmp(exp.constant, "0"))
592                      confirmation = true;
593                }
594             }
595          }
596          else
597          {
598             if(stmt)
599                confirmation = true;
600          }
601       }
602       else
603       {
604          if(stmt)
605          {
606             if(returnType.kind != voidType)
607             {
608                if(stmt.type == returnStmt && stmt.expressions && stmt.expressions->count == 1)
609                   exp = stmt.expressions->first;
610             }
611             else if(stmt.type == expressionStmt && stmt.expressions && stmt.expressions->count == 1)
612                exp = stmt.expressions->first;
613          }
614
615          if(!exp || exp.type != callExp || exp.call.exp.type != identifierExp)
616             confirmation = true;
617          else
618          {
619             Identifier id = exp.call.exp.identifier;
620             Class base = object.instance._class;
621             if(!id._class || (id._class.name && !strcmp(id._class.name, base.name)) || strcmp(id.string, method.name))
622                confirmation = true;
623             else
624             {
625                Expression arg = exp.call.arguments ? exp.call.arguments->first : null;
626                if(!arg || arg.type != identifierExp || strcmp("this", arg.identifier.string))
627                   confirmation = true;
628                else
629                {
630                   Type param;
631                   arg = arg.next;
632                   for(param = dataType.params.first; param; param = param.next)
633                   {
634                      if(!arg || arg.type != identifierExp || strcmp(param.name, arg.identifier.string))
635                      {
636                         confirmation = true;
637                         break;
638                      }
639                      arg = arg ?arg.next : null;
640                   }
641                }
642             }
643          }
644       }
645    }
646    return !confirmation;
647 }
648
649 class CodeEditor : Window
650 {
651    background = marginColor;
652    borderStyle = sizableDeep;
653    hasMaximize = true;
654    hasMinimize = true;
655    hasClose = true;
656    isDocument = true;
657    isActiveClient = true;
658    anchor = Anchor { left = 300, right = 150, top = 0, bottom = 0 };
659    menu = Menu { };
660
661    // eWindow_SetX(A_CASCADE); eWindow_SetY(A_CASCADE);
662    // eWindow_SetWidth(A_RELATIVE|80); eWindow_SetHeight(A_RELATIVE|80);
663
664    SheetType sheetSelected;
665    ToolBox toolBox;
666    Sheet sheet;
667
668    OldList * ast;
669    Context globalContext { };
670    OldList excludedSymbols { offset = (uint)&((Symbol)0).left };
671
672    OldList defines;
673    OldList imports;
674
675    OldList classes;
676    bool codeModified;
677    bool formModified;
678
679    ObjectInfo selected;
680    ObjectInfo oClass;
681
682    // Methods Editing:
683    MethodAction methodAction;
684    Method method;
685    ClassFunction function;
686    bool moveAttached;
687    char methodName[1024];
688
689    bool updatingCode;
690    bool loadingFile;
691    bool fixCaret;
692    bool membersListShown;
693    bool membersAbove;
694    Location membersLoc;
695    EditLine membersLine;
696
697    Type functionType, instanceType;
698    int paramsID;
699    bool paramsShown;
700    bool paramsAbove;
701    Point paramsPosition;
702    Expression functionExp;
703    bool expectingMove;
704
705    BitmapResource icons[CodeObjectType];
706
707    FontResource boldFont { $"Tahoma", 8.25f, bold = true, window = this };
708    FontResource normalFont { $"Tahoma", 8.25f, window = this };
709
710    Module privateModule;
711    NameSpace globalData;
712    bool skipModified;
713    bool inUseDebug;
714    OpenedFileInfo openedFileInfo;
715
716    FontResource font { codeFont.faceName, codeFont.size };
717    saveDialog = codeEditorFileDialog;
718
719    Designer designer { codeEditor = this, visible = false, saveDialog = codeEditorFormFileDialog };
720
721    bool noParsing;
722    int maxLineNumberLength;
723
724    property bool parsing { get { return editBox.syntaxHighlighting && !noParsing && !ide.noParsing; } };
725
726    void ProcessCaretMove(EditBox editBox, int line, int charPos)
727    {
728       char temp[512];
729       ObjectInfo classItem;
730
731       // OnActivateClient is called after OnActivate
732       if(!updatingCode)
733       {
734          sprintf(temp, $"Ln %d, Col %d", line, editBox.column + 1);
735          ide.pos.text = temp;
736       }
737       if(sheet.codeEditor != this) return;
738
739       if(!updatingCode)
740       {
741          for(classItem = classes.first; classItem; classItem = classItem.next)
742          {
743             ClassDefinition classDef = classItem.classDefinition;
744             if(classDef && classDef.loc.Inside(line, charPos))
745                break;
746          }
747
748          if(classItem)
749          {
750             ObjectInfo object;
751             for(object = classItem.instances.first; object; object = object.next)
752             {
753                if(object.instCode)
754                {
755                   if(object.instCode.loc.Inside(line, charPos))
756                      break;
757                }
758             }
759             if(object)
760                sheet.SelectObject(object);
761             else
762                sheet.SelectObject(classItem);
763             Update(null);
764          }
765          //else
766          {
767             //sheet.SelectObject(null);
768             //Update(null);
769          }
770
771          sprintf(temp, $"Ln %d, Col %d", line, editBox.column + 1);
772          ide.pos.text = temp;
773
774          if(expectingMove)
775             expectingMove = false;
776          else
777          {
778             if(membersListShown)
779             {
780                bool hide = false;
781                if(line-1 != membersLoc.start.line)
782                   hide = true;
783                else
784                {
785                   char * buffer = membersLine.text;
786                   int c;
787
788                   if(charPos - 1 < membersLoc.start.charPos)
789                      hide = true;
790                   else if(charPos - 1 > membersLoc.end.charPos)
791                   {
792                      char * buffer = membersLine.text;
793                      //if(membersList.currentRow)
794                      //   hide = true;
795                      //else
796                      {
797                         for(c = membersLoc.start.charPos; c<=charPos && buffer[c]; c++)
798                            if(buffer[c] != ' ' && buffer[c] != '\t')
799                               break;
800                         if(c < charPos && buffer[c])
801                            hide = true;
802                      }
803                   }
804                }
805                if(hide)
806                {
807                   membersList.Destroy(0);
808                   membersListShown = false;
809                }
810             }
811             {
812                bool back = codeModified;
813                codeModified = false;
814                if(paramsShown)
815                   InvokeParameters(false, false, false);
816                /*if(membersListShown)
817                   InvokeAutoComplete(false, 0, true);*/
818                codeModified = back;
819             }
820          }
821       }
822    }
823
824    watch(modifiedDocument)
825    {
826       ProjectView projectView = ide.projectView;
827       if(projectView)
828       {
829          char buffer[MAX_LOCATION];
830          char * fullPath = GetSlashPathBuffer(buffer, fileName);
831          Array<ProjectNode> nodes = ide.workspace.GetAllProjectNodes(fullPath, false);
832          if(nodes)
833          {
834             for(node : nodes)
835                node.modified = modifiedDocument;
836             projectView.Update(null);
837          }
838          delete nodes;
839       }
840    };
841
842
843    EditBox editBox
844    {
845       textVertScroll = true, multiLine = true, /*lineNumbers = ideSettings.showLineNumbers,*/
846       freeCaret = ideSettings.useFreeCaret, caretFollowsScrolling = ideSettings.caretFollowsScrolling,
847       tabKey = true, smartHome = true;
848       tabSelection = true, /*maxLineSize = 65536, */parent = this, hasHorzScroll = true, hasVertScroll = true;
849       selectionColor = selectionColor, selectionText = selectionText,
850       background = codeEditorBG, foreground = codeEditorFG, syntaxColorScheme = colorScheme,
851       font = font, borderStyle = none;
852       anchor = Anchor { left = 0, right = 0, top = 0, bottom = 0 };
853
854       bool OnMouseOver(int x, int y, Modifiers mods)
855       {
856          CodeEditor editor = (CodeEditor)master;
857          if(editor.designer && editor.designer.isDragging && !mods.isSideEffect)
858             Activate();
859          return true;
860       }
861
862       void NotifyCaretMove(EditBox editBox, int line, int charPos)
863       {
864          // Update Line Numbers
865          int spaceH;
866          int oldLine = lastLine;
867          display.FontExtent(font.font, " ", 1, null, &spaceH);
868          {
869             Box box { 0, (Min(oldLine,oldLine)-1) * spaceH - editBox.scroll.y, editBox.anchor.left.distance, (Max(oldLine, oldLine))*spaceH-1 - editBox.scroll.y };
870             Update(box);
871          }
872          {
873             Box box { 0, (Min(line,line)-1) * spaceH - editBox.scroll.y, editBox.anchor.left.distance, (Max(line, line))*spaceH-1 - editBox.scroll.y };
874             Update(box);
875          }
876          lastLine = line;
877
878          if(ide.activeClient == this)
879             ProcessCaretMove(editBox, line, charPos);
880          if(openedFileInfo)
881             openedFileInfo.CaretMove(line, charPos);
882       }
883
884       void NotifyOvrToggle(EditBox editBox, bool overwrite)
885       {
886          ide.UpdateStateLight(ide.ovr, overwrite);
887       }
888
889       void NotifyUpdate(EditBox editBox)
890       {
891          if(designer)
892          {
893             if(!skipModified)
894             {
895                codeModified = true;
896                designer.modifiedDocument = true;
897             }
898          }
899          modifiedDocument = true;
900       }
901
902       bool NotifyUnsetModified(EditBox editBox)
903       {
904          modifiedDocument = false;
905          return true;
906       }
907
908       bool NotifyCharsAdded(EditBox editBox, BufferLocation before, BufferLocation after, bool pasteOperation)
909       {
910          if(!loadingFile && after.y != before.y)
911          {
912             ProjectView projectView = ide.projectView;
913             if(projectView && fileName)
914             {
915                int c;
916                // HOW WE MIGHT WANT TO DO IT:
917                char * text = before.line.text;
918                for(c = Min(before.line.count, before.x-1); c>= 0; c--)
919                   if(!isspace(text[c]))
920                      break;
921                ide.debugger.MoveIcons(fileName, before.y + (((!pasteOperation && c > -1) || !after.line.count) ? 1 : 0), after.y - before.y, false);
922
923                // HOW VISUAL STUDIO DOES IT:
924                /*
925                char * text = after.line.text;
926                for(c = after.line.count-1; c>= 0; c--)
927                   if(!isspace(text[c]))
928                      break;
929                ide.debugger.MoveIcons(fileName, before.y + ((c < 0) ? 1 : 0), after.y - before.y, false);
930                */
931             }
932             Update({ 0, 0, editBox.position.x, clientSize.h });
933             UpdateMarginSize();
934          }
935
936          if(!updatingCode)
937          {
938             ObjectInfo oClass;
939
940             for(oClass = classes.first; oClass; oClass = oClass.next)
941             {
942                ObjectInfo object;
943                for(object = oClass.instances.first; object; object = object.next)
944                {
945                   if(object.instCode)
946                   {
947                      object.instCode.loc.start.AdjustAdd(before, after);
948                      object.instCode.loc.end.AdjustAdd(before, after);
949                   }
950                }
951                if(oClass.instCode)
952                {
953                   oClass.classDefinition.loc.start.AdjustAdd(before, after);
954                   oClass.classDefinition.loc.end.AdjustAdd(before, after);
955                }
956             }
957
958             if(!pasteOperation)
959             {
960                expectingMove = true;
961                if(membersListShown)
962                {
963                   bool hide = false;
964                   if(before.y != after.y)
965                      hide = true;
966                   else
967                   {
968                      char * buffer = membersLine.text;
969                      int c;
970                      bool firstChar = true;
971                      bool addedChar = false;
972                      char string[1024];
973                      int len = 0;
974
975                      DataRow row;
976
977                      membersLoc.end.charPos += after.x - Max(membersLoc.start.charPos, before.x);
978
979                      for(c = membersLoc.start.charPos; c<membersLoc.end.charPos && len < sizeof(string)-1; c++)
980                      {
981                         bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
982                         if(!isalnum(buffer[c]) && buffer[c] != '_' && (!isSpace || !firstChar)) //|| membersList.currentRow
983                         {
984                            hide = true;
985                            break;
986                         }
987                         if(!isSpace)
988                            firstChar = false;
989                         else if(firstChar)
990                         {
991                            membersLoc.start.charPos++;
992                            addedChar = true;
993                         }
994
995                         if(!firstChar)
996                            string[len++] = buffer[c];
997                      }
998                      if(firstChar)
999                      {
1000                         row = membersList.currentRow;
1001                         if(row && row.selected)
1002                         {
1003                            hide = true;
1004                            if(addedChar)
1005                               membersLoc.start.charPos--;
1006                         }
1007                      }
1008
1009                      string[len] = 0;
1010
1011                      if(!hide)
1012                      {
1013                         row = membersList.FindSubString(string);
1014                         if(row)
1015                            membersList.currentRow = row;
1016                         else
1017                         {
1018                            row = membersList.FindSubStringi(string);
1019                            if(row)
1020                               membersList.currentRow = row;
1021                            membersList.currentRow.selected = false;
1022                         }
1023                         if(row)
1024                            membersList.SetScrollPosition(0, (row.index) * membersList.rowHeight);
1025                      }
1026                      else
1027                      {
1028                         row = membersList.currentRow;
1029                      }
1030
1031                      // Accept current string if hiding typing char
1032                      if(hide && row && row.selected)
1033                      {
1034                         char * string = row.string;
1035                         int len = strlen(string);
1036                         membersLoc.end.charPos -= after.x - before.x;
1037                         editBox.GoToPosition(membersLine, membersLoc.start.line, membersLoc.start.charPos);
1038                         editBox.Delete(membersLine, membersLoc.start.line, membersLoc.start.charPos,
1039                                        membersLine, membersLoc.end.line, membersLoc.end.charPos);
1040                         editBox.PutS(string);
1041                         editBox.GoToPosition(membersLine, membersLoc.start.line, membersLoc.start.charPos + len + 1 /*after.x - before.x*/);
1042
1043                         after.x += membersLoc.start.charPos + len - before.x;
1044                         before.x = membersLoc.start.charPos + len;
1045                      }
1046                   }
1047                   if(hide)
1048                   {
1049                      membersList.Destroy(0);
1050                      membersListShown = false;
1051                   }
1052                }
1053                if(/*after.x - before.x == 1 && */after.y == before.y && !membersListShown)
1054                {
1055                   EditLine line = editBox.line;
1056                   char * text = line.text;
1057                   char ch = text[after.x-1];
1058                   if(ch == '.' || (ch == '>' && after.x-1 > 0 && text[after.x-1-1] == '-') || (ch == ':' && after.x-1 > 0 && text[after.x-1-1] == ':'))
1059                   {
1060
1061                      /*
1062                      // Can we call invoke auto complete here instead?
1063
1064
1065                      int line, charPos;
1066                      Expression exp;
1067                      void * l1, * l2;
1068                      int x1,y1, x2,y2;
1069                      int oldCharPos;
1070                      Point caret;
1071
1072                      // Force caret update already...
1073                      editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
1074                      editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
1075
1076                      editBox.GetCaretPosition(&caret);
1077
1078
1079
1080                      // Go back in the buffer until no space before
1081                      //yydebug = true;
1082                      codeModified = true;
1083                      EnsureUpToDate();
1084                      SetYydebug(false);
1085                      {
1086                         EditBoxStream f { editBox = editBox };
1087                         oldCharPos = x1;
1088                         x1--;
1089                         x2--;
1090                         if(text[after.x-1] == '>')
1091                         {
1092                            x1--;
1093                            x2--;
1094                         }
1095
1096                         editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
1097                         for(;;)
1098                         {
1099                            char ch;
1100                            if(!f.Seek(-1, current))
1101                               break;
1102                            f.Getc(&ch);
1103                            if(!isspace(ch)) break;
1104                            f.Seek(-1, current);
1105                         }
1106                         editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
1107
1108                         line = editBox.lineNumber + 1;
1109                         charPos = editBox.charPos + 1;
1110                         delete f;
1111                      }
1112
1113                      exp = FindExpTree(ast, line, charPos);
1114
1115                      if(exp)
1116                      {
1117                         Type type = exp.expType;
1118
1119                         if(type && text[after.x-1] != '.')
1120                         {
1121                            if(type.kind == TypePointer || type.kind == TypeArray)
1122                               type = type.type;
1123                            else
1124                               type = null;
1125                         }
1126
1127                         membersList.Clear();
1128                         ListMembers(type);
1129
1130                         if(membersList.rowCount)
1131                         {
1132                            membersList.Sort(null, 1);
1133                            membersList.master = this;
1134
1135                            caret.y += editBox.GetCaretSize();
1136                            caret.x -= 20;
1137
1138                            membersList.Create();
1139
1140                            {
1141                               int x = caret.x + editBox.GetAbsX() - app.desktop.GetAbsX() - editBox.GetScrollX();
1142                               int y = caret.y + editBox.GetAbsY() - app.desktop.GetAbsY() - editBox.GetScrollY();
1143                               Window parent = membersList.parent;
1144
1145                               if(!paramsAbove && (paramsShown || y + membersList.GetHeight() > parent.GetClientHeight()))
1146                               {
1147                                  y -= editBox.GetCaretSize() + membersList.GetHeight();
1148                                  membersAbove = true;
1149                               }
1150                               else
1151                                  membersAbove = false;
1152
1153                               membersList.position = { x, y };
1154                            }
1155
1156                            membersLine = l1;
1157                            membersLoc.start.line = line - 1;
1158                            membersLoc.start.charPos = oldCharPos;
1159                            membersLoc.end = membersLoc.start;
1160                            membersListShown = true;
1161                         }
1162                      }
1163
1164                      SetThisClass(null);
1165                      SetCurrentContext(globalContext);
1166                      */
1167                      codeModified = true;
1168                      skipModified = true;
1169                      if(text[after.x-1] == ':')
1170                         InvokeAutoComplete(false, 0, false);
1171                      else if(text[after.x-1] == '.')
1172                         InvokeAutoComplete(false, 1, false);
1173                      else if(text[after.x-1] == '>')
1174                         InvokeAutoComplete(false, 2, false);
1175                      skipModified = false;
1176                   }
1177                   else if(ch == '(' || ch == OpenBracket || ch == ',' || ch == '='  || ch == '?'  || ch == ':')
1178                   {
1179                      codeModified = true;
1180                      skipModified = true;
1181
1182                      if(InvokeAutoComplete(true, 0, false))
1183                      {
1184                         if(ch == '(' || ch == OpenBracket)
1185                            InvokeParameters(true, true, false);
1186                         else
1187                            InvokeParameters(this.functionType ? false : true, false, false);
1188                      }
1189
1190                      // InvokeAutoComplete(true, 0, false);
1191                      skipModified = false;
1192                   }
1193                   else if(ch == ')' || ch == '}' || ch == ';')
1194                   {
1195                      codeModified = true;
1196                      skipModified = true;
1197                      if(paramsShown)
1198                         InvokeParameters(false, true, false);
1199                      skipModified = false;
1200                   }
1201                   else
1202                   {
1203                      bool back = codeModified;
1204                      codeModified = false;
1205                      if(paramsShown)
1206                         InvokeParameters(false, false, true);
1207                      if(membersListShown)
1208                         InvokeAutoComplete(false, 0, true);
1209                      codeModified = back;
1210                   }
1211                }
1212                else
1213                {
1214                   bool back = codeModified;
1215                   codeModified = false;
1216
1217                   if(paramsShown)
1218                      InvokeParameters(false, false, true);
1219                   /*if(membersListShown)
1220                      InvokeAutoComplete(false, 0, true);*/
1221
1222                   codeModified = back;
1223                }
1224             }
1225          }
1226          return true;
1227       }
1228
1229       bool NotifyCharsDeleted(EditBox editBox, BufferLocation before, BufferLocation after, bool pasteOperation)
1230       {
1231          if(!loadingFile && after.y != before.y)
1232          {
1233             ProjectView projectView = ide.projectView;
1234             if(projectView && fileName)
1235                ide.debugger.MoveIcons(fileName, before.y + 1, before.y - after.y, before.x == 0);
1236             Update({ 0, 0, editBox.position.x, clientSize.h });
1237             UpdateMarginSize();
1238          }
1239
1240          if(!updatingCode)
1241          {
1242             ObjectInfo oClass;
1243
1244             for(oClass = classes.first; oClass; oClass = oClass.next)
1245             {
1246                ObjectInfo object;
1247                Location * loc;
1248                for(object = oClass.instances.first; object; object = object.next)
1249                {
1250                   if(object.instCode)
1251                   {
1252                      loc = &object.instCode.loc;
1253
1254                      if((before.y+1 < loc->start.line || (before.y+1 == loc->start.line && before.x+1 <= loc->start.charPos)) &&
1255                         (after.y+1 > loc->end.line    || (after.y+1 == loc->end.line && after.x+1 >= loc->end.charPos)))
1256                      {
1257                         object.instCode = null;
1258                      }
1259                      else
1260                      {
1261                         loc->start.AdjustDelete(before, after);
1262                         loc->end.AdjustDelete(before, after);
1263                      }
1264                   }
1265                }
1266                if(oClass.classDefinition)
1267                {
1268                   loc = &oClass.classDefinition.loc;
1269                   if((before.y+1 < loc->start.line || (before.y+1 == loc->start.line && before.x+1 <= loc->start.charPos)) &&
1270                      (after.y+1 > loc->end.line    || (after.y+1 == loc->end.line && after.x+1 >= loc->end.charPos)))
1271                   {
1272                      oClass.classDefinition = null;
1273                   }
1274                   else
1275                   {
1276                      loc->start.AdjustDelete(before, after);
1277                      loc->end.AdjustDelete(before, after);
1278                   }
1279                }
1280             }
1281
1282             if(membersListShown)
1283             {
1284                bool hide = false;
1285                if(pasteOperation || before.y != after.y)
1286                   hide = true;
1287                else
1288                {
1289                   char * buffer = membersLine.text;
1290                   int c;
1291                   bool firstChar = true;
1292                   char string[1024];
1293                   int len = 0;
1294
1295                   if(before.x >= membersLoc.start.charPos)
1296                   {
1297                      for(c = membersLoc.start.charPos; c<before.x && len < sizeof(string)-1; c++)
1298                      {
1299                         bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
1300                         if(!isalnum(buffer[c]) && buffer[c] != '_' && (!isSpace || !firstChar))
1301                         {
1302                            hide = true;
1303                            break;
1304                         }
1305                         if(!isSpace) firstChar = false;
1306
1307                         if(!firstChar)
1308                            string[len++] = buffer[c];
1309                      }
1310                   }
1311                   else
1312                   {
1313                      // If deleting spaces before...
1314                      for(c = before.x; c<membersLoc.start.charPos; c++)
1315                      {
1316                         bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
1317                         if(!isSpace)
1318                         {
1319                            hide = true;
1320                            break;
1321                         }
1322                      }
1323                      if(!hide)
1324                         membersLoc.start.charPos = before.x;
1325                   }
1326
1327                   if(membersLoc.end.charPos >= after.x)
1328                   {
1329                      for(c = after.x; c<membersLoc.end.charPos && len < sizeof(string)-1; c++)
1330                      {
1331                         bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
1332                         if(!isalnum(buffer[c]) && buffer[c] != '_' && (!isSpace || !firstChar))
1333                         {
1334                            hide = true;
1335                            break;
1336                         }
1337                         if(!isSpace) firstChar = false;
1338
1339                         if(!firstChar)
1340                            string[len++] = buffer[c];
1341                      }
1342                   }
1343                   else
1344                      hide = true;
1345
1346                   string[len] = '\0';
1347
1348                   membersLoc.end.charPos -= after.x - before.x;
1349                   if(!hide)
1350                   {
1351                      DataRow row;
1352                      row = membersList.FindSubString(string);
1353                      if(!row)
1354                      {
1355                         row = membersList.FindSubStringi(string);
1356                         if(row)
1357                            membersList.currentRow = row;
1358                         membersList.currentRow.selected = false;
1359                      }
1360                      else
1361                         membersList.currentRow = row;
1362                      if(row)
1363                         membersList.SetScrollPosition(0, row.index * membersList.rowHeight);
1364                   }
1365                }
1366                if(hide)
1367                {
1368                   membersList.Destroy(0);
1369                   membersListShown = false;
1370                }
1371
1372                /*
1373                if(paramsShown)
1374                {
1375                   InvokeParameters(false, false);
1376                }
1377                */
1378             }
1379          }
1380          return true;
1381       }
1382
1383       bool NotifyDropped(EditBox editBox, int x, int y)
1384       {
1385          char * controlClass = toolBox.controlClass;
1386          if(controlClass && controlClass[0])
1387          {
1388             Instance control;
1389             ObjectInfo object;
1390             ObjectInfo classObject;
1391
1392             editBox.GoToLineNum(y);
1393             x = Min(x, editBox.line.count);
1394             editBox.GoToPosition(editBox.line, y, x);
1395             // Note: Uncommented this to drag objects after the member instance on which they are dropped
1396             editBox.NotifyCaretMove(this, editBox, y+1, x+1);
1397
1398             classObject = selected ? selected.oClass : null;
1399
1400             if((!selected || selected == classObject) && classObject && classObject.instances.first)
1401                selected = classObject.instances.last;
1402
1403             UpdateFormCode();
1404             control = eInstance_New(eSystem_FindClass(privateModule, controlClass));
1405             if(control)
1406             {
1407                AddObject(control, &object);
1408
1409                designer.CreateObject(control, object, false, classObject.instance);
1410                // designer.PostCreateObject(control, object, false, classObject.instance);
1411                designer.DroppedObject(control, object, false, classObject.instance);
1412
1413                sheet.AddObject(object, object.name, typeData /* className*/, true);
1414
1415                UpdateFormCode();
1416                //codeModified = true;
1417                EnsureUpToDate();
1418             }
1419          }
1420          return true;
1421       }
1422
1423       bool NotifyKeyDown(EditBox editBox, Key key, unichar ch)
1424       {
1425          if(key == ctrlSpace)
1426          {
1427             membersList.Destroy(0);
1428             membersListShown = false;
1429             InvokeAutoComplete(false, 0, false);
1430             return false;
1431          }
1432          else if(key == Key { space, ctrl = true, shift = true })
1433             InvokeParameters(false, true, false);
1434          else if(key == escape)
1435             ide.RepositionWindows(true);
1436          else if(key == ctrlF7)
1437          {
1438             if(ide.projectView)
1439             {
1440                ProjectNode node = ide.projectView.GetNodeForCompilationFromWindow(this, false, null, null);
1441                if(!node)
1442                {
1443                   char * s;
1444                   s = PrintString($"The ", fileName, $" file is not part of any project.\n",
1445                      $"It can't be compiled.");
1446                   MessageBox { type = ok, /*parent = ide, */master = ide, text = $"File not in project error", contents = s }.Modal();
1447                   delete s;
1448                   return false;
1449                }
1450             }
1451          }
1452          return true;
1453       }
1454
1455       bool OnKeyDown(Key key, unichar ch)
1456       {
1457          CodeEditor editor = (CodeEditor)master;
1458          if(key == escape /*|| key == leftAlt || key == rightAlt || (key.ctrl && key.code != left && key.code != right && key.code != leftShift && key.code != rightShift && key.code !=  space)*/)
1459          {
1460             if(editor.membersListShown)
1461             {
1462                editor.membersList.Destroy(0);
1463                editor.membersListShown = false;
1464                return false;
1465             }
1466             if(editor.paramsShown)
1467             {
1468                editor.paramsList.Destroy(0);
1469                editor.paramsShown = false;
1470                FreeType(editor.functionType);
1471                FreeType(editor.instanceType);
1472
1473                editor.functionType = null;
1474                editor.instanceType = null;
1475                editor.paramsID = -1;
1476                return false;
1477             }
1478          }
1479          return EditBox::OnKeyDown(key, ch);
1480       }
1481
1482       void OnVScroll(ScrollBarAction action, int position, Key key)
1483       {
1484          if(anchor.left.distance)
1485          {
1486             Box box { 0, 0, anchor.left.distance-1, parent.clientSize.h - 1 };
1487             parent.Update(box);
1488          }
1489          EditBox::OnVScroll(action, position, key);
1490          {
1491             CodeEditor ce = (CodeEditor)parent;
1492             if(ce.openedFileInfo)
1493                ce.openedFileInfo.ScrollChange({ scroll.x, position });
1494          }
1495       }
1496
1497       void OnHScroll(ScrollBarAction action, int position, Key key)
1498       {
1499          EditBox::OnHScroll(action, position, key);
1500          {
1501             CodeEditor ce = (CodeEditor)parent;
1502             if(ce.openedFileInfo)
1503                ce.openedFileInfo.ScrollChange({ position, scroll.y });
1504          }
1505       }
1506    };
1507    ListBox membersList
1508    {
1509       master = this,
1510       fullRowSelect = false,
1511       interim = true,
1512       autoCreate = false,
1513       borderStyle = bevel;
1514       // size = { 200, 400 };
1515
1516       bool NotifyDoubleClick(ListBox listBox, int x, int y, Modifiers mods)
1517       {
1518          DataRow row = listBox.currentRow;
1519          if(row)
1520          {
1521             char * string = row.string;
1522
1523             editBox.GoToPosition(membersLine, membersLoc.start.line, membersLoc.start.charPos);
1524             editBox.Delete(
1525                membersLine, membersLoc.start.line, membersLoc.start.charPos,
1526                membersLine, membersLoc.end.line, membersLoc.end.charPos);
1527             editBox.PutS(string);
1528
1529             listBox.Destroy(0);
1530             membersListShown = false;
1531          }
1532          return true;
1533       }
1534
1535       bool OnKeyDown(Key key, unichar ch)
1536       {
1537          CodeEditor editor = (CodeEditor) master;
1538          if(key == escape || key == leftAlt || key == rightAlt ||
1539             (key.ctrl && key.code != left && key.code != right &&
1540              key.code != leftShift && key.code != rightShift && key.code != space))
1541          {
1542             bool result = true;
1543             if(editor.paramsShown)
1544             {
1545                if(key == escape)
1546                   result = false;
1547                editor.paramsList.Destroy(0);
1548                editor.paramsShown = false;
1549             }
1550             if(editor.membersListShown)
1551             {
1552                if(key == escape)
1553                   result = false;
1554                editor.membersList.Destroy(0);
1555                editor.membersListShown = false;
1556             }
1557
1558             FreeType(editor.functionType);
1559             editor.functionType = null;
1560
1561             FreeType(editor.instanceType);
1562             editor.instanceType = null;
1563
1564             editor.paramsID = -1;
1565
1566             return result;
1567          }
1568          else
1569             return editor.editBox.OnKeyDown(key, ch);
1570          return false;
1571       }
1572
1573       /*bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool direct)
1574       {
1575          CodeEditor editor = (CodeEditor)master;
1576          Window rw = previous ? previous.rootWindow : null;
1577          if(!active && rw != editor.paramsList)
1578          {
1579             Destroy(0);
1580             editor.membersListShown = false;
1581          }
1582          return ListBox::OnActivate(active, previous, goOnWithActivation, direct);
1583       }*/
1584
1585       bool OnKeyHit(Key key, unichar ch)
1586       {
1587          CodeEditor editor = (CodeEditor) master;
1588
1589          switch(key)
1590          {
1591             case enter: case tab:
1592             {
1593                DataRow row = currentRow;
1594                if(row && row.selected)
1595                {
1596                   char * string = row.string;
1597
1598                   editor.editBox.GoToPosition(editor.membersLine, editor.membersLoc.start.line, editor.membersLoc.start.charPos);
1599                   editor.editBox.Delete(
1600                      editor.membersLine, editor.membersLoc.start.line, editor.membersLoc.start.charPos,
1601                      editor.membersLine, editor.membersLoc.end.line, editor.membersLoc.end.charPos);
1602                   editor.editBox.PutS(string);
1603
1604                   Destroy(0);
1605                   editor.membersListShown = false;
1606                }
1607                else
1608                   editor.editBox.OnKeyHit(key, ch);
1609                break;
1610             }
1611             case down:
1612             case up:
1613             case pageDown:
1614             case pageUp:
1615             case home:
1616             case end:
1617             {
1618                return ListBox::OnKeyHit(key, ch);
1619             }
1620             default:
1621             {
1622                /*
1623                bool result;
1624                // If before . or after
1625                //listBox.Destroy(true);
1626                result = editor.editBox.OnKeyHit(key, ch);
1627                return result;
1628                */
1629                return true;
1630             }
1631          }
1632
1633          return false;
1634       }
1635    };
1636
1637    Window paramsList
1638    {
1639       master = this,
1640       interim = true,
1641       clickThrough = true,
1642       autoCreate = false,
1643       borderStyle = contour,
1644       cursor = null,
1645       background = { 255,255,225 },
1646
1647       OnKeyDown = membersList.OnKeyDown;
1648
1649       /*bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool direct)
1650       {
1651          CodeEditor editor = (CodeEditor)master;
1652          Window rw = previous ? previous.rootWindow : null;
1653          if(!active && previous != editor.editBox && rw != editor.membersList)
1654          {
1655             Destroy(0);
1656             editor.paramsShown = false;
1657          }
1658          return Window::OnActivate(active, previous, goOnWithActivation, direct);
1659       }*/
1660
1661       bool OnKeyHit(Key key, unichar ch)
1662       {
1663          CodeEditor editor = (CodeEditor)master;
1664
1665          if(!editor.membersListShown || editor.membersList.OnKeyHit(key, ch))
1666          {
1667             /*
1668             bool result = true; editor.editBox.OnKeyHit(key, ch);
1669             return (!created) ? false : result;
1670             */
1671             return true;
1672          }
1673          return false;
1674       }
1675
1676       void OnRedraw(Surface surface)
1677       {
1678          CodeEditor editor = (CodeEditor) master;
1679          Type type = editor.functionType ? editor.functionType : editor.instanceType;
1680          Type param;
1681          Type methodType = null;
1682
1683          char string[1024];
1684
1685          int functionW, nameW = 0;
1686          int totalW = 0;
1687          int spaceW, spaceH, commaW, commaWB, parW;
1688          int availW = 1024;
1689          int maxW = 0, lineW = 0;
1690          int realW = 0;
1691          int height = 0;
1692          int x = 2, y = 2;
1693          int id = 0;
1694
1695          Font font = editor.normalFont.font;
1696          Font boldFont = editor.boldFont.font;
1697          Display display = this.display;
1698
1699          if(!type) { return; };
1700
1701          if(type.kind == TypeKind::methodType) { methodType = type; type = type.method.dataType; }
1702
1703          display.FontExtent(boldFont, " ", 1, &spaceW, &spaceH);
1704          display.FontExtent(font, ", ", 2, &commaW, null);
1705          display.FontExtent(boldFont, ", ", 2, &commaWB, null);
1706          display.FontExtent(font, ")", 1, &parW, null);
1707
1708          string[0] = 0;
1709          if(editor.functionType)
1710          {
1711             PrintType(type.returnType, string, true, true);
1712             display.FontExtent(font, string, strlen(string), &functionW, null);
1713             if(type.name)
1714                display.FontExtent(font, type.name, strlen(type.name), &nameW, null);
1715             totalW = nameW + functionW + 2 * parW;
1716          }
1717          else
1718          {
1719             PrintType(type, string, (type.kind == functionType) ? true : false, true); // true);
1720             display.FontExtent(boldFont, string, strlen(string), &functionW, null);
1721             if(instanceName && type.kind != functionType)
1722                display.FontExtent(boldFont, instanceName, strlen(instanceName), &nameW, null);
1723             totalW = functionW + nameW;
1724             surface.TextFont(boldFont);
1725          }
1726
1727          surface.WriteText(x, y, string, strlen(string));
1728          x += functionW + spaceW;
1729
1730          if(editor.functionType)
1731          {
1732             if(type.name)
1733                surface.WriteText(x, y, type.name, strlen(type.name));
1734             x += nameW;
1735             surface.WriteText(x, y, "(", 1);
1736             x += parW;
1737
1738             if(methodType && !methodType.staticMethod && methodType.methodClass)
1739             {
1740                int tw = 0, width;
1741
1742                if(id == editor.paramsID)
1743                   surface.TextFont(boldFont);
1744
1745                if(methodType.methodClass)
1746                   surface.TextExtent(methodType.methodClass.name, strlen(methodType.methodClass.name), &tw, null);
1747
1748                width = tw;
1749
1750                if(type.params.first && (((Type)type.params.first).kind != voidType || type.params.count > 1))
1751                   width += ((id == editor.paramsID) ? commaWB : commaW);
1752
1753                if(!height)
1754                   maxW = lineW;
1755
1756                if(lineW && ((height && lineW + width > maxW) || (totalW + lineW + width + 20 > availW)))
1757                {
1758                   height += spaceH;
1759                   lineW = 0;
1760
1761                   x = 2 + nameW + spaceW + functionW + parW;
1762                   y += spaceH;
1763
1764                }
1765                if(methodType.methodClass)
1766                   surface.WriteText(x, y, methodType.methodClass.name, strlen(methodType.methodClass.name));
1767
1768                x += tw;
1769                if(type.params.first && (((Type)type.params.first).kind != voidType || type.params.count > 1))
1770                {
1771                   surface.WriteText(x, y, ",", 1);
1772                   x += ((id ==  editor.paramsID) ? commaWB : commaW);
1773                }
1774
1775                lineW += width;
1776
1777                if(lineW > realW)
1778                   realW = lineW;
1779
1780                if(id == editor.paramsID)
1781                   surface.TextFont(font);
1782                id ++;
1783             }
1784
1785             if(!methodType || (methodType.staticMethod || !methodType.methodClass) || !type.params.first || ((Type)type.params.first).kind != voidType || type.params.count > 1)
1786             {
1787                for(param = type.params.first; param; param = param.next)
1788                {
1789                   char paramString[1024];
1790                   int tw, width;
1791
1792                   if(id == editor.paramsID || (param.kind == ellipsisType && id < editor.paramsID && editor.paramsID != -1))
1793                      surface.TextFont(boldFont);
1794
1795                   paramString[0] = 0;
1796                   PrintType(param, paramString, true, true);
1797                   surface.TextExtent(paramString, strlen(paramString), &tw, null);
1798                   width = tw;
1799                   if(param.next) width += ((id ==  editor.paramsID) ? commaWB : commaW);
1800
1801                   if(!height)
1802                      maxW = lineW;
1803
1804                   if(lineW && ((height && lineW + width > maxW) || (totalW + lineW + width + 20 > availW)))
1805                   {
1806                      height += spaceH;
1807                      lineW = 0;
1808
1809                      x = 2 + nameW + spaceW + functionW + parW;
1810                      y += spaceH;
1811
1812                   }
1813                   surface.WriteText(x, y, paramString, strlen(paramString));
1814                   x += tw;
1815                   if(param.next)
1816                   {
1817                      surface.WriteText(x, y, ",", 1);
1818                      x += ((id ==  editor.paramsID) ? commaWB : commaW);
1819                   }
1820
1821                   lineW += width;
1822
1823                   if(lineW > realW)
1824                      realW = lineW;
1825
1826                   if(id == editor.paramsID || (param.kind == ellipsisType && id < editor.paramsID && editor.paramsID != -1))
1827                      surface.TextFont(font);
1828                   id ++;
1829                }
1830             }
1831
1832             surface.WriteText(x, y, ")", 1);
1833          }
1834          else if(instanceName && type.kind != functionType)
1835          {
1836             surface.WriteText(x, y, instanceName, strlen(instanceName));
1837          }
1838       }
1839
1840       bool OnResizing(int * w, int * h)
1841       {
1842          CodeEditor editor = (CodeEditor) master;
1843          Type type = editor.functionType ? editor.functionType : editor.instanceType;
1844          Type param;
1845          Type methodType = null;
1846
1847          char string[1024];
1848
1849          int functionW = 0, nameW = 0;
1850          int totalW = 0;
1851          int spaceW, spaceH, commaW, commaWB, parW;
1852          int availW = 1024;
1853          int maxW = 0, lineW = 0;
1854          int realW = 0;
1855          int height = 0;
1856          int id = 0;
1857
1858          Font font = editor.normalFont.font;
1859          Font boldFont = editor.boldFont.font;
1860          Display display = this.display;
1861
1862          if(type.kind == TypeKind::methodType)
1863          {
1864             methodType = type;
1865             ProcessMethodType(type.method);
1866             type = type.method.dataType;
1867          }
1868
1869          display.FontExtent(boldFont, " ", 1, &spaceW, &spaceH);
1870          display.FontExtent(font, ", ", 2, &commaW, null);
1871          display.FontExtent(boldFont, ", ", 2, &commaWB, null);
1872          display.FontExtent(font, ")", 1, &parW, null);
1873
1874          string[0] = 0;
1875          if(editor.functionType && type)
1876          {
1877             PrintType(type.returnType, string, true, true);
1878             display.FontExtent(font, string, strlen(string), &functionW, null);
1879             if(type.name)
1880                display.FontExtent(font, type.name, strlen(type.name), &nameW, null);
1881             totalW = nameW + spaceW + functionW + 2 * parW;
1882          }
1883          else if(type)
1884          {
1885             PrintType(type, string, false, true); // /*true);
1886             display.FontExtent(boldFont, string, strlen(string), &functionW, null);
1887             if(instanceName && type.kind != functionType)
1888                display.FontExtent(boldFont, instanceName, strlen(instanceName), &nameW, null);
1889             totalW = functionW + nameW + spaceW;
1890          }
1891
1892          if(editor.functionType)
1893          {
1894             if(methodType)
1895             {
1896                int width = 0;
1897
1898                if(methodType.methodClass)
1899                   display.FontExtent((id == editor.paramsID) ? boldFont : font, methodType.methodClass.name, strlen(methodType.methodClass.name), &width, null);
1900                if(type.params.first && (((Type)type.params.first).kind != voidType || type.params.count > 1))
1901                   width += ((id == editor.paramsID) ? commaWB : commaW);
1902
1903                if(!height)
1904                   maxW = lineW;
1905
1906                if(lineW && ((height && lineW + width > maxW) || (totalW + lineW + width + 20 > availW)))
1907                {
1908                   height += spaceH;
1909                   lineW = 0;
1910                }
1911
1912                lineW += width;
1913
1914                if(lineW > realW)
1915                   realW = lineW;
1916
1917                id++;
1918             }
1919             if(!methodType || methodType.staticMethod || !type.params.first || ((Type)type.params.first).kind != voidType || type.params.count > 1)
1920             {
1921                for(param = type.params.first; param; param = param.next)
1922                {
1923                   char paramString[1024];
1924                   int width = 0;
1925
1926                   paramString[0] = 0;
1927                   PrintType(param, paramString, true, true);
1928                   display.FontExtent((id == editor.paramsID || param.kind == ellipsisType) ? boldFont : font, paramString, strlen(paramString), &width, null);
1929                   if(param.next)
1930                      width += ((id == editor.paramsID) ? commaWB : commaW);
1931
1932                   if(!height)
1933                      maxW = lineW;
1934
1935                   if(lineW && ((height && lineW + width > maxW) || (totalW + lineW + width + 20 > availW)))
1936                   {
1937                      height += spaceH;
1938                      lineW = 0;
1939                   }
1940
1941                   lineW += width;
1942
1943                   if(lineW > realW)
1944                      realW = lineW;
1945
1946                   id++;
1947                }
1948             }
1949          }
1950          height += spaceH;
1951
1952          *w = realW + totalW + 4;
1953          *h = height + 4;
1954          return true;
1955       }
1956    };
1957
1958    Menu fileMenu { menu, $"File", f };
1959    MenuItem { fileMenu, $"Save", s, Key { s, ctrl = true }, NotifySelect = MenuFileSave };
1960    MenuItem { fileMenu, $"Save As...", a, NotifySelect = MenuFileSaveAs };
1961
1962    Menu editMenu { menu, $"Edit", e };
1963    MenuDivider { editMenu };
1964    MenuItem clearTrailingSpacesItem
1965    {
1966       editMenu, $"Clear trailing spaces", t, Key { t, ctrl = true, shift = true };
1967
1968       bool NotifySelect(MenuItem selection, Modifiers mods)
1969       {
1970          // Nuke trailing spaces
1971          EditLine line;
1972          int y = 0;
1973          editBox.recordUndoEvent = true;
1974          for(line = editBox.firstLine; line; line = line.next, y++)
1975          {
1976             String buffer = line.text;
1977             int count = line.count, i = count-1;
1978             while(i >= 0 && isspace(buffer[i])) i--;
1979             if(i < count - 1)
1980                editBox.Delete(line, y, i + 1, line, y, count);
1981          }
1982          editBox.recordUndoEvent = false;
1983          return true;
1984       }
1985    };
1986
1987    Menu debugMenu { menu, $"Debug", d };
1988    MenuItem debugRunToCursor                { debugMenu, $"Run To Cursor", c, ctrlF10,                                                                  id = RTCMenuBits { false, false, false }, NotifySelect = RTCMenu_NotifySelect; };
1989    MenuItem debugSkipRunToCursor            { debugMenu, $"Run To Cursor Skipping Breakpoints", u, Key { f10, ctrl = true, shift = true },              id = RTCMenuBits { true,  false, false }, NotifySelect = RTCMenu_NotifySelect; };
1990    MenuItem debugRunToCursorAtSameLevel     { debugMenu, $"Run To Cursor At Same Level", l, altF10,                                                     id = RTCMenuBits { false, true,  false }, NotifySelect = RTCMenu_NotifySelect; };
1991    MenuItem debugSkipRunToCursorAtSameLevel { debugMenu, $"Run To Cursor At Same Level Skipping Breakpoints", g, Key { f10, shift = true, alt = true }, id = RTCMenuBits { true,  true,  false }, NotifySelect = RTCMenu_NotifySelect; };
1992 #if 0
1993    MenuItem debugBpRunToCursor                { debugMenu, $"BP Run To Cursor"/*, c, ctrlF10*/,                                                                  id = RTCMenuBits { false, false, true  }, NotifySelect = RTCMenu_NotifySelect; };
1994    MenuItem debugBpSkipRunToCursor            { debugMenu, $"BP Run To Cursor Skipping Breakpoints"/*, u, Key { f10, ctrl = true, shift = true }*/,              id = RTCMenuBits { true,  false, true  }, NotifySelect = RTCMenu_NotifySelect; };
1995    MenuItem debugBpRunToCursorAtSameLevel     { debugMenu, $"BP Run To Cursor At Same Level"/*, l, altF10*/,                                                     id = RTCMenuBits { false, true,  true  }, NotifySelect = RTCMenu_NotifySelect; };
1996    MenuItem debugBpSkipRunToCursorAtSameLevel { debugMenu, $"BP Run To Cursor At Same Level Skipping Breakpoints"/*, g, Key { f10, shift = true, alt = true }*/, id = RTCMenuBits { true,  true,  true  }, NotifySelect = RTCMenu_NotifySelect; };
1997 #endif
1998    bool RTCMenu_NotifySelect(MenuItem selection, Modifiers mods)
1999    {
2000       ProjectView projectView = ide.projectView;
2001       if(!projectView.buildInProgress)
2002       {
2003          RTCMenuBits bits = (RTCMenuBits)selection.id;
2004          int line = editBox.lineNumber + 1;
2005          if(projectView)
2006          {
2007             CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
2008             ProjectConfig config = projectView.project.config;
2009             int bitDepth = ide.workspace.bitDepth;
2010             bool useValgrind = ide.workspace.useValgrind;
2011             ide.debugger.RunToCursor(compiler, config, bitDepth, useValgrind, fileName, line, bits.ignoreBreakpoints, bits.atSameLevel, bits.oldImplementation);
2012             delete compiler;
2013          }
2014       }
2015       return true;
2016    }
2017    MenuDivider { debugMenu };
2018    MenuItem debugToggleBreakpoint
2019    {
2020       debugMenu, $"Toggle Breakpoint", t, f9;
2021       bool NotifySelect(MenuItem selection, Modifiers mods)
2022       {
2023          ProjectView projectView = ide.projectView;
2024          if(projectView && fileName)
2025          {
2026             int line = editBox.lineNumber + 1;
2027             ide.debugger.ToggleBreakpoint(fileName, line);
2028             Update(null);
2029          }
2030          return true;
2031       }
2032    };
2033
2034    bool debugClosing;
2035    int lastLine;
2036
2037    //MenuItem viewDesignerItem, viewProperties, viewMethods;
2038
2039    bool OnCreate(void)
2040    {
2041       designer.parent = parent;
2042       designer.Create();
2043
2044       toolBox = ((IDEWorkSpace)master).toolBox;
2045       incref toolBox;
2046       // Debugger bug here: value of toolBox appears as 0
2047
2048       sheet = ((IDEWorkSpace)master).sheet;
2049       incref sheet;
2050       return true;
2051    }
2052
2053    bool OnClose(bool parentClosing)
2054    {
2055       if(!parentClosing)
2056       {
2057          if(ide.workspace && fileName)
2058             ide.workspace.UpdateOpenedFileInfo(fileName, closed);
2059          if(inUseDebug && !debugClosing)
2060          {
2061             debugClosing = true;
2062             closing = false;
2063             if(CloseConfirmation(false))
2064             {
2065                visible = false;
2066                if(modifiedDocument)
2067                   OnFileModified({ modified = true }, null);
2068             }
2069             debugClosing = false;
2070             return false;
2071          }
2072          if(designer && !designer.closing)
2073          {
2074             if(designer.visible)
2075             {
2076                visible = false;
2077                return false;
2078             }
2079             /*else
2080             {
2081                //Window formEditor = designer;
2082                //formEditor.Destroy(0);
2083             }*/
2084          }
2085          ide.AdjustFileMenus();
2086       }
2087       return true;
2088    }
2089
2090    void OnDestroy(void)
2091    {
2092       ObjectInfo oClass, next;
2093       Class windowClass = eSystem_FindClass(this.privateModule, "ecere::gui::Window");
2094
2095       FreeType(this.functionType);
2096       FreeType(this.instanceType);
2097
2098       if(designer)
2099       {
2100          designer.Reset();
2101          designer.codeEditor = null;
2102          designer.Destroy(0);
2103          delete designer;
2104       }
2105
2106       for(oClass = (classes).first, next = oClass ? oClass.next : null; oClass; oClass = next, next = next ? (next.next) : null)
2107       {
2108          ObjectInfo object, next;
2109
2110          for(object = oClass.instances.first; object; object = next)
2111          {
2112             next = object.next;
2113             if(object.instance)
2114             {
2115                Designer::DestroyObject(object.instance);
2116                delete object.instance;
2117             }
2118             sheet.DeleteObject(object);
2119             delete object.name;
2120             oClass.instances.Delete(object);
2121          }
2122          if(oClass.instance)
2123          {
2124             Designer::DestroyObject(oClass.instance);
2125             delete oClass.instance;
2126          }
2127          sheet.DeleteObject(oClass);
2128          delete oClass.name;
2129          classes.Delete(oClass);
2130       }
2131
2132       if(windowClass && windowClass.data)
2133          UnapplySkin(windowClass);
2134
2135       FreeParser();
2136
2137       if(sheet.codeEditor == this)
2138       {
2139          sheet.codeEditor = null;
2140          toolBox.codeEditor = null;
2141       }
2142       delete sheet;
2143       delete toolBox;
2144
2145       {
2146          ProjectView projectView = ide.projectView;
2147          if(projectView)
2148          {
2149             ProjectNode node = projectView.GetNodeFromWindow(this, null, true, false, null);
2150             if(node && node.modified)
2151             {
2152                node.modified = false;
2153                projectView.Update(null);
2154             }
2155          }
2156       }
2157    }
2158
2159    bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool directActivation)
2160    {
2161       // WHY WAS THIS HERE? I think this was here because once you move a window in the ide it's hard to reposition it correctly
2162       /*
2163       if(directActivation)
2164          ide.RepositionWindows(false);    // Moved this up before as resizing causes NotifyCaretMove to be called on all editors
2165       */
2166       if(active && directActivation)
2167       {
2168          AdjustDebugMenus();
2169          if(openedFileInfo)
2170             openedFileInfo.Activate();
2171          if(designer)
2172          {
2173             int line, charPos;
2174             Location * loc = null;
2175             UpdateFormCode(); // To ensure update when modifying properties...
2176
2177             // Got to the right spot in code so we don't lose our form selection...
2178             if(selected)
2179             {
2180                if(selected.instCode)
2181                   loc = &selected.instCode.loc;
2182                else if(selected.classDefinition)
2183                   loc = &selected.classDefinition.loc;
2184             }
2185             line = editBox.lineNumber + 1;
2186             charPos = editBox.charPos + 1;
2187             if(fixCaret)
2188             {
2189                fixCaret = false;
2190
2191                if(selected && !loc->Inside(line, charPos))
2192                {
2193                   editBox.GoToPosition(null, loc->start.line - 1, loc->start.charPos - 1);
2194                   line = editBox.lineNumber + 1;
2195                   charPos = editBox.charPos + 1;
2196                }
2197                else if(selected && selected.classDefinition)
2198                {
2199                   ObjectInfo object;
2200                   for(object = selected.instances.first; object; object = object.next)
2201                   {
2202                      if(object.instCode)
2203                      {
2204                         if(object.instCode.loc.Inside(line, charPos))
2205                            break;
2206                      }
2207                   }
2208                   if(object)
2209                   {
2210                      editBox.GoToPosition(null, loc->start.line - 1, loc->start.charPos - 1);
2211                      line = editBox.lineNumber + 1;
2212                      charPos = editBox.charPos + 1;
2213                   }
2214                }
2215             }
2216
2217             ProcessCaretMove(editBox, line, charPos);
2218          }
2219       }
2220       if(!active)
2221       {
2222          if(membersListShown)
2223          {
2224             membersList.Destroy(0);
2225             membersListShown = false;
2226          }
2227          if(paramsShown)
2228          {
2229             paramsList.Destroy(0);
2230             paramsShown = false;
2231             FreeType(functionType);
2232             FreeType(instanceType);
2233
2234             functionType = null;
2235             instanceType = null;
2236             paramsID = -1;
2237          }
2238       }
2239       return true;
2240    }
2241
2242    bool OnSaveFile(char * fileName)
2243    {
2244       File f;
2245       if(designer)
2246       {
2247          UpdateFormCode();
2248       }
2249       f = FileOpen(fileName, write);
2250       if(f)
2251       {
2252          if(!ide.projectView)
2253             ide.ChangeFileDialogsDirectory(codeEditorFileDialog.currentDirectory, true);
2254          if(designer)
2255          {
2256             if(!this.fileName)
2257                this.fileName = fileName;  // Put this here because the form designer will check for it...
2258             designer.fileName = fileName;
2259             designer.modifiedDocument = false;
2260          }
2261
2262          editBox.Save(f, false);
2263          modifiedDocument = false;
2264
2265          delete f;
2266          return true;
2267       }
2268       return false;
2269    }
2270
2271    bool OnFileModified(FileChange fileChange, char * param)
2272    {
2273       bool reload = false;
2274       if(visible == false && inUseDebug == true)
2275          ide.debugger.WatchesReleaseCodeEditor();
2276       else
2277       {
2278          char message[2048];
2279
2280          sprintf(message, $"The document %s was modified by another application.\n"
2281             "Would you like to reload it and lose your changes?", fileName);
2282          if(MessageBox { type = yesNo, master = /*parent = */parent, text = $"Document has been modified",
2283             contents = message }.Modal() == yes)
2284             reload = true;
2285       }
2286
2287       if(reload)
2288       {
2289          File f = FileOpen(fileName, read);
2290          if(f)
2291          {
2292             int lineNumber, charPos, len;
2293             Point scroll;
2294
2295             loadingFile = true;
2296             updatingCode = true;
2297             lineNumber = editBox.lineNumber;
2298             charPos = editBox.charPos;
2299             scroll = editBox.scroll;
2300             editBox.Clear();
2301             editBox.Load(f);
2302             lineNumber = lineNumber < editBox.numLines ? lineNumber : editBox.numLines - 1;
2303             len = strlen(editBox.line.text);
2304             editBox.GoToLineNum(lineNumber);
2305             editBox.GoToPosition(editBox.line, lineNumber, charPos <= len ? charPos - 1 : (len ? len - 1 : 0));
2306             editBox.scroll = scroll;
2307             updatingCode = false;
2308             loadingFile = false;
2309
2310             codeModified = true;
2311             if(designer)
2312             {
2313                UpdateFormCode();
2314                designer.modifiedDocument = false;
2315             }
2316             modifiedDocument = false;
2317
2318             delete f;
2319          }
2320       }
2321       return true;
2322    }
2323
2324    void OnRedraw(Surface surface)
2325    {
2326       // Line Numbers
2327       surface.SetBackground(marginColor);
2328       surface.Area(0, 0, editBox.anchor.left.distance, clientSize.h - 1);
2329       if(ideSettings.showLineNumbers)
2330       {
2331          int currentLineNumber;
2332          int i;
2333          char lineFormat[16];
2334          char lineText[256];
2335          int spaceH;
2336
2337          surface.textOpacity = false;
2338          surface.font = font.font;
2339          surface.TextExtent(" ", 1, null, &spaceH);
2340          currentLineNumber = editBox.scroll.y / spaceH + 1;
2341          sprintf(lineFormat, " %%%du", maxLineNumberLength);
2342
2343          surface.SetForeground(lineNumbersColor);
2344          for(i = 0; i < editBox.clientSize.h - 4; i += spaceH)
2345          {
2346             // Highlight current line
2347             if(editBox.lineNumber == currentLineNumber - 1)
2348             {
2349                surface.SetBackground(selectedMarginColor);
2350                surface.Area(0, i, editBox.anchor.left.distance, i+spaceH-1);
2351                surface.SetBackground(marginColor);
2352             }
2353             sprintf(lineText, lineFormat, currentLineNumber);
2354             if(currentLineNumber <= editBox.numLines)
2355                surface.WriteText(editBox.syntaxHighlighting * 20, i+1,lineText,maxLineNumberLength+1);
2356             currentLineNumber++;
2357          }
2358       }
2359
2360       if(editBox.syntaxHighlighting && fileName && ide.projectView)
2361       {
2362          bool error, bpOnCursor, bpOnTopFrame, breakpointEnabled[128];
2363          int lineCursor, lineTopFrame, breakpointLines[128];
2364          int count, i, lineH, boxH, scrollY; //, firstLine; firstLine = editBox.firstLine;
2365          Debugger debugger = ide.debugger;
2366          BitmapResource bmpRes;
2367
2368          boxH = clientSize.h;
2369          scrollY = editBox.scroll.y;
2370          displaySystem.FontExtent(editBox.font.font, " ", 1, null, &lineH);
2371
2372          bpOnCursor = bpOnTopFrame = false;
2373          count = debugger.GetMarginIconsLineNumbers(fileName, breakpointLines, breakpointEnabled, 128, &error, &lineCursor, &lineTopFrame);
2374          if(count)
2375          {
2376             for(i = 0; i < count; i++)
2377             {
2378                if(breakpointLines[i] == lineCursor || breakpointLines[i] == lineTopFrame)
2379                {
2380                   bmpRes = breakpointEnabled[i] ? ide.bmpBpHalf : ide.bmpBpHalfDisabled;
2381                   if(breakpointLines[i] == lineCursor)
2382                      bpOnCursor = true;
2383                   if(breakpointLines[i] == lineTopFrame)
2384                      bpOnTopFrame = true;
2385                }
2386                else
2387                   bmpRes = breakpointEnabled[i] ? ide.bmpBp : ide.bmpBpDisabled;
2388
2389                DrawLineMarginIcon(surface, bmpRes, breakpointLines[i], lineH, scrollY, boxH);
2390             }
2391          }
2392          DrawLineMarginIcon(surface, error ? ide.bmpCursorError : ide.bmpCursor, lineCursor, lineH, scrollY, boxH);
2393          bmpRes = bpOnTopFrame ? (error ? ide.bmpTopFrameHalfError : ide.bmpTopFrameHalf) : (error ? ide.bmpTopFrameError : ide.bmpTopFrame);
2394          DrawLineMarginIcon(surface, bmpRes, lineTopFrame, lineH, scrollY, boxH);
2395       }
2396       if(editBox.anchor.left.distance)
2397       {
2398          if(editBox.horzScroll && editBox.horzScroll.visible)
2399          {
2400             surface.SetBackground(control);
2401             surface.Area(0, editBox.clientSize.h, editBox.anchor.left.distance, clientSize.h - 1);
2402          }
2403       }
2404    }
2405
2406    void DrawLineMarginIcon(Surface surface, BitmapResource resource, int line, int lineH, int scrollY, int boxH)
2407    {
2408       int lineY;
2409       if(line)
2410       {
2411          lineY = (line - 1) * lineH;
2412          if(lineY + lineH > scrollY && lineY /*+ lineH*/ < scrollY + boxH)
2413          {
2414             Bitmap bitmap = resource.bitmap;
2415             if(bitmap)
2416                surface.Blit(bitmap, 0, lineY - scrollY + (lineH - bitmap.height) / 2 + 1, 0, 0, bitmap.width, bitmap.height);
2417          }
2418       }
2419    }
2420
2421    watch(fileName)
2422    {
2423       char ext[MAX_EXTENSION];
2424       char * fileName = property::fileName;
2425
2426       if(SearchString(fileName, 0, "Makefile", false, true))
2427          editBox.useTab = true;
2428       designer.fileName = fileName;
2429
2430       if(fileName)
2431       {
2432          GetExtension(fileName, ext);
2433
2434          if(!strcmpi(ext, "ec") || !strcmpi(ext, "eh") || !strcmpi(ext, "c") || !strcmpi(ext, "h") || !strcmpi(ext, "cpp") ||
2435                !strcmpi(ext, "hpp") || !strcmpi(ext, "cxx") || !strcmpi(ext, "hxx") || !strcmpi(ext, "cc") || !strcmpi(ext, "hh") ||
2436                !strcmpi(ext, "m") || !strcmpi(ext, "mm") || !strcmpi(ext, "cs") || !strcmpi(ext, "java") || !strcmpi(ext, "y") || !strcmpi(ext, "l"))
2437             editBox.syntaxHighlighting = true;
2438          else
2439             editBox.syntaxHighlighting = false;
2440
2441          if(parsing && !strcmpi(ext, "ec"))
2442          {
2443             codeModified = true;
2444             EnsureUpToDate();
2445          }
2446
2447          maxLineNumberLength = 0;
2448          UpdateMarginSize();
2449       }
2450    };
2451
2452    bool UpdateMarginSize()
2453    {
2454       if(ideSettings.showLineNumbers)
2455       {
2456          int numLen = Max(4, nofdigits(editBox.numLines));
2457          int digitWidth;
2458          maxLineNumberLength = numLen;
2459          display.FontExtent(font.font, "0", 1, &digitWidth, null);
2460          editBox.anchor = Anchor
2461          {
2462             left = editBox.syntaxHighlighting * 20 + ideSettings.showLineNumbers * (maxLineNumberLength+2) * digitWidth,
2463             right = 0, top = 0, bottom = 0
2464          };
2465       }
2466       else
2467       {
2468          maxLineNumberLength = 0;
2469          editBox.anchor = Anchor
2470          {
2471             left = editBox.syntaxHighlighting * 20,
2472             right = 0, top = 0, bottom = 0
2473          };
2474       }
2475       return true;
2476    }
2477
2478    bool OnPostCreate()
2479    {
2480       UpdateMarginSize();
2481       return true;
2482    }
2483
2484    bool LoadFile(char * filePath)
2485    {
2486       File f = FileOpen(filePath, read);
2487       if(f)
2488       {
2489          // Added this here...
2490          fileName = filePath;
2491          loadingFile = true;
2492          updatingCode = true;
2493          editBox.Load(f);
2494          updatingCode = false;
2495          loadingFile = false;
2496          Create();
2497
2498          delete f;
2499          return true;
2500       }
2501       return false;
2502    }
2503
2504    void AdjustDebugMenus()
2505    {
2506       bool unavailable = ide.areDebugMenusUnavailable;
2507       bool isNotNotRunning    = unavailable || ide.isDebuggerRunning;
2508       bool isNotStopped       = unavailable || !ide.isDebuggerStopped;
2509       bool noBreakpointToggle = ide.isBreakpointTogglingUnavailable;
2510
2511       debugRunToCursor.disabled                = isNotNotRunning;
2512       debugSkipRunToCursor.disabled            = isNotNotRunning;
2513       debugRunToCursorAtSameLevel.disabled     = isNotStopped;
2514       debugSkipRunToCursorAtSameLevel.disabled = isNotStopped;
2515 #if 0
2516       debugBpRunToCursor.disabled                = isNotNotRunning;
2517       debugBpSkipRunToCursor.disabled            = isNotNotRunning;
2518       debugBpRunToCursorAtSameLevel.disabled     = isNotStopped;
2519       debugBpSkipRunToCursorAtSameLevel.disabled = isNotStopped;
2520 #endif
2521       debugToggleBreakpoint.disabled           = noBreakpointToggle;
2522    }
2523
2524    CodeEditor()
2525    {
2526       CodeObjectType c;
2527       ProjectView projectView = ide.projectView;
2528
2529       /*if(fileName)
2530          designer.fileName = fileName;
2531       else
2532       */
2533       if(designer)
2534       {
2535          char title[1024];
2536          sprintf(title, $"Untitled %d", documentID);
2537          // designer.fileName = CopyString(title);
2538          designer.fileName = title;
2539       }
2540
2541       AdjustDebugMenus();
2542
2543       for(c = 0; c < CodeObjectType::enumSize; c++)
2544          icons[c] = BitmapResource { iconNames[c], window = this };
2545
2546       codeModified = true;
2547       inUseDebug = false;
2548       return true;
2549    }
2550
2551    ~CodeEditor()
2552    {
2553
2554    }
2555
2556    void ModifyCode()
2557    {
2558       selected.modified = true;
2559       selected.oClass.modified = true;
2560
2561       designer.modifiedDocument = true;
2562       modifiedDocument = true;
2563       formModified = true;
2564    }
2565
2566    /****************************************************************************
2567                                  PARSING
2568    ****************************************************************************/
2569    void FreeParser()
2570    {
2571       SetCurrentNameSpace(null);
2572       if(ast != null)
2573       {
2574          FreeASTTree(ast);
2575          ast = null;
2576       }
2577       this.defines.Free(FreeModuleDefine);
2578       this.imports.Free(FreeModuleImport);   // Moved this after FreeAST because Debug printing causes ModuleImports to be created
2579
2580       FreeExcludedSymbols(this.excludedSymbols);
2581       FreeContext(this.globalContext);
2582       FreeIncludeFiles();
2583       FreeGlobalData(&this.globalData);
2584       FindCtx_Terminate();
2585       FindParams_Terminate();
2586
2587       if(GetGlobalContext() == globalContext)
2588       {
2589          SetGlobalData(null);
2590          SetGlobalContext(null);
2591          SetExcludedSymbols(null);
2592          SetTopContext(null);
2593          SetCurrentContext(null);
2594          SetDefines(null);
2595          SetImports(null);
2596          SetPrivateModule(null);
2597       }
2598
2599       if(this.privateModule)
2600       {
2601          FreeTypeData(this.privateModule);
2602          delete this.privateModule;
2603          this.privateModule = null;
2604       }
2605    }
2606
2607    void ParseCode()
2608    {
2609       static bool reentrant = false;
2610       External external;
2611       File editFile;
2612       EditLine l1, l2;
2613       int x1,x2,y1,y2;
2614       char * selectedClassName = null, * selectedName = null;
2615       int selectedPos = 0;
2616       Designer backDesigner;
2617       char oldWorkDir[MAX_LOCATION];
2618       char mainModuleName[MAX_FILENAME] = "";
2619       char * fileName;
2620       ImportedModule module;
2621       char extension[MAX_EXTENSION];
2622       PathBackup pathBackup { };
2623 #ifdef _TIMINGS
2624       Time parseCodeStart = GetTime();
2625       Time startTime, startFindClass;
2626
2627       findClassTotalTime = 0;
2628       checkTypeTotalTime = 0;
2629       externalImportTotalTime = 0;
2630       findClassIgnoreNSTotalTime = 0;
2631       findSymbolTotalTime = 0;
2632       //ResetClassFindTime();
2633 #endif
2634       Project project;
2635
2636       // This temporarily fixes issue with 2 overrides in release mode with VC6 (only happens with both ecere.dll and ide.exe compiled in release mode)
2637       if(reentrant) return;
2638       reentrant = true;
2639
2640       updatingCode++;
2641
2642       if(selected)
2643       {
2644          selectedClassName = CopyString(oClass.name);
2645          if(selected != oClass)
2646          {
2647             ObjectInfo object = this.selected;
2648             selectedName = CopyString(object.name);
2649             if(!selectedName)
2650             {
2651                ObjectInfo check;
2652                for(check = this.oClass.instances.first; check; check = check.next)
2653                {
2654                   if(check == object)
2655                      break;
2656                   selectedPos++;
2657                }
2658             }
2659          }
2660          else
2661             selectedPos = -1;
2662       }
2663
2664       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
2665
2666       FindCtx_Terminate();
2667       FindParams_Terminate();
2668
2669       SetGlobalData(&globalData);
2670       SetGlobalContext(globalContext);
2671       SetExcludedSymbols(&excludedSymbols);
2672       SetTopContext(globalContext);
2673       SetCurrentContext(globalContext);
2674       SetDefines(&defines);
2675       SetImports(&imports);
2676       SetCurrentNameSpace(null);
2677
2678       /*
2679       sprintf(command, "C:\\Program Files\\Microsoft Visual Studio\\VC98\\Bin\\cl "
2680          "/nologo /D \"MSC\" /D \"WIN32\" /D \"NDEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" "
2681          "/I \"C:\\Program Files\\Microsoft Visual Studio\\VC98\\Include\" "
2682          "/I T:\\ecere\\include /E %s", argv[1]);
2683       */
2684
2685       /*
2686       ChangeWorkingDir("e:\\ec");
2687       sprintf(command, "gcc -x c -E -");
2688       fileInput = DualPipeOpen({ output = true, input = true }, command);
2689       SetFileInput(fileInput);
2690       {
2691          for(;;)
2692          {
2693             byte buffer[8192];
2694             uint count = editFile.Read(buffer, 1, sizeof(buffer));
2695             if(count)
2696                fileInput.Write(buffer, 1, count);
2697             else
2698                break;
2699          }
2700          delete editFile;
2701          fileInput.CloseOutput();
2702       }
2703       */
2704
2705       // TOCHECK: COULDN'T WE CALL FreeParser here?
2706       // Clear everything
2707       FreeType(this.functionType);
2708       FreeType(this.instanceType);
2709       this.functionType = null;
2710       this.instanceType = null;
2711
2712       // Select nothing
2713       sheet.SelectObject(null);
2714
2715       designer.Reset();
2716
2717       selected = null;
2718
2719       // We don't want the designer to be notified of selection when deleting rows...
2720       backDesigner = designer;
2721       designer = null;
2722
2723       if(this.oClass)
2724       {
2725          ObjectInfo _class, next;
2726
2727          for(_class = classes.first; _class; _class = next)
2728          {
2729             ObjectInfo object;
2730
2731             next = _class.next;
2732
2733             for(;object = _class.instances.first;)
2734             {
2735                if(object.instance)
2736                {
2737                   Designer::DestroyObject(object.instance);
2738                   delete object.instance;
2739                }
2740                sheet.DeleteObject(object);
2741                delete object.name;
2742                _class.instances.Delete(object);
2743             }
2744             if(_class.instance)
2745             {
2746                Designer::DestroyObject(_class.instance);
2747                delete _class.instance;
2748             }
2749             sheet.DeleteObject(_class);
2750             delete _class.name;
2751             classes.Delete(_class);
2752          }
2753          this.oClass = null;
2754       }
2755
2756       {
2757          Class windowClass = eSystem_FindClass(this.privateModule, "ecere::gui::Window");
2758          if(windowClass && windowClass.data)
2759             UnapplySkin(windowClass);
2760       }
2761
2762       designer = backDesigner;
2763
2764       SetEchoOn(true);
2765       fileInput = editFile = EditBoxStream { editBox = editBox };
2766       SetFileInput(fileInput);
2767
2768       if(ast)
2769       {
2770          FreeASTTree(ast);
2771          ast = null;
2772          //SetAST(null);
2773       }
2774       defines.Free(FreeModuleDefine);
2775       imports.Free(FreeModuleImport);
2776
2777       FreeContext(this.globalContext);
2778       FreeExcludedSymbols(this.excludedSymbols);
2779
2780       FreeIncludeFiles();
2781       FreeGlobalData(&this.globalData);
2782
2783       if(this.privateModule)
2784       {
2785          FreeTypeData(this.privateModule);
2786          delete this.privateModule;
2787       }
2788
2789 #ifdef _TIMINGS
2790       startTime = GetTime();
2791       printf("Cleaning up took %.3f seconds\n", startTime - parseCodeStart);
2792
2793       printf("classes.count: %d\n", globalContext.classes.count);
2794 #endif
2795
2796       if(ide.workspace)
2797       {
2798          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
2799          SetTargetBits(ide.workspace.bitDepth ? ide.workspace.bitDepth : GetHostBits());
2800          delete compiler;
2801       }
2802       this.privateModule = __ecere_COM_Initialize(false | ((GetTargetBits() == sizeof(uintptr) *8) ? 0 : GetTargetBits() == 64 ? 2 : 4), 1, null);
2803
2804       SetPrivateModule(privateModule);
2805
2806       {
2807          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint"), type = ProcessTypeString("unsigned int", false) });
2808          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint64"), type = ProcessTypeString("unsigned int64", false) });
2809          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint32"), type = ProcessTypeString("unsigned int", false) });
2810          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint16"), type = ProcessTypeString("unsigned short", false) });
2811          globalContext.types.Add((BTNode)Symbol { string = CopyString("byte"), type = ProcessTypeString("unsigned char", false) });
2812       }
2813
2814       fileName = this.fileName;
2815       project = null;
2816       if(ide.workspace && ide.workspace.projects && fileName)
2817       {
2818          for(p : ide.workspace.projects)
2819          {
2820             char path[MAX_LOCATION];
2821             ProjectNode pn;
2822             MakePathRelative(fileName, p.topNode.path, path);
2823             MakeSlashPath(path);
2824
2825             pn = p.topNode.FindWithPath(path, false);
2826             if(pn)
2827             {
2828                project = p;
2829                break;
2830             }
2831          }
2832       }
2833       if(!project)
2834          project = ide.project;
2835
2836       GetWorkingDir(oldWorkDir, MAX_LOCATION);
2837       if(project)
2838          ChangeWorkingDir(project.topNode.path);
2839
2840       SetSomeSourceFileStack(fileName ? fileName : "", 0); //strcpy(sourceFileStack[0], fileName ? fileName : "");
2841
2842       GetLastDirectory(fileName, mainModuleName);
2843       GetExtension(mainModuleName, extension);
2844
2845       SetBuildingEcereCom(false);
2846       SetBuildingEcereComModule(false);
2847
2848       // TODO: Get symbolsDir from project settings instead...
2849       if(ide.projectView)
2850       {
2851          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
2852          ProjectConfig config = project.config;
2853          int bitDepth = ide.workspace.bitDepth;
2854          DirExpression objDir = project.GetObjDir(compiler, config, bitDepth);
2855          SetSymbolsDir(objDir.dir);
2856          ide.SetPath(true, compiler, config, bitDepth);
2857
2858          delete objDir;
2859          delete compiler;
2860          // SetIncludeDirs(ide.projectView.project.config.includeDirs);
2861          // SetSysIncludeDirs(ide.ideSettings.systemDirs[includes]);
2862       }
2863       else
2864       {
2865          switch(GetRuntimePlatform())
2866          {
2867             case win32: SetSymbolsDir("obj/debug.win32"); break;
2868             case tux:   SetSymbolsDir("obj/debug.linux"); break;
2869             case apple: SetSymbolsDir("obj/debug.apple"); break;
2870          }
2871          SetIncludeDirs(null);
2872          SetSysIncludeDirs(null);
2873       }
2874
2875       {
2876          if(ide.projectView && ide.projectView.IsModuleInProject(this.fileName))
2877          {
2878             // TODO FIX for configless project
2879             if(ide.project.config && ide.project.config.options && ide.project.config.options.preprocessorDefinitions)
2880             {
2881                for(item : ide.project.config.options.preprocessorDefinitions)
2882                {
2883                   if(!strcmp(item, "BUILDING_ECERE_COM"))
2884                   {
2885                      SetBuildingEcereCom(true);
2886                      break;
2887                   }
2888                }
2889             }
2890          }
2891
2892          if(!(strcmpi(mainModuleName, "instance.ec") && strcmpi(mainModuleName, "BinaryTree.ec") &&
2893             strcmpi(mainModuleName, "dataTypes.ec") && strcmpi(mainModuleName, "OldList.ec") &&
2894             strcmpi(mainModuleName, "String.ec") && strcmpi(mainModuleName, "BTNode.ec") &&
2895             strcmpi(mainModuleName, "Array.ec") && strcmpi(mainModuleName, "AVLTree.ec") &&
2896             strcmpi(mainModuleName, "BuiltInContainer.ec") && strcmpi(mainModuleName, "Container.ec") &&
2897             strcmpi(mainModuleName, "CustomAVLTree.ec") && strcmpi(mainModuleName, "LinkList.ec") &&
2898             strcmpi(mainModuleName, "List.ec") && strcmpi(mainModuleName, "Map.ec") &&
2899             strcmpi(mainModuleName, "Mutex.ec")))
2900          {
2901             SetBuildingEcereComModule(true);
2902          }
2903
2904          // Predeclare all classes
2905          {
2906             char symFile[MAX_FILENAME];
2907             char symLocation[MAX_LOCATION];
2908             ImportedModule module, next;
2909
2910             GetLastDirectory(fileName, symFile);
2911             ChangeExtension(symFile, "sym", symFile);
2912
2913             strcpy(symLocation, GetSymbolsDir());
2914             PathCat(symLocation, symFile);
2915
2916             // if(!GetEcereImported() && !GetBuildingEcereCom())
2917             if(!strcmp(extension, "ec") || !strcmp(extension, "eh"))
2918             {
2919 #ifdef _TIMINGS
2920                startTime = GetTime();
2921 #endif
2922                eModule_LoadStrict(privateModule, "ecereCOM", privateAccess);
2923 #ifdef _TIMINGS
2924                printf("Loading ecereCOM took %.3f seconds\n", GetTime() - startTime);
2925 #endif
2926             }
2927
2928 #ifdef _TIMINGS
2929             startTime = GetTime();
2930 #endif
2931             // LoadSymbols(symLocation, normalImport, true);
2932             LoadSymbols(symLocation, preDeclImport, false);
2933 #ifdef _TIMINGS
2934             printf("Loading symbols took %.3f seconds\n", GetTime() - startTime);
2935 #endif
2936
2937             for(module = defines.first; module; module = next)
2938             {
2939                next = module.next;
2940                if(module.type == moduleDefinition && strcmpi(module.name, mainModuleName))
2941                {
2942                   delete module.name;
2943                   defines.Delete(module);
2944                }
2945             }
2946          }
2947       }
2948       if(!strcmp(extension, "ec") || !strcmp(extension, "eh"))
2949       {
2950          SetDefaultDeclMode(privateAccess);
2951          SetDeclMode(privateAccess);
2952       }
2953       else
2954       {
2955          SetDefaultDeclMode(defaultAccess);
2956          SetDeclMode(defaultAccess);
2957       }
2958
2959       StripExtension(mainModuleName);
2960       module = ImportedModule { name = CopyString(mainModuleName), type = moduleDefinition };
2961       defines.AddName(module);
2962
2963    #ifdef _DEBUG
2964       // SetYydebug(true);
2965    #endif
2966       resetScanner();
2967
2968 #ifdef _TIMINGS
2969       startTime = GetTime();
2970       startFindClass = checkTypeTotalTime;
2971 #endif
2972       ParseEc();
2973 #ifdef _TIMINGS
2974       printf("ParseEc took %.3f seconds, out of which %.3f seconds were in CheckType\n", GetTime() - startTime, checkTypeTotalTime - startFindClass);
2975 #endif
2976       CheckDataRedefinitions();
2977       SetYydebug(false);
2978
2979       SetIncludeDirs(null);
2980       SetSysIncludeDirs(null);
2981
2982       delete editFile;
2983       fileInput = null;
2984       SetFileInput(null);
2985
2986       if(GetAST())
2987       {
2988          ast = GetAST();
2989
2990 #ifdef _TIMINGS
2991          startTime = GetTime();
2992 #endif
2993          PrePreProcessClassDefinitions();
2994          ComputeModuleClasses(privateModule);
2995          PreProcessClassDefinitions();
2996          ProcessClassDefinitions();
2997 #ifdef _TIMINGS
2998          printf("Initial Passes took %.3f seconds\n", GetTime() - startTime);
2999          startTime = GetTime();
3000 #endif
3001
3002          ComputeDataTypes();
3003 #ifdef _TIMINGS
3004          printf("ComputeDataTypes took %.3f seconds\n", GetTime() - startTime);
3005          startTime = GetTime();
3006 #endif
3007          ProcessInstantiations();
3008 #ifdef _TIMINGS
3009          printf("ProcessInstantiations took %.3f seconds\n", GetTime() - startTime);
3010 #endif
3011
3012          if(!strcmp(extension, "ec") || !strcmp(extension, "eh"))
3013          {
3014             Class windowClass = eSystem_FindClass(this.privateModule, "ecere::gui::Window");
3015             if(!windowClass || windowClass.internalDecl)
3016             {
3017 #ifdef _TIMINGS
3018                startTime = GetTime();
3019 #endif
3020                // *** COMMENTED THIS OUT DUE TO ecereCOM issues
3021                // eModule_Load(this.privateModule.application.allModules.first ? this.privateModule.application.allModules.first : this.privateModule, "ecere", privateAccess);
3022                eModule_Load(this.privateModule, "ecere", privateAccess);
3023 #ifdef _TIMINGS
3024                printf("Loading ecere.dll took %.3f seconds\n", GetTime() - startTime);
3025 #endif
3026             }
3027             windowClass = eSystem_FindClass(this.privateModule, "ecere::gui::Window");
3028
3029             if(windowClass && windowClass.data)
3030                ApplySkin(windowClass, app.currentSkin.name, null);
3031          }
3032
3033 #ifdef _TIMINGS
3034          startTime = GetTime();
3035 #endif
3036          for(external = ast->first; external; external = external.next)
3037          {
3038             if(external.type == classExternal)
3039             {
3040                ClassDefinition _class = external._class;
3041                if(_class.baseSpecs && _class.baseSpecs->first && ((Specifier)_class.baseSpecs->first).type == nameSpecifier ) // classSpecifier
3042                {
3043                   Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)_class.baseSpecs->first).name);
3044                   if(regClass)
3045                   {
3046                      if(eClass_GetDesigner(regClass) && !GetBuildingEcereComModule())
3047                      {
3048                         Instance instance = eInstance_New(regClass);
3049                         ObjectInfo classObject
3050                         {
3051                            name = CopyString(_class._class.name);
3052                            instance = instance;
3053                            classDefinition = _class;
3054                            oClass = classObject;
3055                         };
3056                         Symbol symbol;
3057                         classes.Add(classObject);
3058
3059                         incref instance;
3060
3061                         // Moved this at bottom so that the file dialog doesn't show up in eCom
3062                         designer.CreateObject(instance, classObject, true, null);
3063                         sheet.AddObject(classObject, classObject.name ? classObject.name : _class._class.name, typeClass, false);
3064
3065                         if(_class.definitions)
3066                         {
3067                            ClassDef def;
3068                            ObjectInfo object;
3069                            for(def = _class.definitions->first; def; def = def.next)
3070                            {
3071                               switch(def.type)
3072                               {
3073                                  case defaultPropertiesClassDef:
3074                                  {
3075                                     MemberInit propDef;
3076                                     for(propDef = def.defProperties->first; propDef; propDef = propDef.next)
3077                                     {
3078                                        Identifier id = propDef.identifiers->first;
3079                                        if(id)
3080                                        {
3081                                           Property prop = eClass_FindProperty(regClass, id.string, this.privateModule);
3082                                           if(prop)
3083                                           {
3084                                              Class propertyClass = prop.dataTypeClass;
3085                                              if(!propertyClass)
3086                                                 propertyClass = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
3087                                              if(prop.compiled && prop.Set && prop.Get && propertyClass && propDef.initializer && propDef.initializer.type == expInitializer && propDef.initializer.exp)
3088                                              {
3089                                                 Expression computed;
3090                                                 bool variable = true;
3091
3092                                                 FreeType(propDef.initializer.exp.destType);
3093                                                 propDef.initializer.exp.destType = MkClassType(propertyClass.name);
3094                                                 ProcessExpressionType(propDef.initializer.exp);
3095
3096                                                 computed = CopyExpression(propDef.initializer.exp);
3097                                                 ComputeExpression(computed);
3098                                                 if(computed.isConstant)
3099                                                 {
3100                                                    switch(computed.type)
3101                                                    {
3102                                                       case stringExp:
3103                                                          if(propertyClass.dataTypeString && strstr(propertyClass.dataTypeString, "char *"))
3104                                                          {
3105                                                             String temp = new char[strlen(computed.string)+1];
3106                                                             ReadString(temp, computed.string);
3107                                                             ((void (*)(void *, void *))(void *)prop.Set)(instance, temp);
3108                                                             delete temp;
3109
3110                                                             if(!propDef.initializer.exp.intlString)
3111                                                             {
3112                                                                Map<String, bool> i18nStrings = classObject.i18nStrings;
3113                                                                if(!i18nStrings)
3114                                                                   classObject.i18nStrings = i18nStrings = { };
3115                                                                i18nStrings[prop.name] = false;
3116                                                             }
3117                                                             variable = false;
3118                                                          }
3119                                                          break;
3120                                                       case instanceExp:
3121                                                          if((propertyClass.type == structClass || propertyClass.type == noHeadClass || propertyClass.type == normalClass) && !id.next)
3122                                                          {
3123                                                             if(prop.Set)
3124                                                             {
3125                                                                if(computed.instance._class && computed.instance._class.symbol &&
3126                                                                   computed.instance._class.symbol.registered &&
3127                                                                   eClass_IsDerived(computed.instance._class.symbol.registered, propertyClass))
3128                                                                {
3129                                                                   ((void (*)(void *, void *))(void *)prop.Set)(instance, computed.instance.data);
3130
3131                                                                   // This was saved in the control and shouldn't be freed by FreeExpression...
3132                                                                   // (Not doing this anymore, incrementing refCount in pass15 instead)
3133                                                                   /*if(propertyClass.type == normalClass)
3134                                                                      computed.instance.data = null;*/
3135                                                                }
3136                                                             }
3137                                                             variable = false;
3138                                                          }
3139                                                          break;
3140                                                       case constantExp:
3141                                                       {
3142                                                          Operand value = GetOperand(computed);
3143                                                          DataValue valueData;
3144                                                          valueData.i64 = value.i64;
3145                                                          SetProperty(prop, instance, valueData);
3146                                                          variable = false;
3147                                                          break;
3148                                                       }
3149                                                    }
3150                                                 }
3151                                                 if(variable)
3152                                                    propDef.variable = true;
3153                                                 FreeExpression(computed);
3154                                              }
3155                                           }
3156                                           else
3157                                           {
3158                                              Method method = eClass_FindMethod(regClass, id.string, this.privateModule);
3159                                              if(method && method.type == virtualMethod && propDef.initializer && propDef.initializer.type == expInitializer &&
3160                                                 propDef.initializer.exp && propDef.initializer.exp.type == identifierExp)
3161                                              {
3162                                                 ClassDef def;
3163                                                 // Maintain a list in FunctionDefinition of who is attached to it
3164                                                 for(def = _class.definitions->first; def; def = def.next)
3165                                                 {
3166                                                    if(def.type == functionClassDef)
3167                                                    {
3168                                                       ClassFunction function = def.function;
3169                                                       if(!strcmp(function.declarator.symbol.string, propDef.initializer.exp.identifier.string))
3170                                                       {
3171                                                          function.attached.Add(OldLink { data = method });
3172                                                       }
3173                                                    }
3174                                                 }
3175                                              }
3176                                           }
3177                                        }
3178                                     }
3179                                     break;
3180                                  }
3181                                  case declarationClassDef:
3182                                  {
3183                                     Declaration decl = def.decl;
3184                                     switch(decl.type)
3185                                     {
3186                                        case instDeclaration:
3187                                        {
3188                                           Instantiation inst = decl.inst;
3189                                           Class instClass = eSystem_FindClass(this.privateModule, inst._class.name);
3190                                           if(instClass && eClass_GetDesigner(instClass))
3191                                           {
3192                                              Instance control = eInstance_New(instClass);
3193                                              incref control;
3194
3195                                              object = ObjectInfo
3196                                              {
3197                                                 oClass = classObject;
3198                                                 instance = control;
3199                                                 instCode = inst;
3200                                              };
3201                                              classObject.instances.Add(object);
3202                                              if(inst.exp)
3203                                                 // TOCHECK: Why is this needed now?
3204                                                 object.name = CopyString((inst.exp.type == memberExp) ? inst.exp.member.member.string : inst.exp.identifier.string);
3205                                              def.object = object;
3206
3207                                              // if(object.name) { symbol = eList_Add(&curContext.symbols, sizeof(Symbol)); symbol.string = object.name; symbol.type = MkClassType(instClass.name); }
3208
3209                                              designer.CreateObject(control, object, false, classObject.instance);
3210                                              sheet.AddObject(object, object.name ? object.name : inst._class.name, typeData, false);
3211                                           }
3212                                           break;
3213                                        }
3214                                     }
3215                                     break;
3216                                  }
3217                               }
3218                            }
3219
3220                            // Second pass, process instantiation members
3221                            object = null;
3222                            for(def = _class.definitions->first; def; def = def.next)
3223                            {
3224                               switch(def.type)
3225                               {
3226                                  case declarationClassDef:
3227                                  {
3228                                     Declaration decl = def.decl;
3229                                     switch(decl.type)
3230                                     {
3231                                        case instDeclaration:
3232                                        {
3233                                           Instantiation inst = decl.inst;
3234                                           Class instClass = eSystem_FindClass(this.privateModule, inst._class.name);
3235                                           if(instClass && eClass_GetDesigner(instClass))
3236                                           {
3237                                              Instance control;
3238                                              object = object ? object.next : classObject.instances.first;
3239                                              control = object.instance;
3240
3241                                              if(inst.members)
3242                                              {
3243                                                 MembersInit members;
3244                                                 for(members = inst.members->first; members; members = members.next)
3245                                                 {
3246                                                    switch(members.type)
3247                                                    {
3248                                                       case dataMembersInit:
3249                                                       {
3250                                                          if(members.dataMembers)
3251                                                          {
3252                                                             MemberInit member;
3253                                                             DataMember curMember = null;
3254                                                             Class curClass = null;
3255                                                             DataMember subMemberStack[256];
3256                                                             int subMemberStackPos = 0;
3257
3258                                                             for(member = members.dataMembers->first; member; member = member.next)
3259                                                             {
3260                                                                bool found = false;
3261                                                                Identifier ident = member.identifiers ? member.identifiers->first : null;
3262                                                                if(ident)
3263                                                                {
3264                                                                   DataMember _subMemberStack[256];
3265                                                                   int _subMemberStackPos = 0;
3266                                                                   DataMember thisMember = (DataMember)eClass_FindDataMember(instClass, ident.string, privateModule, _subMemberStack, &_subMemberStackPos);
3267
3268                                                                   if(!thisMember)
3269                                                                   {
3270                                                                      thisMember = (DataMember)eClass_FindProperty(instClass, ident.string, privateModule);
3271                                                                   }
3272                                                                   if(thisMember && thisMember.memberAccess == publicAccess)
3273                                                                   {
3274                                                                      curMember = thisMember;
3275                                                                      curClass = curMember._class;
3276                                                                      memcpy(subMemberStack, _subMemberStack, sizeof(DataMember) * _subMemberStackPos);
3277                                                                      subMemberStackPos = _subMemberStackPos;
3278                                                                      found = true;
3279                                                                   }
3280                                                                }
3281                                                                else
3282                                                                {
3283                                                                   eClass_FindNextMember(instClass, &curClass, (DataMember *)&curMember, subMemberStack, &subMemberStackPos);
3284                                                                   if(curMember) found = true;
3285                                                                }
3286                                                                if(found && curMember.isProperty)
3287                                                                {
3288                                                                   Property prop = (Property) curMember;
3289                                                                   Class propertyClass = prop.dataTypeClass;
3290                                                                   bool variable = false;
3291                                                                   if(!propertyClass)
3292                                                                      propertyClass = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
3293
3294                                                                   if(prop.compiled && prop.Set && prop.Get && propertyClass && member.initializer && member.initializer.type == expInitializer && member.initializer.exp)
3295                                                                   {
3296                                                                      FreeType(member.initializer.exp.destType);
3297                                                                      member.initializer.exp.destType = MkClassType(propertyClass.name);
3298                                                                      if(propertyClass)
3299                                                                      {
3300                                                                         Expression computed;
3301
3302                                                                         ProcessExpressionType(member.initializer.exp);
3303
3304                                                                         computed = CopyExpression(member.initializer.exp);
3305                                                                         if(computed)
3306                                                                         {
3307                                                                            bool isClass = propertyClass.type == structClass || propertyClass.type == normalClass || propertyClass.type == noHeadClass;
3308                                                                            {
3309 #ifdef _DEBUG
3310                                                                               /*char debugExpString[4096];
3311                                                                               debugExpString[0] = '\0';
3312                                                                               PrintExpression(member.initializer.exp, debugExpString);*/
3313 #endif
3314                                                                               ComputeExpression(computed);
3315
3316                                                                               switch(computed.type)
3317                                                                               {
3318                                                                                  case instanceExp:
3319                                                                                     if(isClass && computed.isConstant && computed.instance.data)
3320                                                                                     {
3321                                                                                        if(computed.instance._class && computed.instance._class.symbol &&
3322                                                                                           computed.instance._class.symbol.registered &&
3323                                                                                           eClass_IsDerived(computed.instance._class.symbol.registered, propertyClass))
3324                                                                                        {
3325                                                                                           ((void (*)(void *, void *))(void *)prop.Set)(control, computed.instance.data);
3326
3327                                                                                           // This was saved in the control and shouldn't be freed by FreeExpression...
3328                                                                                           // (Not doing this anymore, incrementing refCount in pass15 instead)
3329                                                                                           /*if(propertyClass.type == normalClass)
3330                                                                                              computed.instance.data = null;*/
3331                                                                                        }
3332                                                                                        variable = false;
3333                                                                                     }
3334                                                                                     break;
3335                                                                                  case identifierExp:
3336                                                                                     if(isClass && eClass_GetDesigner(propertyClass))
3337                                                                                     //if(prop.Set)
3338                                                                                     {
3339                                                                                        char * name = computed.identifier.string;
3340                                                                                        if(!strcmp(name, "this"))
3341                                                                                        {
3342                                                                                           if(prop.Set)
3343                                                                                              ((void (*)(void *, void *))(void *)prop.Set)(control, instance);
3344                                                                                           variable = false;
3345                                                                                        }
3346                                                                                        else
3347                                                                                        {
3348                                                                                           ObjectInfo check;
3349                                                                                           for(check = classObject.instances.first; check; check = check.next)
3350                                                                                              if(check.name && !strcmp(name, check.name))
3351                                                                                              {
3352                                                                                                 if(prop.Set)
3353                                                                                                    ((void (*)(void *, void *))(void *)prop.Set)(control, check.instance);
3354                                                                                                 variable = false;
3355                                                                                                 break;
3356                                                                                              }
3357                                                                                        }
3358                                                                                     }
3359                                                                                     break;
3360                                                                                  case memberExp:
3361                                                                                     if(isClass)
3362                                                                                     {
3363                                                                                        if(computed.member.exp.type == identifierExp)
3364                                                                                        {
3365                                                                                           char * name = computed.member.exp.identifier.string;
3366                                                                                           ObjectInfo check;
3367                                                                                           if(!strcmp(name, "this"))
3368                                                                                           {
3369                                                                                              char * name = computed.member.member.string;
3370                                                                                              ObjectInfo check;
3371                                                                                              for(check = classObject.instances.first; check; check = check.next)
3372                                                                                                 if(check.name && !strcmp(name, check.name))
3373                                                                                                 {
3374                                                                                                    if(prop.Set)
3375                                                                                                       ((void (*)(void *, void *))(void *)prop.Set)(control, check.instance);
3376                                                                                                    variable = false;
3377                                                                                                    break;
3378                                                                                                 }
3379                                                                                           }
3380                                                                                           else
3381                                                                                           {
3382                                                                                              for(check = classObject.instances.first; check; check = check.next)
3383                                                                                              {
3384                                                                                                 if(check.name && !strcmp(name, check.name))
3385                                                                                                 {
3386                                                                                                    Property getProperty = eClass_FindProperty(check.instance._class, computed.member.member.string, this.privateModule);
3387                                                                                                    if(getProperty)
3388                                                                                                    {
3389                                                                                                       DataValue value { };
3390                                                                                                       GetProperty(getProperty, check.instance, &value);
3391                                                                                                       SetProperty(prop, control, value);
3392                                                                                                       variable = false;
3393                                                                                                    }
3394                                                                                                    break;
3395                                                                                                 }
3396                                                                                              }
3397                                                                                           }
3398                                                                                        }
3399                                                                                     }
3400                                                                                     break;
3401                                                                                  case stringExp:
3402                                                                                     if(propertyClass.dataTypeString && strstr(propertyClass.dataTypeString, "char *"))
3403                                                                                     {
3404                                                                                        String temp = new char[strlen(computed.string)+1];
3405                                                                                        ReadString(temp, computed.string);
3406                                                                                        ((void (*)(void *, void *))(void *)prop.Set)(control, temp);
3407                                                                                        delete temp;
3408
3409                                                                                        if(!member.initializer.exp.intlString)
3410                                                                                        {
3411                                                                                           Map<String, bool> i18nStrings = object.i18nStrings;
3412                                                                                           if(!i18nStrings)
3413                                                                                              object.i18nStrings = i18nStrings = { };
3414                                                                                           i18nStrings[prop.name] = false;
3415                                                                                        }
3416
3417                                                                                        variable = false;
3418                                                                                     }
3419                                                                                     break;
3420                                                                                  case constantExp:
3421                                                                                     if(!isClass && computed.isConstant)
3422                                                                                     {
3423                                                                                        if(!strcmp(propertyClass.dataTypeString, "float"))
3424                                                                                           ((void (*)(void *, float))(void *)prop.Set)(control, (float)strtod(computed.constant, null));
3425                                                                                        else if(!strcmp(propertyClass.dataTypeString, "double"))
3426                                                                                           ((void (*)(void *, double))(void *)prop.Set)(control, strtod(computed.constant, null));
3427                                                                                        else
3428                                                                                           ((void (*)(void *, int))(void *)prop.Set)(control, strtol(computed.constant, null, 0));
3429                                                                                        variable = false;
3430                                                                                     }
3431                                                                                     break;
3432                                                                               }
3433                                                                            }
3434                                                                         }
3435                                                                         FreeExpression(computed);
3436                                                                      }
3437                                                                   }
3438                                                                   if(variable)
3439                                                                      member.variable = true;
3440                                                                }
3441                                                                else if(ident && member.initializer && member.initializer.type == expInitializer && member.initializer.exp &&
3442                                                                   member.initializer.exp.type == memberExp) // identifierExp
3443                                                                {
3444                                                                   Method method = eClass_FindMethod(instClass, ident.string, this.privateModule);
3445                                                                   if(method && method.type == virtualMethod)
3446                                                                   {
3447                                                                      ClassDef def;
3448                                                                      // Maintain a list in FunctionDefinition of who is attached to it
3449                                                                      for(def = _class.definitions->first; def; def = def.next)
3450                                                                      {
3451                                                                         if(def.type == functionClassDef)
3452                                                                         {
3453                                                                            ClassFunction function = def.function;
3454                                                                            Identifier id = (member.initializer.exp.type == memberExp) ? member.initializer.exp.member.member : member.initializer.exp.identifier;
3455                                                                            if(function.declarator && !strcmp(function.declarator.symbol.string, id.string))
3456                                                                            {
3457                                                                               function.attached.Add(OldLink { data = method });
3458                                                                               // Reference this particular instance?
3459                                                                            }
3460                                                                         }
3461                                                                      }
3462                                                                   }
3463                                                                }
3464                                                                id++;
3465                                                             }
3466                                                          }
3467                                                          break;
3468                                                       }
3469                                                    }
3470                                                 }
3471                                              }
3472
3473                                              designer.PostCreateObject(object.instance, object, false, classObject.instance);
3474                                              break;
3475                                           }
3476                                        }
3477                                        break;
3478                                     }
3479                                  }
3480                               }
3481                            }
3482                         }
3483
3484                         //designer.CreateObject(instance, classObject, true, null);
3485                         //sheet.AddObject(classObject, classObject.name ? classObject.name : _class._class.name, classType, false);
3486
3487                         designer.PostCreateObject(instance, classObject, true, null);
3488
3489                         //instance.state = Hidden;
3490                         //instance.Create();
3491                         //instance.SetState(Normal, true, 0);
3492                      }
3493                   }
3494                }
3495             }
3496          }
3497
3498          SetAST(null);
3499 #ifdef _TIMINGS
3500          printf("Class/Instance Processing took %.3f seconds\n", GetTime() - startTime);
3501 #endif
3502       }
3503
3504       // Restore Selection
3505       if(selectedClassName)
3506       {
3507          ObjectInfo oClass;
3508          for(oClass = classes.first; oClass; oClass = oClass.next)
3509          {
3510             if(!strcmp(oClass.name, selectedClassName))
3511             {
3512                this.oClass = oClass;
3513                break;
3514             }
3515          }
3516          delete selectedClassName;
3517       }
3518       if(this.oClass)
3519       {
3520          if(selectedName)
3521          {
3522             ObjectInfo check;
3523             int pos = 0;
3524
3525             for(check = this.oClass.instances.first; check; check = check.next)
3526             {
3527                if(check.name && !strcmp(check.name, selectedName))
3528                {
3529                   this.selected = check;
3530                   break;
3531                }
3532             }
3533             if(!check)
3534             {
3535                if(this.oClass.instances.first)
3536                   this.selected = this.oClass.instances.first;
3537                else
3538                   this.selected = this.oClass;
3539             }
3540          }
3541          else if(selectedPos == -1 || !this.oClass.instances.count)
3542             this.selected = this.oClass;
3543          else
3544          {
3545             ObjectInfo check;
3546             int pos = 0;
3547
3548             if(selectedPos > this.oClass.instances.count)
3549                selectedPos = 0;
3550             for(check = this.oClass.instances.first; check; check = check.next)
3551             {
3552                if(selectedPos == pos++)
3553                {
3554                   this.selected = check;
3555                   break;
3556                }
3557             }
3558          }
3559       }
3560       else
3561       {
3562          this.oClass = classes.first;
3563          this.selected = (this.oClass && this.oClass.instances.first) ? this.oClass.instances.first : this.oClass;
3564       }
3565       delete selectedName;
3566       SetSymbolsDir(null);
3567
3568       if(sheet.codeEditor == this)
3569          sheet.SelectObject(selected);
3570       Update(null);
3571
3572       codeModified = false;
3573
3574       // TESTING THIS TO NOT GET EMPTY PARAMETERS
3575       if(paramsShown)
3576       {
3577          InvokeParameters(false, false, false);
3578       }
3579
3580       editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
3581
3582       reentrant = false;
3583
3584       updatingCode--;
3585
3586       ChangeWorkingDir(oldWorkDir);
3587 #ifdef _TIMINGS
3588       printf("Total FindClass time is %.3f seconds, out of which %.3f is in Ignore NS\n\n", findClassTotalTime, findClassIgnoreNSTotalTime);
3589       printf("Total CheckType time is %.3f seconds\n\n", checkTypeTotalTime);
3590       printf("Total MkExternalImport time is %.3f seconds\n\n", externalImportTotalTime);
3591       printf("Total FindSymbol time is %.3f seconds\n\n", findSymbolTotalTime);
3592       // printf("Total Class Members Find time is %.3f seconds\n\n", GetClassFindTime());
3593
3594       printf("Whole ParseCode function took %.3f seconds\n\n", GetTime() - parseCodeStart);
3595 #endif
3596       if(inUseDebug && ide.projectView)
3597          ide.debugger.EvaluateWatches();
3598
3599       delete pathBackup;
3600    }
3601
3602    void UpdateInstanceCodeClass(Class _class, ObjectInfo object, EditBoxStream f, Instance test, bool * prev, bool * lastIsMethod, DataMember * curMember, Class * curClass)
3603    {
3604       Property propIt;
3605       Window control = (Window)object.instance;
3606       ObjectInfo classObject = object.oClass;
3607
3608       if(_class.base && _class.base.type != systemClass) UpdateInstanceCodeClass(_class.base, object, f, test, prev, lastIsMethod, curMember, curClass);
3609
3610       if(!strcmp(_class.name, "DesignerBase")) return;
3611
3612       for(propIt = _class.membersAndProperties.first; propIt; propIt = propIt.next)
3613       {
3614          Property prop = eClass_FindProperty(object.instance._class, propIt.name, privateModule);
3615          if(prop && prop.isProperty && !prop.conversion && eClass_FindProperty(object.instance._class, prop.name, privateModule))
3616          {
3617             if(prop.Set && prop.Get && prop.dataTypeString && strcmp(prop.name, "name") && !Code_IsPropertyDisabled(object, prop.name) &&
3618                prop.compiled && (!prop.IsSet || prop.IsSet(control)))
3619             {
3620                Class dataType = prop.dataTypeClass;
3621                if(!dataType)
3622                   dataType = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
3623
3624                if(dataType)
3625                {
3626                   if(dataType.type == structClass)
3627                   {
3628                      void * dataForm = new0 byte[dataType.structSize];
3629                      void * dataTest = new0 byte[dataType.structSize];
3630
3631                      ((void (*)(void *, void *))(void *)prop.Get)(control, dataForm);
3632                      ((void (*)(void *, void *))(void *)prop.Get)(test, dataTest);
3633
3634                      if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
3635                      {
3636                         char tempString[1024] = "";
3637                         char * string = "";
3638                         bool needClass = true;
3639                         if(*prev)
3640                            f.Printf(", ");
3641
3642                         ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
3643
3644                         string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
3645
3646                         eClass_FindNextMember(_class, curClass, curMember, null, null);
3647                         if(*curMember != (DataMember)prop)
3648                            f.Printf("%s = ", prop.name);
3649
3650                         *curMember = (DataMember)prop;
3651                         *curClass = curMember->_class;
3652
3653                         if(needClass)
3654                            f.Printf("%c %s %c", /*dataType.name, */OpenBracket, string, CloseBracket);
3655                         else
3656                            f.Printf("%s", string);
3657                         *prev = true;
3658                      }
3659
3660                      delete dataForm;
3661                      delete dataTest;
3662                   }
3663                   else if(dataType.type == normalClass || dataType.type == noHeadClass)
3664                   {
3665                      void * dataForm, * dataTest;
3666                      bool isEditBoxContents = false;
3667                      bool freeDataForm = false, freeDataTest = false;
3668
3669                      // Because contents property is broken for mutiline EditBox at the moment
3670                      if(!strcmp(prop.name, "contents") && !strcmp(prop._class.name, "EditBox"))
3671                         isEditBoxContents = true;
3672
3673                      if(isEditBoxContents && ((EditBox)control).multiLine)
3674                      {
3675                         dataForm = ((EditBox)control).multiLineContents;
3676                         freeDataForm = true;
3677                      }
3678                      else
3679                         dataForm = ((void *(*)(void *))(void *)prop.Get)(control);
3680                      if(isEditBoxContents && ((EditBox)test).multiLine)
3681                      {
3682                         dataTest = ((EditBox)test).multiLineContents;
3683                         freeDataTest = true;
3684                      }
3685                      else
3686                         dataTest = ((void *(*)(void *))(void *)prop.Get)(test);
3687
3688                      if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
3689                      {
3690                         char tempString[1024] = "";
3691                         char * string = "";
3692                         if(*prev)
3693                            f.Printf(", ");
3694
3695                         ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
3696
3697                         eClass_FindNextMember(_class, curClass, curMember, null, null);
3698                         if(*curMember != (DataMember)prop)
3699                            f.Printf("%s = ", prop.name);
3700                         *curMember = (DataMember)prop;
3701                         *curClass = curMember->_class;
3702
3703                         if(eClass_GetDesigner(dataType))
3704                         {
3705                            if(eClass_IsDerived(classObject.instance._class, dataType) && classObject.instance == dataForm)
3706                            //if(!strcmp(classObject.instance._class.name, dataType.name) && classObject.instance == dataForm)
3707                               f.Printf("this", prop.name);
3708                            else
3709                            {
3710                               //ObjectInfo classObject;
3711                               //for(classObject = classes.first; classObject; classObject = classObject.next)
3712                               {
3713                                  ObjectInfo object;
3714
3715                                  for(object = classObject.instances.first; object; object = object.next)
3716                                  {
3717                                     if(!object.deleted && eClass_IsDerived(object.instance._class, dataType) && object.instance == dataForm && object.name)
3718                                     {
3719                                        f.Printf("%s", object.name);
3720                                        break;
3721                                     }
3722                                  }
3723
3724                                  if(!object)
3725                                  {
3726                                     bool needClass = true;
3727                                     string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
3728                                     f.Printf("%s", string);
3729                                  }
3730                               }
3731                            }
3732                         }
3733                         else
3734                         {
3735                            bool needClass = true;
3736                            string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
3737
3738                            if(!strcmp(dataType.dataTypeString, "char *"))
3739                            {
3740                               Map<String, bool> i18nStrings = object.i18nStrings;
3741                               bool i18n = true;
3742                               if(i18nStrings && i18nStrings.GetAtPosition(prop.name, false))
3743                                  i18n = false;
3744
3745                               f.Printf("%s\"", i18n ? "$" : "");
3746                               OutputString(f, string);
3747                               f.Puts("\"");
3748                            }
3749                            else if(needClass)
3750                               f.Printf("%c %s %c", /*dataType.name, */OpenBracket, string, CloseBracket);
3751                            else
3752                               f.Printf("%s", string);
3753                         }
3754                         *prev = true;
3755                         *lastIsMethod = false;
3756                      }
3757
3758                      if(freeDataForm) delete dataForm;
3759                      if(freeDataTest) delete dataTest;
3760                   }
3761                   else
3762                   {
3763                      DataValue dataForm, dataTest;
3764
3765                      GetProperty(prop, control, &dataForm);
3766                      GetProperty(prop, test, &dataTest);
3767
3768                      if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, &dataForm, &dataTest))
3769                      {
3770                         char * string;
3771                         char tempString[1024] = "";
3772                         SetProperty(prop, test, dataForm);
3773
3774                         if(dataType.type != bitClass)
3775                         {
3776                            bool needClass = true;
3777
3778                            if(dataType.type == enumClass)
3779                            {
3780                               NamedLink value;
3781                               Class enumClass = eSystem_FindClass(privateModule, "enum");
3782                               EnumClassData e = ACCESS_CLASSDATA(dataType, enumClass);
3783
3784                               for(value = e.values.first; value; value = value.next)
3785                               {
3786                                  if((int)value.data == dataForm.i)
3787                                  {
3788                                     string = value.name;
3789                                     break;
3790                                  }
3791                               }
3792                            }
3793                            else
3794                               string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm, tempString, null, &needClass);
3795
3796                            if(string && string[0])
3797                            {
3798                               if(*prev)
3799                                  f.Printf(", ");
3800
3801                               eClass_FindNextMember(_class, curClass, curMember, null, null);
3802                               if(*curMember != (DataMember)prop)
3803                                  f.Printf("%s = ", prop.name);
3804                               *curMember = (DataMember)prop;
3805                               *curClass = curMember->_class;
3806
3807                               if(!strcmp(dataType.dataTypeString, "float") && strchr(string, '.'))
3808                                  f.Printf("%sf", string);
3809                               else
3810                                  f.Printf("%s", string);
3811                               *prev = true;
3812                            }
3813                         }
3814                         else if(dataType.type == bitClass)
3815                         {
3816                            bool needClass = true;
3817
3818                            if(*prev) f.Printf(", ");
3819
3820                            eClass_FindNextMember(_class, curClass, curMember, null, null);
3821                            if(*curMember != (DataMember)prop)
3822                               f.Printf("%s = ", prop.name);
3823                            *curMember = (DataMember)prop;
3824                            *curClass = curMember->_class;
3825
3826                            string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm.ui, tempString, null, &needClass);
3827                            if(needClass)
3828                               f.Printf("%c %s %c", /*dataType.name, */OpenBracket, string, CloseBracket);
3829                            else
3830                               f.Printf("%s", string);
3831                            *prev = true;
3832                            *lastIsMethod = false;
3833                         }
3834                      }
3835                   }
3836                }
3837             }
3838          }
3839       }
3840    }
3841
3842    int UpdateInstanceCode(EditBoxStream f, int position, Class regClass, ObjectInfo object, bool * firstObject, char ** text, int * textSize, int movedFuncIdLen, int movedFuncIdPos)
3843    {
3844       Instantiation inst = object.instCode;
3845       Window control = (Window)object.instance;
3846       bool prev = false;
3847       bool methodPresent = false;
3848       Class _class;
3849       bool lastIsMethod = true;
3850       ObjectInfo classObject = object.oClass;
3851
3852       if(inst)
3853       {
3854          if(object.deleted)
3855          {
3856             // Instance removed, delete it
3857             DeleteJunkBefore(f, inst.loc.start.pos, &position);
3858
3859             f.DeleteBytes(inst.loc.end.pos - inst.loc.start.pos + 1);
3860             position = inst.loc.end.pos + 1;
3861          }
3862          else
3863          {
3864             bool multiLine = false;
3865
3866             // Change the name
3867             // Check if it's an unnamed instance
3868             if(inst.exp)
3869             {
3870                f.Seek(inst.nameLoc.start.pos - position, current);
3871                f.DeleteBytes(inst.nameLoc.end.pos - inst.nameLoc.start.pos);
3872                position = inst.nameLoc.end.pos;
3873                if(object.name)
3874                   f.Printf(object.name);
3875                else
3876                {
3877                   char ch = 0;
3878                   f.Getc(&ch);
3879                   if(isspace(ch) && ch != '\n')
3880                   {
3881                      f.Seek(-1, current);
3882                      f.DeleteBytes(1);
3883                      position ++;
3884                   }
3885                }
3886             }
3887             else
3888             {
3889                int pos = inst.loc.start.pos; // + strlen(inst._class.name);
3890                char ch;
3891                f.Seek(pos - position, current);
3892                while(f.Getc(&ch))
3893                {
3894                   if(isspace(ch))
3895                   {
3896                      f.Seek(-1, current);
3897                      break;
3898                   }
3899                   pos++;
3900                }
3901
3902                if(object.name)
3903                {
3904                   f.Puts(" ");
3905                   f.Puts(object.name);
3906                }
3907                position = pos;
3908             }
3909
3910             if((this.methodAction == actionAddMethod || this.moveAttached) && this.selected == object)
3911                methodPresent = true;
3912
3913             for(;;)
3914             {
3915                char ch = 0;
3916                if(!f.Getc(&ch))
3917                   break;
3918                position++;
3919                if(ch == OpenBracket)
3920                   break;
3921                if(ch == '\n')
3922                   multiLine = true;
3923             }
3924
3925             // TODO: Simplify this?
3926             if(methodPresent)
3927             {
3928                if(!multiLine)
3929                {
3930                   int count = 0;
3931                   int toDelete = 0;
3932                   int toAdd = 0;
3933
3934                   f.Seek(-1, current);
3935                   DeleteJunkBefore(f, position, &position);
3936                   f.Puts("\n   ");
3937                   f.Seek(1, current);
3938                   //f.Puts("\n");
3939
3940                   // Fix indentation
3941                   for(;;)
3942                   {
3943                      char ch = 0;
3944                      if(!f.Getc(&ch))
3945                         break;
3946                      position++;
3947                      if(ch == '\n') { toDelete = count; count = 0; }
3948                      else if(isspace(ch)) count++;
3949                      else
3950                      {
3951                         f.Seek(-1, current);
3952                         position--;
3953                         if(count > 6)
3954                         {
3955                            toDelete += count - 6;
3956                            count = 6;
3957                         }
3958                         else
3959                            toAdd = 6 - count;
3960                         break;
3961                      }
3962                   }
3963                   if(toDelete)
3964                   {
3965                      f.Seek(-toDelete-count, current);
3966                      f.DeleteBytes(toDelete);
3967                      f.Seek(count, current);
3968                   }
3969
3970                   DeleteJunkBefore(f, position, &position);
3971
3972                   // Removed this here as it was adding trailing spaces when adding a method
3973                   /*
3974                   if(toAdd)
3975                   {
3976                      int c;
3977                      for(c = 0; c<toAdd; c++)
3978                         f.Putc(' ');
3979                   }
3980                   */
3981                }
3982             }
3983             else
3984                methodPresent = multiLine;
3985
3986             //if(!prev) -- always false
3987                f.Printf(methodPresent ? "\n      " : " ");
3988          }
3989       }
3990       else
3991       {
3992          // Instance not there, create a brand new one
3993          DeleteJunkBefore(f, position, &position);
3994          f.Printf(*firstObject ? "\n\n" : "\n");
3995          *firstObject = false;
3996
3997          if((this.methodAction == actionAddMethod || this.moveAttached) && this.selected == object)
3998             methodPresent = true;
3999
4000          if(methodPresent)
4001          {
4002             if(object.name)
4003                f.Printf("   %s %s\n   %c\n      ", control._class.name, object.name, OpenBracket);
4004             else
4005                f.Printf("   %s\n   %c\n      ", control._class.name, OpenBracket);
4006          }
4007          else
4008          {
4009             if(object.name)
4010                f.Printf("   %s %s %c ", control._class.name, object.name, OpenBracket);
4011             else
4012                f.Printf("   %s %c ", control._class.name, OpenBracket);
4013          }
4014       }
4015
4016       if(!object.deleted)
4017       {
4018          Instance test = eInstance_New(control._class);
4019          DataMember curMember = null;
4020          Class curClass = null;
4021          incref test;
4022
4023          UpdateInstanceCodeClass(control._class, object, f, test, &prev, &lastIsMethod, &curMember, &curClass);
4024
4025          delete test;
4026
4027          // Attach Method here
4028          if((this.methodAction == actionAttachMethod || this.methodAction == actionReattachMethod) && !this.moveAttached && this.selected == object)
4029          {
4030             if(prev) f.Printf(", ");
4031             f.Printf("%s = %s", this.method.name, function.declarator.symbol.string);
4032             prev = true;
4033          }
4034       }
4035
4036       if(inst && !object.deleted)
4037       {
4038          MembersInit members;
4039          Class instClass = eSystem_FindClass(this.privateModule, inst._class.name);
4040
4041          DeleteJunkBefore(f, position, &position);
4042
4043          // Instance already there, clear out the properties
4044          for(members = inst.members ? inst.members->first : null; members; members = members.next)
4045          {
4046             if(members.type == dataMembersInit)
4047             {
4048                MemberInit member;
4049
4050                if(members.dataMembers)
4051                {
4052                   bool keptMember = false;
4053                   MemberInit lastKept = null;
4054
4055                   for(member = members.dataMembers->first; member; member = member.next)
4056                   {
4057                      Identifier ident = member.identifiers ? member.identifiers->first : null;
4058                      bool deleted = false;
4059
4060                      // For now delete if it's not a method
4061                      if(!member.variable) // && ident)
4062                      {
4063                         if(!ident || !ident.next)
4064                         {
4065                            Property prop = ident ? eClass_FindProperty(instClass, ident.string, this.privateModule) : null;
4066                            if(!ident || prop)
4067                            {
4068                               f.Seek(member.loc.start.pos - position, current);
4069                               f.DeleteBytes(member.loc.end.pos - member.loc.start.pos);
4070                               position = member.loc.end.pos;
4071                               deleted = true;
4072                            }
4073                            else
4074                            {
4075                               Method method = eClass_FindMethod(instClass, ident.string, this.privateModule);
4076                               if(method && method.type == virtualMethod && member.initializer && member.initializer.type == expInitializer && member.initializer.exp &&
4077                                  member.initializer.exp.type == memberExp /*ExpIdentifier*/)
4078                               {
4079                                  if(((this.methodAction == actionDetachMethod || this.methodAction == actionReattachMethod) && this.method == method && this.selected == object) ||
4080                                     (this.methodAction == actionDeleteMethod && !strcmp(function.declarator.symbol.string, member.initializer.exp.identifier.string)))
4081                                  {
4082                                     f.Seek(member.loc.start.pos - position, current);
4083                                     f.DeleteBytes(member.loc.end.pos - member.loc.start.pos);
4084                                     position = member.loc.end.pos;
4085                                     deleted = true;
4086                                  }
4087                               }
4088                            }
4089                         }
4090                      }
4091                      if(!deleted)
4092                      {
4093                         keptMember = true;
4094                         lastKept = member;
4095
4096                         //f.Seek(member.loc.start.pos - position, current);
4097                         //position = member.loc.start.pos;
4098                         DeleteJunkBefore(f, member.loc.start.pos, &position);
4099                         if(prev) f.Printf(", ");
4100                         else if(keptMember) f.Printf(" ");
4101                         prev = false;
4102                      }
4103                   }
4104
4105                   if(!keptMember || !members.next)
4106                   {
4107                      char ch = 0;
4108                      int count = 0;
4109
4110                      if(keptMember && lastKept != members.dataMembers->last)
4111                      {
4112                         // Delete the comma
4113                         char ch;
4114                         int count = 0;
4115                         f.Seek(-1, current);
4116                         for(;f.Getc(&ch);)
4117                         {
4118                            if(ch == ',')
4119                            {
4120                               count++;
4121                               f.Seek(-1, current);
4122                               break;
4123                            }
4124                            else if(!isspace(ch))
4125                               break;
4126                            f.Seek(-2, current);
4127                            count++;
4128                         }
4129
4130                         if(ch == ',')
4131                            f.DeleteBytes(count);
4132                      }
4133
4134                      f.Seek(members.loc.end.pos - position, current);
4135                      f.Getc(&ch);
4136
4137                      if(ch == ';')
4138                      {
4139                         f.Seek(-1, current);
4140                         f.DeleteBytes(1);
4141                         position = members.loc.end.pos + 1;
4142                      }
4143                      else
4144                      {
4145                         f.Seek(-1, current);
4146                         position = members.loc.end.pos;
4147                      }
4148
4149                      if(keptMember)
4150                      {
4151                         prev = true;
4152                         lastIsMethod = false;
4153                      }
4154                   }
4155                   else
4156                   {
4157                      DeleteJunkBefore(f, position, &position);
4158                      f.Printf(" ");
4159
4160                      if(lastKept != members.dataMembers->last)
4161                      {
4162                         // Delete the comma
4163                         char ch;
4164                         int count = 0;
4165                         f.Seek(-1, current);
4166                         for(;f.Getc(&ch);)
4167                         {
4168                            if(ch == ',')
4169                            {
4170                               count++;
4171                               f.Seek(-1, current);
4172                               break;
4173                            }
4174                            else if(!isspace(ch))
4175                               break;
4176                            f.Seek(-2, current);
4177                            count++;
4178                         }
4179
4180                         if(ch == ',')
4181                            f.DeleteBytes(count);
4182                      }
4183                      else
4184                      {
4185                         f.Seek(members.loc.end.pos - position, current);
4186                         position = members.loc.end.pos;
4187                      }
4188                      /*
4189                      prev = false;
4190                      lastIsMethod = true;
4191                      */
4192                      prev = true;
4193                      lastIsMethod = false;
4194
4195                   }
4196                }
4197                else
4198                {
4199                   f.Seek(members.loc.end.pos - position, current);
4200                   position = members.loc.end.pos;
4201                   prev = false;
4202                   lastIsMethod = true;
4203                }
4204             }
4205             else if(members.type == methodMembersInit)
4206             {
4207                if(this.methodAction == actionDeleteMethod && members.function == function);
4208                else
4209                   methodPresent = true;
4210
4211                // Delete instance method here
4212                if((this.methodAction == actionDeleteMethod || (this.methodAction == actionDetachMethod && this.moveAttached)) &&
4213                   members.function == function)
4214                {
4215                   if(this.moveAttached && !*text)
4216                      GetLocText(editBox, f, position, &function.loc, text, textSize, Max((int)strlen(this.methodName) - movedFuncIdLen,0), 0);
4217
4218                   DeleteJunkBefore(f, members.loc.start.pos, &position);
4219                   f.DeleteBytes(members.loc.end.pos - members.loc.start.pos + 1);
4220                   position = members.loc.end.pos + 1;
4221                   f.Printf("\n");
4222                }
4223                else
4224                {
4225                   DeleteJunkBefore(f, position, &position);
4226                   if(!lastIsMethod)
4227                      f.Printf(";");
4228
4229                   DeleteJunkBefore(f, members.loc.start.pos, &position);
4230                   lastIsMethod = true;
4231                   f.Printf("\n\n      ");
4232                }
4233
4234                f.Seek(members.loc.end.pos - position, current);
4235                position = members.loc.end.pos;
4236             }
4237             DeleteJunkBefore(f, position, &position);
4238          }
4239       }
4240
4241       if(!object.deleted)
4242       {
4243          if(!methodPresent)
4244             f.Printf(" ");
4245
4246          if((this.methodAction == actionAddMethod || (this.moveAttached && (this.methodAction == actionAttachMethod || this.methodAction == actionReattachMethod))) && this.selected == object)
4247          {
4248             Method method = this.method;
4249             DeleteJunkBefore(f, position, &position);
4250             if(!lastIsMethod)
4251                f.Printf(";");
4252
4253             f.Printf("\n");
4254
4255             if(!method.dataType)
4256                method.dataType = ProcessTypeString(method.dataTypeString, false);
4257
4258             {
4259                Type dataType = method.dataType;
4260                Type returnType = dataType.returnType;
4261                Type param;
4262
4263                if(this.moveAttached)
4264                {
4265                   // Move function here:
4266                   int newLen = strlen(method.name);
4267
4268                   f.Printf("\n   ");
4269
4270                   if(!*text)
4271                      GetLocText(editBox, f, position, &function.loc, text, textSize, Max(newLen - movedFuncIdLen, 0), 3);
4272
4273                   // First change name of function
4274                   memmove(*text + movedFuncIdPos + newLen, *text + movedFuncIdPos + movedFuncIdLen, *textSize - movedFuncIdPos - movedFuncIdLen + 1);
4275                   *textSize += newLen - movedFuncIdLen;
4276                   memcpy(*text + movedFuncIdPos, method.name, newLen);
4277
4278                   // Second, tab right
4279                   {
4280                      int c;
4281                      for(c = 0; (*text)[c]; )
4282                      {
4283                         int i;
4284                         for(i = c; (*text)[i] && (*text)[i] != '\n'; i++);
4285                         if(i != c)
4286                         {
4287                            memmove((*text)+c+3, (*text)+c, *textSize+1-c);
4288                            (*text)[c] = (*text)[c+1] = (*text)[c+2] = ' ';
4289                            c += 3;
4290                            *textSize += 3;
4291                         }
4292                         for(; (*text)[c] && (*text)[c] != '\n'; c++);
4293                         if((*text)[c]) c++;
4294                      }
4295                   }
4296
4297                   f.Puts((*text));
4298                   f.Printf("\n");
4299                }
4300                else
4301                {
4302                   Class moduleClass = eSystem_FindClass(this.privateModule, "Module");
4303
4304                   // ADDING METHOD HERE
4305                   f.Printf("\n      ");
4306                   OutputType(f, returnType, false);
4307
4308                   f.Printf(" ");
4309                   if(dataType.thisClass)
4310                   {
4311                      if(!eClass_IsDerived(regClass, dataType.thisClass.registered) && !dataType.classObjectType)     // Just fixed this... was backwards.
4312                      {
4313                         if(dataType.thisClass.shortName)
4314                            f.Printf(dataType.thisClass.shortName);
4315                         else
4316                            f.Printf(dataType.thisClass.string);
4317                         f.Printf("::");
4318                      }
4319                   }
4320                   f.Printf(method.name);
4321                   f.Printf("(");
4322                   for(param = dataType.params.first; param; param = param.next)
4323                   {
4324                      OutputType(f, param, true);
4325                      if(param.next)
4326                         f.Printf(", ");
4327                   }
4328                   f.Printf(")\n");
4329                   f.Printf("      %c\n\n", OpenBracket);
4330
4331                   if(control._class._vTbl[method.vid] == moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad]) // Temp Check for DefaultFunction
4332                   {
4333                      if(returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
4334                         f.Printf("         return true;\n");
4335                      else if(returnType.kind != voidType)
4336                         f.Printf("         return 0;\n");
4337                   }
4338                   else
4339                   {
4340                      f.Printf("         ");
4341                      if(returnType.kind != voidType)
4342                         f.Printf("return ");
4343                      f.Printf("%s::%s(", control._class.name, method.name);
4344                      for(param = dataType.params.first; param; param = param.next)
4345                      {
4346                         if(param.prev) f.Printf(", ");
4347                         if(param.kind != voidType)
4348                            f.Printf(param.name);
4349                      }
4350                      f.Printf(");\n");
4351                   }
4352                   f.Printf("      %c\n", CloseBracket);
4353                }
4354             }
4355          }
4356       }
4357
4358       if(!object.instCode)
4359          f.Printf(methodPresent ? "   %c;" : "%c;", CloseBracket);
4360       else if(!object.deleted)
4361       {
4362          // Turn this into a multiline instance when adding a method
4363          DeleteJunkBefore(f, inst.loc.end.pos-1, &position);
4364
4365          f.Printf(methodPresent ? "\n   " : " ");
4366
4367          f.Seek(inst.loc.end.pos + 1 - position, current);
4368          position = inst.loc.end.pos + 1;
4369       }
4370       return position;
4371    }
4372
4373    void OutputClassProperties(Class _class, ObjectInfo classObject, EditBoxStream f, Instance test)
4374    {
4375       Property propIt;
4376       Class regClass = eSystem_FindClass(privateModule, classObject.name);
4377
4378       if(_class.base && _class.base.type != systemClass) OutputClassProperties(_class.base, classObject, f, test);
4379
4380       for(propIt = _class.membersAndProperties.first; propIt; propIt = propIt.next)
4381       {
4382          Property prop = eClass_FindProperty(selected.instance._class, propIt.name, privateModule);
4383          if(prop && prop.isProperty && !prop.conversion)
4384          {
4385             if(prop.Set && prop.Get && prop.dataTypeString && strcmp(prop.name, "name") && !Code_IsPropertyDisabled(classObject, prop.name) &&
4386                (!prop.IsSet || prop.IsSet(classObject.instance)))
4387             {
4388                Class dataType = prop.dataTypeClass;
4389                char tempString[1024] = "";
4390                char * string;
4391                bool specify = false;
4392                DataMember member;
4393
4394                member = eClass_FindDataMember(regClass, prop.name, privateModule, null, null);
4395                if(member && member._class == regClass)
4396                   specify = true;
4397
4398                if(!dataType)
4399                   dataType = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
4400
4401                if(dataType && dataType.type == structClass)
4402                {
4403                   void * dataForm = new0 byte[dataType.structSize];
4404                   void * dataTest = new0 byte[dataType.structSize];
4405
4406                   ((void (*)(void *, void *))(void *)prop.Get)(classObject.instance, dataForm);
4407                   ((void (*)(void *, void *))(void *)prop.Get)(test, dataTest);
4408
4409                   if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
4410                   {
4411                      bool needClass = true;
4412
4413                      string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
4414                      ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
4415                      if(needClass)
4416                         f.Printf("\n   %s%s = %c %s %c;", specify ? "property::" : "", prop.name, /*dataType.name, */OpenBracket, string, CloseBracket);
4417                      else
4418                         f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4419                   }
4420                   delete dataForm;
4421                   delete dataTest;
4422                }
4423                else if(dataType && (dataType.type == normalClass || dataType.type == noHeadClass))
4424                {
4425                   void * dataForm, * dataTest;
4426                   bool isEditBoxContents = false;
4427                   bool freeDataForm = false, freeDataTest = false;
4428
4429                   // Because contents property is broken for mutiline EditBox at the moment
4430                   if(!strcmp(prop.name, "contents") && !strcmp(prop._class.name, "EditBox"))
4431                      isEditBoxContents = true;
4432
4433                   if(isEditBoxContents && ((EditBox)classObject.instance).multiLine)
4434                   {
4435                      dataForm = ((EditBox)classObject.instance).multiLineContents;
4436                      freeDataForm = true;
4437                   }
4438                   else
4439                      dataForm = ((void *(*)(void *))(void *)prop.Get)(classObject.instance);
4440                   if(isEditBoxContents && ((EditBox)test).multiLine)
4441                   {
4442                      dataTest = ((EditBox)test).multiLineContents;
4443                      freeDataTest = true;
4444                   }
4445                   else
4446                      dataTest = ((void *(*)(void *))(void *)prop.Get)(test);
4447
4448                   if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
4449                   {
4450                      char tempString[1024] = "";
4451                      char * string;
4452                      ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
4453
4454                      if(eClass_IsDerived(classObject.instance._class, dataType) && classObject.instance == dataForm)
4455                      {
4456                         // Shouldn't go here ...
4457                         f.Printf("\n   %s%s = this;", specify ? "property::" : "", prop.name);
4458                      }
4459                      else
4460                      {
4461                         bool needClass = true;
4462
4463                         string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
4464
4465                         if(!strcmp(dataType.dataTypeString, "char *"))
4466                         {
4467                            Map<String, bool> i18nStrings = classObject.i18nStrings;
4468                            bool i18n = true;
4469                            if(i18nStrings && i18nStrings.GetAtPosition(prop.name, false))
4470                               i18n = false;
4471
4472                            f.Printf("\n   %s%s = %s\"", specify ? "property::" : "", prop.name, i18n ? "$" : "");
4473                            OutputString(f, string);
4474                            f.Puts("\";");
4475                         }
4476                         else if(needClass)
4477                            f.Printf("\n   %s%s = %c %s %c;", specify ? "property::" : "", prop.name, /*dataType.name, */OpenBracket, string, CloseBracket);
4478                         else
4479                            f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4480                      }
4481                   }
4482                   if(freeDataForm) delete dataForm;
4483                   if(freeDataTest) delete dataTest;
4484                }
4485                else if(dataType)
4486                {
4487                   DataValue dataForm, dataTest;
4488
4489                   GetProperty(prop, classObject.instance, &dataForm);
4490                   GetProperty(prop, test, &dataTest);
4491
4492                   if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, &dataForm, &dataTest))
4493                   {
4494                      SetProperty(prop, test, dataForm);
4495                      if(dataType.type == bitClass)
4496                      {
4497                         bool needClass = true;
4498                         string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm, tempString, null, &needClass);
4499                         if(needClass)
4500                            f.Printf("\n   %s%s = %c %s %c;", specify ? "property::" : "", prop.name, /*dataType.name, */OpenBracket, string, CloseBracket);
4501                         else if(string[0])
4502                            f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4503                      }
4504                      else
4505                      {
4506                         bool needClass = true;
4507                         if(dataType.type == enumClass)
4508                         {
4509                            NamedLink value;
4510                            Class enumClass = eSystem_FindClass(privateModule, "enum");
4511                            EnumClassData e = ACCESS_CLASSDATA(dataType, enumClass);
4512
4513                            for(value = e.values.first; value; value = value.next)
4514                            {
4515                               if((int)value.data == dataForm.i)
4516                               {
4517                                  string = value.name;
4518                                  break;
4519                               }
4520                            }
4521                         }
4522                         else
4523                            string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm, tempString, null, &needClass);
4524                         if(!strcmp(dataType.dataTypeString, "float") && strchr(string, '.'))
4525                            f.Printf("\n   %s%s = %sf;", specify ? "property::" : "", prop.name, string);
4526                         else if(string[0])
4527                            f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4528                      }
4529                   }
4530                }
4531             }
4532          }
4533       }
4534    }
4535
4536    void UpdateFormCode()
4537    {
4538       if(!this) return;
4539       if(!parsing) return;
4540
4541       updatingCode++;
4542       if(codeModified)
4543       {
4544          ParseCode();
4545       }
4546       else if(formModified)
4547       {
4548          EditBoxStream f { editBox = editBox };
4549          int position = 0;
4550          char * text = null;
4551          int textSize;
4552          Identifier movedFuncId;
4553          int movedFuncIdLen = 0, movedFuncIdPos = 0;
4554          ObjectInfo classObject;
4555
4556            updatingCode++;
4557
4558          editBox.recordUndoEvent = true;
4559
4560          if(moveAttached)
4561          {
4562             movedFuncId = GetDeclId(function.declarator);
4563             movedFuncIdLen = movedFuncId.loc.end.pos - movedFuncId.loc.start.pos;
4564             movedFuncIdPos = movedFuncId.loc.start.pos - function.loc.start.pos;
4565          }
4566
4567          for(classObject = classes.first; classObject; classObject = classObject.next)
4568          {
4569             Class _class;
4570             ClassDefinition classDef = classObject.classDefinition;
4571             Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)classDef.baseSpecs->first).name);
4572             Instance test;
4573             ClassDef def;
4574             bool firstObject = true;
4575             ObjectInfo object = classObject.instances.first;
4576             bool lastIsDecl = false;
4577
4578             if(!classObject.modified) continue;
4579
4580             test = eInstance_New(regClass);
4581             incref test;
4582
4583             // Put it in the same desktop window...
4584             designer.PrepareTestObject(test);
4585
4586             //f.Printf("class %s : %s\n", classObject.name, classObject.oClass.name);
4587             //f.Printf("%c\n\n", OpenBracket);
4588
4589             // Change the _class name
4590             f.Seek(classDef.nameLoc.start.pos - position, current);
4591             f.DeleteBytes(classDef.nameLoc.end.pos - classDef.nameLoc.start.pos);
4592             f.Printf(classObject.name);
4593             position = classDef.nameLoc.end.pos;
4594
4595             {
4596                // Go to block start, delete all until no white space, put \n
4597                char ch;
4598                int count = 0;
4599                int back = 0;
4600                f.Seek(classDef.blockStart.end.pos - position, current);
4601                position = classDef.blockStart.end.pos;
4602
4603                for(; f.Getc(&ch); count++)
4604                {
4605                   if(!isspace(ch))
4606                   {
4607                      f.Seek(-1, current);
4608                      break;
4609                   }
4610
4611                   if(ch == '\n')
4612                      back = 0;
4613                   else
4614                      back++;
4615                }
4616
4617                f.Seek(-count, current);
4618
4619                f.DeleteBytes(count-back);
4620                //f.Printf("\n");
4621                position += count-back;
4622             }
4623
4624             // Output properties
4625             OutputClassProperties(classObject.instance._class, classObject, f, test);
4626
4627             for(def = classDef.definitions->first; def; def = def.next)
4628             {
4629                switch(def.type)
4630                {
4631                   case defaultPropertiesClassDef:
4632                   {
4633                      bool keptMember = false;
4634                      MemberInit propDef;
4635                      MemberInit lastKept = null;
4636
4637                      lastIsDecl = false;
4638                      DeleteJunkBefore(f, def.loc.start.pos, &position);
4639
4640                      // This was adding blank spaces between comment and properties -- What was it for?
4641                      // f.Printf("\n   ");
4642
4643                      for(propDef = def.defProperties->first; propDef; propDef = propDef.next)
4644                      {
4645                         Identifier ident = propDef.identifiers->first;
4646                         bool deleted = false;
4647
4648                         // For now delete if it's a prop
4649                         if(!propDef.variable && ident)
4650                         {
4651                            if(!ident.next)
4652                            {
4653                               Property prop = eClass_FindProperty(regClass, ident.string, this.privateModule);
4654                               if(prop)
4655                               {
4656                                  f.Seek(propDef.loc.start.pos - position, current);
4657                                  f.DeleteBytes(propDef.loc.end.pos - propDef.loc.start.pos);
4658                                  position = propDef.loc.end.pos;
4659                                  deleted = true;
4660                               }
4661                               else
4662                               {
4663                                  Method method = eClass_FindMethod(regClass, ident.string, this.privateModule);
4664                                  if(method && method.type == virtualMethod && propDef.initializer && propDef.initializer.type == expInitializer && propDef.initializer.exp && propDef.initializer.exp.type == identifierExp)
4665                                  {
4666                                     if(((methodAction == actionDetachMethod || methodAction == actionReattachMethod) && method == this.method && selected == classObject) ||
4667                                        (methodAction == actionDeleteMethod && !strcmp(function.declarator.symbol.string, propDef.initializer.exp.identifier.string)))
4668                                     {
4669                                        f.Seek(propDef.loc.start.pos - position, current);
4670                                        f.DeleteBytes(propDef.loc.end.pos - propDef.loc.start.pos);
4671                                        position = propDef.loc.end.pos;
4672                                        deleted = true;
4673                                     }
4674                                  }
4675                               }
4676                            }
4677                         }
4678                         if(!deleted)
4679                         {
4680                            keptMember = true;
4681                            lastKept = propDef;
4682                         }
4683                      }
4684
4685                      if(!keptMember)
4686                      {
4687                         char ch = 0;
4688                         int count = 0;
4689                         f.Seek(def.loc.end.pos - position - 1, current);
4690                         f.Getc(&ch);
4691
4692                         if(ch == ';')
4693                         {
4694                            f.Seek(-1, current);
4695                            f.DeleteBytes(1);
4696                         }
4697                         position = def.loc.end.pos;
4698                      }
4699                      else
4700                      {
4701                         if(lastKept != def.defProperties->last)
4702                         {
4703                            char ch;
4704                            int count = 0;
4705
4706                            f.Seek(-1, current);
4707                            for(;f.Getc(&ch);)
4708                            {
4709                               if(ch == ',')
4710                               {
4711                                  count++;
4712                                  f.Seek(-1, current);
4713                                  break;
4714                               }
4715                               else if(!isspace(ch))
4716                                  break;
4717                               f.Seek(-2, current);
4718                               count++;
4719                            }
4720
4721                            if(ch == ',')
4722                               f.DeleteBytes(count);
4723                         }
4724                         else
4725                         {
4726                            f.Seek(def.loc.end.pos - position, current);
4727                            position = def.loc.end.pos;
4728                         }
4729                      }
4730                      break;
4731                   }
4732                   case declarationClassDef:
4733                   {
4734                      Declaration decl = def.decl;
4735
4736                      if(decl.type == instDeclaration)
4737                      {
4738                         if(def.object/* && ((ObjectInfo)def.object).modified*/)
4739                         {
4740                            while(def.object && object != def.object)
4741                            {
4742                               if(object /*&& ((ObjectInfo)def.object).modified*/)
4743                                  position = UpdateInstanceCode(f, position, regClass, object, &firstObject, &text, &textSize, movedFuncIdLen, movedFuncIdPos);
4744                               object = object.next;
4745                            }
4746
4747                            DeleteJunkBefore(f, def.loc.start.pos, &position);
4748                            f.Printf(firstObject ? "\n\n   " : "\n   ");
4749                            firstObject = false;
4750
4751                            if(def.object && ((ObjectInfo)def.object).modified)
4752                               position = UpdateInstanceCode(f, position, regClass, def.object, &firstObject, &text, &textSize, movedFuncIdLen, movedFuncIdPos);
4753
4754                            object = object ? object.next : null;
4755                         }
4756                         else
4757                         {
4758                            DeleteJunkBefore(f, def.loc.start.pos, &position);
4759                            f.Printf(firstObject ? "\n\n   " : "\n   ");
4760                            firstObject = false;
4761                         }
4762                         lastIsDecl = false;
4763                      }
4764                      else
4765                      {
4766                         DeleteJunkBefore(f, def.loc.start.pos, &position);
4767                         f.Printf(lastIsDecl ? "\n   " : "\n\n   ");
4768                         lastIsDecl = true;
4769                      }
4770                      break;
4771                   }
4772                   case functionClassDef:
4773                   {
4774                      // TESTING IF THIS IS GOOD ENOUGH FOR GENERATED FUNCTION...
4775                      if(!def.function.body) continue;
4776
4777                      lastIsDecl = false;
4778
4779                      DeleteJunkBefore(f, def.loc.start.pos, &position);
4780                      f.Printf("\n\n   ");
4781
4782                      // Delete _class methods
4783                      if((methodAction == actionDeleteMethod || (moveAttached && selected != classObject)) &&
4784                         def.function == function)
4785                      {
4786                         char ch;
4787                         int count = 0;
4788
4789                         if(moveAttached && !text)
4790                         {
4791                            GetLocText(editBox, f, position, &function.loc, &text, &textSize, Max((int)strlen(methodName) - movedFuncIdLen,0), 3);
4792                         }
4793
4794                         f.Seek(def.loc.end.pos - position, current);
4795                         for(; f.Getc(&ch); count++)
4796                         {
4797                            if(!isspace(ch))
4798                            {
4799                               f.Seek(-1, current);
4800                               break;
4801                            }
4802                         }
4803                         f.Seek(def.loc.start.pos - def.loc.end.pos - count, current);
4804
4805                         f.DeleteBytes(def.loc.end.pos - def.loc.start.pos + count);
4806                         position = def.loc.end.pos + count;
4807                      }
4808
4809                      // In case of detaching methods in the _class, simply rename the method
4810                      if(methodAction == actionDetachMethod && moveAttached && selected == classObject && function == def.function)
4811                      {
4812                         f.Seek(function.loc.start.pos + movedFuncIdPos - position, current);
4813                         f.DeleteBytes(movedFuncIdLen);
4814                         f.Puts(methodName);
4815                         position = function.loc.start.pos + movedFuncIdPos + movedFuncIdLen;
4816                      }
4817
4818                      if((methodAction == actionAttachMethod || methodAction == actionReattachMethod) && selected == classObject && moveAttached &&
4819                         function == def.function)
4820                      {
4821                         // In case of attaching methods in the _class, simply rename the method
4822                         f.Seek(function.loc.start.pos + movedFuncIdPos - position, current);
4823                         position = function.loc.start.pos + movedFuncIdPos;
4824                         f.DeleteBytes(movedFuncIdLen);
4825                         if(method.dataType.thisClass)
4826                            f.Printf("%s::", method.dataType.thisClass.string);
4827                         f.Puts(method.name);
4828                         position += movedFuncIdLen;
4829                      }
4830                      break;
4831                   }
4832                   default:
4833                      DeleteJunkBefore(f, def.loc.start.pos, &position);
4834                      if(def.type == memberAccessClassDef)
4835                      {
4836                         f.Printf("\n\n");
4837                         firstObject = false;
4838                         lastIsDecl = true;
4839                      }
4840                      else
4841                      {
4842                         f.Printf("\n   ");
4843                         lastIsDecl = false;
4844                      }
4845                }
4846
4847                f.Seek(def.loc.end.pos - position, current);
4848                position = def.loc.end.pos;
4849             }
4850
4851             // Output attached methods
4852             if((methodAction == actionAttachMethod || methodAction == actionReattachMethod) && selected == classObject && !moveAttached)
4853             {
4854                DeleteJunkBefore(f, position, &position);
4855                f.Printf("\n   %s = %s;\n", method.name, function.declarator.symbol.string);
4856             }
4857
4858             // ********** INSTANCES ***************
4859             for(; object; object = object.next)
4860             {
4861                if(!object.instCode)
4862                {
4863                   position = UpdateInstanceCode(f, position, regClass, object, &firstObject, &text, &textSize, movedFuncIdLen, movedFuncIdPos);
4864                }
4865             }
4866
4867             DeleteJunkBefore(f, position, &position);
4868
4869             // ****************** METHODS ***********************
4870             if(methodAction == actionDetachMethod && moveAttached && classObject == oClass)
4871             {
4872                // If detaching an instance method
4873                if(selected != classObject)
4874                {
4875                   int newLen = strlen(methodName);
4876
4877                   if(!text)
4878                      GetLocText(editBox, f, position, &function.loc, &text, &textSize, Max(newLen - movedFuncIdLen,0), 0);
4879                   // Tab selection left
4880                   {
4881                      int c;
4882                      for(c = 0; text[c]; )
4883                      {
4884                         int start = c, i;
4885                         for(i = 0; i<3 && text[c] == ' '; i++, c++);
4886                         memmove(text+start, text+start+i, textSize+1-start-i);
4887                         textSize -= i;
4888                         c -= i;
4889                         for(; text[c] && text[c] != '\n'; c++);
4890                         if(text[c]) c++;
4891                      }
4892                   }
4893
4894                   // Rename function
4895                   memmove(text + movedFuncIdPos + newLen, text + movedFuncIdPos + movedFuncIdLen, textSize - movedFuncIdPos - movedFuncIdLen + 1);
4896                   textSize += newLen - movedFuncIdLen;
4897                   memcpy(text + movedFuncIdPos, methodName, newLen);
4898
4899                   f.Printf("\n\n   ");
4900                   f.Puts(text);
4901                }
4902             }
4903
4904             if(methodAction == actionAddMethod && selected == classObject)
4905             {
4906                Method method = this.method;
4907
4908                if(!method.dataType)
4909                   method.dataType = ProcessTypeString(method.dataTypeString, false);
4910
4911                // ADDING METHOD HERE
4912                {
4913                   Type dataType = method.dataType;
4914                   Type returnType = dataType.returnType;
4915                   Type param;
4916                   Class moduleClass = eSystem_FindClass(this.privateModule, "Module");
4917
4918                   f.Printf("\n\n");
4919                   f.Printf("   ");
4920                   OutputType(f, returnType, false);
4921
4922                   f.Printf(" ");
4923                   if(dataType.thisClass && !dataType.classObjectType)
4924                   {
4925                      if(dataType.thisClass.shortName)
4926                         f.Printf(dataType.thisClass.shortName);
4927                      else
4928                         f.Printf(dataType.thisClass.string);
4929                      f.Printf("::");
4930                   }
4931                   f.Printf(method.name);
4932                   f.Printf("(");
4933                   for(param = dataType.params.first; param; param = param.next)
4934                   {
4935                      OutputType(f, param, true);
4936                      if(param.next)
4937                         f.Printf(", ");
4938                   }
4939                   f.Printf(")\n");
4940                   f.Printf("   %c\n\n", OpenBracket);
4941
4942                   if(test._class._vTbl[method.vid] == moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad]) // Temp Check for DefaultFunction
4943                   {
4944                      if(returnType && returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
4945                         f.Printf("      return true;\n");
4946                      else if(returnType && returnType.kind != voidType)
4947                         f.Printf("      return 0;\n");
4948                   }
4949                   else
4950                   {
4951                      f.Printf("      ");
4952                      if(returnType.kind != voidType)
4953                         f.Printf("return ");
4954                      {
4955                         char * name = ((Specifier)classDef.baseSpecs->first).name;
4956                         Symbol _class = FindClass(name);
4957                         f.Printf("%s::%s(", (_class && _class.registered) ? _class.registered.name : name, method.name);
4958                      }
4959                      for(param = dataType.params.first; param; param = param.next)
4960                      {
4961                         if(param.prev) f.Printf(", ");
4962                         if(param.kind != voidType)
4963                            f.Printf(param.name);
4964                      }
4965                      f.Printf(");\n");
4966                   }
4967
4968                   f.Printf("   %c", CloseBracket);
4969                }
4970             }
4971
4972             DeleteJunkBefore(f, classDef.loc.end.pos-1, &position);
4973             f.Printf("\n");
4974
4975             delete test;
4976          }
4977
4978          editBox.recordUndoEvent = false;
4979
4980          updatingCode--;
4981          delete f;
4982
4983          ParseCode();
4984          delete text;
4985
4986          // TOFIX: Patch for a glitch where clicking at the end of the view seems one line off. No idea what could be going on?
4987          editBox.OnVScroll(setRange, editBox.scroll.y, 0);
4988       }
4989
4990       updatingCode--;
4991       codeModified = false;
4992       formModified = false;
4993       methodAction = 0;
4994       moveAttached = false;
4995       function = null;
4996       method = null;
4997    }
4998
4999    int FindMethod(char * methodName /*Method method*/, ClassFunction*functionPtr, Location propLoc)
5000    {
5001       int found = 0;
5002       ClassFunction function = null;
5003       if(methodName)
5004       {
5005          ObjectInfo object = this.selected;
5006
5007          if(object && object == this.oClass)
5008          {
5009             ClassDefinition classDef = object.oClass.classDefinition;
5010             ClassDef def;
5011             if(classDef && classDef.definitions)
5012             {
5013                for(def = classDef.definitions->first; def; def = def.next)
5014                {
5015                   if(def.type == functionClassDef && def.function.declarator)
5016                   {
5017                      if(!strcmp(def.function.declarator.symbol.string, methodName))
5018                      {
5019                         function = def.function;
5020                         found = 1;
5021                         break;
5022                      }
5023                   }
5024                   else if(def.type == defaultPropertiesClassDef)
5025                   {
5026                      MemberInit propDef;
5027
5028                      for(propDef = def.defProperties->first; propDef; propDef = propDef.next)
5029                      {
5030                         Identifier ident = propDef.identifiers ? propDef.identifiers->first : null;
5031                         if(ident && !ident.next)
5032                         {
5033                            if(!strcmp(ident.string, methodName) && propDef.initializer && propDef.initializer.type == expInitializer && propDef.initializer.exp && propDef.initializer.exp.type == identifierExp)
5034                            {
5035                               found = 2;
5036                               if(propLoc != null)
5037                                  propLoc = propDef.loc;
5038                               if(functionPtr)
5039                               {
5040                                  ClassDefinition classDef = object.oClass.classDefinition;
5041                                  ClassDef def;
5042                                  if(classDef.definitions)
5043                                  {
5044                                     for(def = classDef.definitions->first; def; def = def.next)
5045                                     {
5046                                        if(def.type == functionClassDef)
5047                                        {
5048                                           if(!strcmp(def.function.declarator.symbol.string, propDef.initializer.exp.identifier.string))
5049                                           {
5050                                              function = def.function;
5051                                              break;
5052                                           }
5053                                        }
5054                                     }
5055                                     if(function) break;
5056                                  }
5057                               }
5058                               else
5059                                  break;
5060                            }
5061                         }
5062                      }
5063                   }
5064                }
5065             }
5066          }
5067          else if(object)
5068          {
5069             Instantiation inst = object.instCode;
5070
5071             // Check here to see if the method already exists, no need to call ModifyCode in that case
5072             if(inst && inst.members)
5073             {
5074                MembersInit members;
5075                for(members = inst.members->first; members; members = members.next)
5076                {
5077                   switch(members.type)
5078                   {
5079                      case dataMembersInit:
5080                      {
5081                         if(members.dataMembers)
5082                         {
5083                            MemberInit member;
5084                            for(member = members.dataMembers->first; member; member = member.next)
5085                            {
5086                               Identifier ident = member.identifiers ? member.identifiers->first : null;
5087                               if(ident && !ident.next)
5088                               {
5089                                  if(!strcmp(ident.string, methodName) && member.initializer && member.initializer.type == expInitializer && member.initializer.exp && member.initializer.exp.type == memberExp /*ExpIdentifier*/)
5090                                  {
5091                                     found = 2;
5092                                     if(propLoc != null)
5093                                        propLoc = member.loc;
5094                                     if(functionPtr)
5095                                     {
5096                                        ClassDefinition classDef = object.oClass.classDefinition;
5097                                        ClassDef def;
5098                                        if(classDef.definitions)
5099                                        {
5100                                           for(def = classDef.definitions->first; def; def = def.next)
5101                                           {
5102                                              if(def.type == functionClassDef)
5103                                              {
5104                                                 if(def.function.declarator && !strcmp(def.function.declarator.symbol.string, member.initializer.exp.identifier.string))
5105                                                 {
5106                                                    function = def.function;
5107                                                    break;
5108                                                 }
5109                                              }
5110                                           }
5111                                           if(function) break;
5112                                        }
5113                                        if(!function)
5114                                        {
5115                                           // TODO: Fix memory leak
5116                                           function = ClassFunction
5117                                           {
5118                                              declarator = Declarator { symbol = Symbol { string = CopyString(member.initializer.exp.member.member ? member.initializer.exp.member.member.string : "") } }
5119                                           };
5120                                        }
5121                                     }
5122                                     else
5123                                        break;
5124                                  }
5125                               }
5126                            }
5127                         }
5128                         break;
5129                      }
5130                      case methodMembersInit:
5131                      {
5132                         if(members.function.declarator && !strcmp(members.function.declarator.symbol.string, methodName))
5133                         {
5134                            function = members.function;
5135                            found = 1;
5136                         }
5137                         break;
5138                      }
5139                   }
5140                   if(function)
5141                      break;
5142                }
5143             }
5144          }
5145       }
5146       if(functionPtr) *functionPtr = function;
5147       return found;
5148    }
5149
5150    void GoToMethod(char * methodName /*Method method*/)
5151    {
5152       if(methodName)
5153       {
5154          ObjectInfo object = selected;
5155          EditBoxStream f { editBox = editBox };
5156          ClassFunction function = null;
5157          bool atChar = false;
5158          int indent = 6;
5159          EditLine l1, l2;
5160          int y1,y2, x1, x2;
5161          Location propLoc = { {0,0,-1} };
5162
5163          // GO TO THE METHOD
5164          if(FindMethod(methodName, &function, &propLoc) == 1 && object != this.oClass) indent = 9;
5165          if(function && function.body)
5166          {
5167             bool lfCount = 0;
5168             f.Seek(function.body.loc.start.pos+1, current);
5169             for(;;)
5170             {
5171                char ch;
5172                if(!f.Getc(&ch))
5173                   break;
5174                if(ch == '\n')
5175                {
5176                   if(lfCount)
5177                   {
5178                      f.Seek(-1, current);
5179                      break;
5180                   }
5181                   lfCount++;
5182                }
5183                else if(!isspace(ch))
5184                {
5185                   f.Seek(-1, current);
5186                   atChar = true;
5187                   break;
5188                }
5189             }
5190          }
5191          else if(propLoc.start.pos > -1)
5192          {
5193             f.Seek(propLoc.start.pos, current);
5194             atChar = true;
5195          }
5196          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
5197          delete f;
5198          if(function || propLoc.start.pos > -1)
5199          {
5200             editBox.SetSelPos(l1, y1, atChar ? x1 : indent, l2, y2, atChar ? x2 : indent);
5201             editBox.CenterOnCursor();
5202             SetState(normal, false, 0);
5203             Activate();
5204
5205             if(function && function.declarator && function.declarator.symbol && !function.declarator.symbol.type)
5206             {
5207                FreeClassFunction(function);
5208             }
5209          }
5210       }
5211    }
5212
5213    void FindCompatibleMethods(Method method, OldList compatible)
5214    {
5215       ClassDefinition classDef = this.oClass.classDefinition;
5216       if(classDef && classDef.definitions)
5217       {
5218          Class regClass { };
5219          Class baseClass = eSystem_FindClass(this.privateModule, ((Specifier)classDef.baseSpecs->first).name);
5220          ClassDef def;
5221          Class _class;
5222          Symbol classSym { };
5223          Symbol selectedClass;
5224          if(this.selected == this.oClass)
5225             selectedClass = classSym;
5226          else
5227             selectedClass = FindClass(this.selected.instance._class.name);
5228
5229          regClass.name = classDef._class.name;
5230          regClass.base = eSystem_FindClass(this.privateModule, ((Specifier)classDef.baseSpecs->first).name);
5231          for(def = classDef.definitions->first; def; def = def.next)
5232          {
5233             if(def.type == functionClassDef && def.function.declarator)
5234             {
5235                Method vMethod = eClass_FindMethod(baseClass, def.function.declarator.symbol.string, this.privateModule);
5236                if(!vMethod)
5237                   vMethod = eClass_FindMethod(this.selected.instance._class, def.function.declarator.symbol.string, this.privateModule);
5238                if(!vMethod)
5239                {
5240                   Type type = def.function.declarator.symbol.type;
5241                   if(CheckCompatibleMethod(method, type, regClass, this.selected == this.oClass, FindClass(this.selected.instance._class.name)))
5242                   {
5243                      compatible.Add(OldLink { data = def.function });
5244                   }
5245                }
5246             }
5247          }
5248
5249          if(this.oClass && this.oClass.instance)
5250          {
5251             classSym.registered = regClass;
5252             //classSym.registered = this.oClass.oClass;
5253
5254             for(_class = regClass.base; _class; _class = _class.base)
5255             {
5256                Method testMethod;
5257                for(testMethod = (Method)_class.methods.first; testMethod; testMethod = (Method)((BTNode)testMethod).next)
5258                {
5259                   // TODO: Understand why these functions popup in attach list
5260                   if(testMethod.type != virtualMethod /*&& testMethod.function != Window_OnGetString && testMethod.function != Window_OnGetDataFromString*/)
5261                   {
5262                      if(!testMethod.dataType)
5263                         testMethod.dataType = ProcessTypeString(testMethod.dataTypeString, false);
5264
5265                      //if(CheckCompatibleMethod(method, testMethod.dataType, &regClass, false, selectedClass)) // this.selected == this.oClass, selectedClass))
5266                      if(CheckCompatibleMethod(method, testMethod.dataType, this.oClass.instance._class, false, selectedClass)) // this.selected == this.oClass, selectedClass))
5267                      //if(CheckCompatibleMethod(method, testMethod.dataType, &regClass, this.selected == this.oClass, FindClass(this.oClass.oClass.name)))
5268                      {
5269                         // TODO: Fix memory leak, Figure out if it should be ClassFunction or FunctionDefinition
5270                         // ClassFunction function { };
5271                         FunctionDefinition function { };
5272
5273                         function.declarator = Declarator { };
5274                         function.declarator.symbol = Symbol { string = CopyString(testMethod.name) };
5275                         excludedSymbols.Add(function.declarator.symbol);
5276
5277                         compatible.Add(OldLink { data = function });
5278                      }
5279                   }
5280                }
5281             }
5282          }
5283          delete regClass;
5284          delete classSym;
5285       }
5286    }
5287
5288    void AddMethod(Method method)
5289    {
5290       if(method)
5291       {
5292          char methodName[1024];
5293          strcpy(methodName, method.name);
5294          if(!FindMethod(methodName, null, null))
5295          {
5296             methodAction = actionAddMethod;
5297             this.method = method;
5298             ModifyCode();
5299          }
5300          UpdateFormCode();
5301          GoToMethod(methodName);
5302       }
5303    }
5304
5305    void DeleteMethod(ClassFunction function)
5306    {
5307       if(function)
5308       {
5309          methodAction = actionDeleteMethod;
5310          this.function = function;
5311          ModifyCode();
5312          UpdateFormCode();
5313
5314          Update(null);
5315       }
5316    }
5317
5318    void AttachMethod(Method method, ClassFunction function)
5319    {
5320       if(function)
5321       {
5322          // If it's an instance we'll ask if we want to move it inside...
5323          if(!function.attached.count && function.body)
5324          {
5325             // Find the function in the _class to check if it's a virtual function
5326             Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)this.oClass.classDefinition.baseSpecs->first).name);
5327             Method method = eClass_FindMethod(regClass, function.declarator.symbol.string, this.privateModule);
5328             /*    LATER we'll need to check for public/virtual properties etc, for now only checked if virtual in base _class
5329             ClassDef def;
5330             for(def = this.classDefinition.first; def; def = def.next)
5331             {
5332                if(def.type == functionClassDef)
5333                {
5334                   if(def.function == function)
5335                      break;
5336                }
5337             }
5338             */
5339             if(!method || method.type != virtualMethod)
5340             {
5341                char title[1024];
5342                sprintf(title, $"Attach %s", function.declarator.symbol.string);
5343                if(MessageBox { type = yesNo, master = parent, text = title, contents = $"Method is unused. Move method inside instance?"}.Modal() == yes)
5344                {
5345                   moveAttached = true;
5346                }
5347             }
5348          }
5349
5350          methodAction = actionAttachMethod;
5351          this.method = method;
5352          this.function = function;
5353          ModifyCode();
5354          UpdateFormCode();
5355          Update(null);
5356       }
5357    }
5358
5359    void ReAttachMethod(Method method, ClassFunction function)
5360    {
5361       if(function)
5362       {
5363          // If it's an instance we'll ask if we want to move it inside...
5364          if(!function.attached.count && function.body)
5365          {
5366             // Find the function in the _class to check if it's a virtual function
5367             Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)this.oClass.classDefinition.baseSpecs->first).name);
5368             Method method = eClass_FindMethod(regClass, function.declarator.symbol.string, this.privateModule);
5369             /*    LATER we'll need to check for public/virtual properties etc, for now only checked if virtual in base _class
5370             ClassDef def;
5371             for(def = this.classDefinition.first; def; def = def.next)
5372             {
5373                if(def.type == functionClassDef)
5374                {
5375                   if(def.function == function)
5376                      break;
5377                }
5378             }
5379             */
5380             if(!method || method.type != virtualMethod)
5381             {
5382                char title[1024];
5383                sprintf(title, $"Attach %s", function.declarator.symbol.string);
5384                if(MessageBox { type = yesNo, master = parent, text = title,
5385                   contents = $"Method is unused. Move method inside instance?" }.Modal() == yes)
5386                {
5387                   moveAttached = true;
5388                }
5389             }
5390          }
5391
5392          methodAction = actionReattachMethod;
5393          this.method = method;
5394          this.function = function;
5395          ModifyCode();
5396          UpdateFormCode();
5397          Update(null);
5398       }
5399    }
5400
5401    void DetachMethod(Method method, ClassFunction function, int type)
5402    {
5403       bool result = true;
5404
5405       if(type == 1)
5406       {
5407          Window dialog
5408          {
5409             hasClose = true, borderStyle = sizable, minClientSize = { 300, 55 },
5410             master = sheet, text = $"Name detached method", background = formColor
5411          };
5412          Button cancelButton
5413          {
5414             dialog, anchor = { horz = 45, top = 30 }, size = { 80 }, text = $"Cancel", hotKey = escape,
5415             id = DialogResult::cancel, NotifyClicked = ButtonCloseDialog
5416          };
5417          Button okButton
5418          {
5419             dialog, anchor = { horz = -45, top = 30 }, size = { 80 }, text = $"OK", isDefault = true,
5420             id = DialogResult::ok, NotifyClicked = ButtonCloseDialog
5421          };
5422          EditBox nameBox
5423          {
5424             dialog, anchor = { left = 5, right = 5, top = 5 }
5425          };
5426          sprintf(methodName, "%s_%s", selected.name, method.name);
5427          nameBox.contents = methodName;
5428          incref nameBox;
5429          result = dialog.Modal() == ok;
5430          strcpy(methodName, nameBox.contents);
5431          delete nameBox;
5432       }
5433       if(result)
5434       {
5435          // If the method is not attached, move it outside
5436          if(type == 1)
5437          {
5438             // Add this class to the methodName
5439             char name[1024] = "";
5440
5441             if(this.selected != this.oClass && !method.dataType.thisClass)
5442             {
5443                strcat(name, this.selected.instance._class.name);
5444                strcat(name, "::");
5445                strcat(name, this.methodName);
5446                strcpy(this.methodName, name);
5447             }
5448             else if(method.dataType.thisClass && (this.selected == this.oClass || !eClass_IsDerived(this.oClass.instance._class, method.dataType.thisClass.registered)))
5449             {
5450                strcat(name, method.dataType.thisClass.string);
5451                strcat(name, "::");
5452                strcat(name, this.methodName);
5453                strcpy(this.methodName, name);
5454             }
5455
5456             this.moveAttached = true;
5457          }
5458
5459          this.methodAction = actionDetachMethod;
5460          this.method = method;
5461          this.function = function;
5462          ModifyCode();
5463          UpdateFormCode();
5464          Update(null);
5465       }
5466    }
5467
5468    void AddObject(Instance instance, ObjectInfo * object)
5469    {
5470       int id;
5471       incref instance;
5472       //*object = _class.instances.Add(sizeof(ObjectInfo));
5473       *object = ObjectInfo { };
5474       oClass.instances.Insert((selected.oClass == selected) ? null : selected, *object);
5475       (*object).oClass = oClass;
5476       (*object).instance = instance;
5477       for(id = 1;; id++)
5478       {
5479          char name[1024];
5480          ObjectInfo check;
5481          sprintf(name, "%c%s%d", tolower(instance._class.name[0]), instance._class.name+1, id);
5482
5483          // if(strcmp(name, this.oClass.instance.name))
5484
5485          {
5486             for(check = oClass.instances.first; check; check = check.next)
5487                if(!check.deleted && check.name && !strcmp(name, check.name))
5488                   break;
5489             if(!check)
5490             {
5491                (*object).name = CopyString(name);
5492                break;
5493             }
5494          }
5495       }
5496       toolBox.controlClass = null;
5497
5498       ModifyCode();
5499
5500       //sheet.AddObject(*object, (*object).name, TypeData, true);
5501
5502       selected = *object;
5503    }
5504
5505    void EnsureUpToDate()
5506    {
5507       if(sheet && codeModified && parsing)
5508          ParseCode();
5509    }
5510
5511    void SelectObject(ObjectInfo object)
5512    {
5513       selected = object;
5514       oClass = object ? object.oClass : null;
5515       if(designer)
5516          designer.SelectObject(object, object ? object.instance : null);
5517    }
5518
5519    void SelectObjectFromDesigner(ObjectInfo object)
5520    {
5521       selected = object;
5522       sheet.SelectObject(object);
5523    }
5524
5525    void EnumerateObjects(Sheet sheet)
5526    {
5527       ObjectInfo oClass;
5528
5529       for(oClass = classes.first; oClass; oClass = oClass.next)
5530       {
5531          if(oClass.instance)
5532          {
5533             ObjectInfo object;
5534
5535             sheet.AddObject(oClass, oClass.name ? oClass.name : oClass.instance._class.name, typeClass, false);
5536             for(object = oClass.instances.first; object; object = object.next)
5537                sheet.AddObject(object, object.name ? object.name : object.instance._class.name, typeData, false);
5538          }
5539       }
5540       sheet.SelectObject(selected);
5541    }
5542
5543    void AddControl()
5544    {
5545       designer.AddObject();
5546    }
5547
5548    void DeleteObject(ObjectInfo object)
5549    {
5550       delete object.instance;
5551       object.deleted = true;
5552       object.modified = true;
5553       object.oClass.modified = true;
5554       if(object.i18nStrings)
5555       {
5556          Map<String, bool> i18nStrings = object.i18nStrings;
5557          delete i18nStrings;
5558       }
5559
5560       if(selected == object)
5561       {
5562          bool looped = false;
5563          ObjectInfo select = object;
5564
5565          for(;;)
5566          {
5567             select = select.prev;
5568             if(!select)
5569             {
5570                if(looped) break;
5571                select = object.oClass.instances.last;
5572                if(!select) break;
5573                looped = true;
5574             }
5575             if(!select.deleted)
5576                break;
5577          }
5578          sheet.SelectObject(select ? select : oClass);
5579       }
5580
5581       if(!object.instCode && object.oClass != object)
5582       {
5583          delete object.name;
5584          oClass.instances.Delete(object);
5585       }
5586
5587       if(sheet.codeEditor == this)
5588          sheet.DeleteObject(object);
5589    }
5590
5591    void RenameObject(ObjectInfo object, char * name)
5592    {
5593       bool valid = false;
5594
5595       // Validate the name:
5596       if(object != oClass && (!name || !name[0])) valid = true;   // What's this one again?
5597       else if(name[0] && (isalpha(name[0]) || name[0] == '_'))
5598       {
5599          int c;
5600          for(c = 0; name[c]; c++)
5601             if(!isalnum(name[c]) && name[c] != '_' && name[c] != '_')
5602                break;
5603          if(!name[c])
5604             valid = true;
5605       }
5606       if(valid)
5607       {
5608          delete object.name;
5609          object.name = (name && name[0]) ? CopyString(name) : null;
5610
5611          sheet.RenameObject(object, object.name ? object.name : object.instance._class.name);
5612       }
5613    }
5614
5615    void DesignerModifiedObject()
5616    {
5617       sheet.ListProperties(false);
5618       sheet.Update(null);
5619    }
5620
5621    void ListSubMembers(Type member)
5622    {
5623       Type subMember;
5624
5625       for(subMember = member.members.first; subMember; subMember = subMember.next)
5626       {
5627          if(subMember.name)
5628          {
5629             DataRow row = membersList.AddString(subMember.name);
5630             row.icon = icons[typeData];
5631          }
5632          else
5633          {
5634             ListSubMembers(subMember);
5635          }
5636       }
5637    }
5638
5639    void ListSubDataMembers(DataMember member, bool isPrivate)
5640    {
5641       DataMember subMember;
5642       for(subMember = member.members.first; subMember; subMember = subMember.next)
5643       {
5644          if((subMember.memberAccess == publicAccess && !isPrivate) || subMember._class.module == privateModule)
5645          {
5646             if(subMember.name)
5647             {
5648                DataRow row = membersList.AddString(subMember.name);
5649                BitmapResource bitmap = null;
5650                if(!subMember.dataType)
5651                   subMember.dataType = ProcessTypeString(subMember.dataTypeString, false);
5652
5653                if(subMember.dataType && subMember.dataType.kind == classType && subMember.dataType._class)
5654                {
5655                   char * bitmapName = (char *)eClass_GetProperty(subMember.dataType._class.registered, "icon");
5656                   if(bitmapName)
5657                   {
5658                      bitmap = { bitmapName };
5659                      membersList.AddResource(bitmap);
5660                   }
5661                }
5662                row.icon = bitmap ? bitmap : icons[(subMember.memberAccess == publicAccess && !isPrivate) ? typeData : typeDataPrivate];
5663             }
5664             else
5665             {
5666                ListSubDataMembers(subMember, isPrivate || member.memberAccess == privateAccess);
5667             }
5668          }
5669       }
5670    }
5671
5672    void ListClassMembers(Class whatClass, bool methodsOnly)
5673    {
5674       Class _class;
5675       Class baseClass = eSystem_FindClass(this.privateModule, "class");
5676       bool isPrivate = false;
5677
5678       for(_class = whatClass; _class && _class.type != systemClass; _class = _class.base)
5679       {
5680          Method method, methodIt;
5681          DataMember member;
5682          DataMember memberIt;
5683
5684          for(methodIt = (Method)_class.methods.first; methodIt; methodIt = (Method)((BTNode)methodIt).next)
5685          {
5686             method = eClass_FindMethod(whatClass, methodIt.name, privateModule);
5687             if(methodIt.memberAccess == privateAccess && method && method.memberAccess == publicAccess)
5688                method = methodIt;
5689             if(method && method._class.type != systemClass && !eClass_FindMethod(baseClass, method.name, this.privateModule))
5690             {
5691                if(method.memberAccess == publicAccess || method._class.module == privateModule)
5692                {
5693                   DataRow row = membersList.FindString(method.name);
5694                   if(!row)
5695                   {
5696                      row = membersList.AddString(method.name);
5697
5698                      if(!method.dataType)
5699                         method.dataType = ProcessTypeString(method.dataTypeString, false);
5700
5701                      row.icon = icons[(method.type == virtualMethod && method.dataType && method.dataType.thisClass) ? typeEvent : ((method.memberAccess == publicAccess && !isPrivate) ? typeMethod : typeMethodPrivate)];
5702                   }
5703                }
5704             }
5705          }
5706
5707          if(!methodsOnly)
5708          {
5709             for(memberIt = _class.membersAndProperties.first; memberIt; memberIt = memberIt.next)
5710             {
5711                if(memberIt.name)
5712                {
5713                   if(memberIt.isProperty)
5714                   {
5715                      member = (DataMember)eClass_FindProperty(whatClass, memberIt.name, privateModule);
5716                      if(!member)
5717                         member = eClass_FindDataMember(whatClass, memberIt.name, privateModule, null, null);
5718                   }
5719                   else
5720                   {
5721                      member = eClass_FindDataMember(whatClass, memberIt.name, privateModule, null, null);
5722                      if(!member)
5723                         member = (DataMember)eClass_FindProperty(whatClass, memberIt.name, privateModule);
5724                   }
5725
5726                   if(memberIt.memberAccess == privateAccess && member && member.memberAccess == publicAccess)
5727                      member = memberIt;
5728                }
5729                else
5730                   member = memberIt;
5731
5732                if(member && (member.memberAccess == publicAccess || member._class.module == privateModule))
5733                {
5734                   if(member.isProperty)
5735                   {
5736                      Property prop = (Property) member;
5737                      if(!membersList.FindString(prop.name))
5738                      {
5739                         DataRow row = membersList.AddString(prop.name);
5740                         row.icon = icons[(member.memberAccess == publicAccess && !isPrivate) ? typeProperty : typePropertyPrivate];
5741                      }
5742                   }
5743                   else if(member.name && !membersList.FindString(member.name))
5744                   {
5745                      DataRow row = membersList.AddString(member.name);
5746
5747                      BitmapResource bitmap = null;
5748                      if(!member.dataType)
5749                         member.dataType = ProcessTypeString(member.dataTypeString, false);
5750
5751                      if(member.dataType && member.dataType.kind == classType && member.dataType._class)
5752                      {
5753                         char * bitmapName = (char *)eClass_GetProperty(member.dataType._class.registered, "icon");
5754                         if(bitmapName)
5755                         {
5756                            bitmap = { bitmapName };
5757                            membersList.AddResource(bitmap);
5758                         }
5759                      }
5760                      row.icon = bitmap ? bitmap : icons[(member.memberAccess == publicAccess && !isPrivate) ? typeData : typeDataPrivate];
5761                   }
5762                   else
5763                      ListSubDataMembers(member, member.memberAccess == privateAccess);
5764                }
5765             }
5766          }
5767          if(_class.inheritanceAccess == privateAccess)
5768          {
5769             isPrivate = true;
5770             if(_class.module != privateModule) break;
5771          }
5772       }
5773    }
5774
5775    void ListClassMembersMatch(Class whatClass, Type methodType)
5776    {
5777       Class _class;
5778       Class baseClass = eSystem_FindClass(this.privateModule, "class");
5779       bool isPrivate = false;
5780
5781       for(_class = whatClass; _class && _class.type != systemClass; _class = _class.base)
5782       {
5783          Method method;
5784          Property prop;
5785          DataMember member;
5786
5787          for(method = (Method)_class.methods.first; method; method = (Method)((BTNode)method).next)
5788          {
5789             if(method.memberAccess == publicAccess || method._class.module == privateModule)
5790             {
5791                if(method._class.type != systemClass && !eClass_FindMethod(baseClass, method.name, this.privateModule))
5792                {
5793                   if(!method.dataType)
5794                      method.dataType = ProcessTypeString(method.dataTypeString, false);
5795
5796                   if(MatchTypes(method.dataType, methodType, null, whatClass, /*null, */whatClass, false, true, false, false))
5797                   {
5798                      DataRow row = membersList.FindString(method.name);
5799                      if(!row)
5800                      {
5801                         row = membersList.AddString(method.name);
5802                         row.icon = icons[(method.type == virtualMethod && method.dataType.thisClass) ? typeEvent : ((method.memberAccess == publicAccess && !isPrivate) ? typeMethod : typeMethodPrivate)];
5803                      }
5804                   }
5805                }
5806             }
5807          }
5808          if(_class.inheritanceAccess == privateAccess)
5809          {
5810             isPrivate = true;
5811             if(_class.module != privateModule) break;
5812          }
5813       }
5814    }
5815
5816    void ListClassPropertiesAndVirtual(Class whatClass, String curString)
5817    {
5818       Class _class;
5819       bool isPrivate = false;
5820       for(_class = whatClass; _class /*&& _class.type != systemClass*/; _class = _class.base)
5821       {
5822          Method method;
5823          Property prop;
5824          DataMember member;
5825
5826          for(method = (Method)_class.methods.first; method; method = (Method)((BTNode)method).next)
5827          {
5828             if(method.type == virtualMethod)
5829             {
5830                if(method.memberAccess == publicAccess || method._class.module == privateModule)
5831                {
5832                   DataRow row = membersList.FindString(method.name);
5833                   if(!row)
5834                   {
5835                      row = membersList.AddString(method.name);
5836
5837                      if(!method.dataType)
5838                         method.dataType = ProcessTypeString(method.dataTypeString, false);
5839
5840                      row.icon = icons[method.dataType.thisClass ? typeEvent : ((method.memberAccess == publicAccess && !isPrivate) ? typeMethod : typeMethodPrivate)];
5841                   }
5842                }
5843             }
5844          }
5845
5846          for(member = _class.membersAndProperties.first; member; member = member.next)
5847          {
5848             if(member.memberAccess == publicAccess || member._class.module == privateModule)
5849             {
5850                if(member.isProperty)
5851                {
5852                   Property prop = (Property)member;
5853                   {
5854                      DataRow row = membersList.AddString(prop.name);
5855                      row.icon = icons[(member.memberAccess == publicAccess && !isPrivate) ? typeProperty : typePropertyPrivate];
5856                   }
5857                }
5858                else if(member.name && (!curString || strcmp(curString, member.name)))
5859                {
5860                   DataRow row = membersList.AddString(member.name);
5861
5862                   BitmapResource bitmap = null;
5863                   if(!member.dataType)
5864                      member.dataType = ProcessTypeString(member.dataTypeString, false);
5865
5866                   if(member.dataType && member.dataType.kind == classType && member.dataType._class)
5867                   {
5868                      char * bitmapName = (char *)eClass_GetProperty(member.dataType._class.registered, "icon");
5869                      if(bitmapName)
5870                      {
5871                         bitmap = { bitmapName };
5872                         membersList.AddResource(bitmap);
5873                      }
5874                   }
5875                   row.icon = bitmap ? bitmap : icons[(member.memberAccess == publicAccess && !isPrivate) ? typeData : typeDataPrivate];
5876                }
5877                else
5878                   ListSubDataMembers(member, member.memberAccess == privateAccess || isPrivate);
5879             }
5880          }
5881          if(_class.inheritanceAccess == privateAccess)
5882          {
5883             isPrivate = true;
5884             if(_class.module != privateModule) break;
5885          }
5886       }
5887    }
5888
5889    void ListMembers(Type type)
5890    {
5891       if(type && (type.kind == classType || type.kind == structType || type.kind == unionType))
5892       {
5893          Class _class;
5894
5895          if(type.kind == classType)
5896          {
5897             if(type._class)
5898                ListClassMembers(type._class.registered, false);
5899          }
5900          else
5901          {
5902             Type member;
5903             for(member = type.members.first; member; member = member.next)
5904             {
5905                if(member.name)
5906                {
5907                   DataRow row = membersList.AddString(member.name);
5908                   row.icon = icons[typeData];
5909                }
5910                else if(member.kind == structType || member.kind == unionType)
5911                   ListSubMembers(member);
5912             }
5913          }
5914       }
5915    }
5916
5917    void ListModule(Module mainModule, int recurse, bool listClasses)
5918    {
5919       Module module;
5920       ListNameSpace(mainModule.application.systemNameSpace, 1, listClasses);
5921       ListNameSpace(mainModule.application.privateNameSpace, 1, listClasses);
5922       ListNameSpace(mainModule.application.publicNameSpace, 1, listClasses);
5923       for(module = mainModule.application.allModules.first; module; module = module.next)
5924       {
5925          if(ModuleVisibility(mainModule, module))
5926             ListNameSpace(module.publicNameSpace, recurse, listClasses);
5927       }
5928    }
5929
5930    void ListNameSpace(NameSpace nameSpace, int recurse, bool listClasses)
5931    {
5932       NameSpace * ns;
5933       BTNamedLink link;
5934
5935       if(listClasses)
5936       {
5937          for(link = (BTNamedLink)nameSpace.classes.first; link; link = (BTNamedLink)((BTNode)link).next)
5938          {
5939             Class _class = link.data;
5940             if(_class.type != systemClass && !_class.templateClass)  // Omit templatized classes
5941             {
5942                DataRow row = membersList.AddString(_class.name);
5943                row.icon = (_class.type == unitClass || _class.type == enumClass) ? icons[typeDataType] : icons[typeClass];
5944             }
5945          }
5946       }
5947
5948       for(link = (BTNamedLink)nameSpace.defines.first; link; link = (BTNamedLink)((BTNode)link).next )
5949       {
5950          DefinedExpression definedExp = link.data;
5951          DataRow row = membersList.AddString(link /*definedExp*/.name);
5952          row.icon = icons[typeData];
5953       }
5954
5955       for(link = (BTNamedLink)nameSpace.functions.first; link; link = (BTNamedLink)((BTNode)link).next)
5956       {
5957          GlobalFunction function = link.data;
5958          DataRow row = membersList.AddString(link /*function*/.name);
5959          row.icon = icons[typeMethod];
5960       }
5961
5962
5963       for(ns = (NameSpace *)nameSpace.nameSpaces.first; ns; ns = (NameSpace *)((BTNode)ns).next)
5964       {
5965          if(recurse != 2 && listClasses)
5966          {
5967             if(!membersList.FindString(ns->name))
5968             {
5969                DataRow row = membersList.AddString(ns->name);
5970                row.icon = icons[typeNameSpace];
5971             }
5972          }
5973
5974          if(recurse)
5975             ListNameSpace(ns, 2, listClasses);
5976       }
5977    }
5978
5979    void ListEnumValues(Class _class)
5980    {
5981       List<Class> classes { };
5982       for(; _class && _class.type == enumClass; _class = _class.base)
5983          classes.Insert(null, _class);
5984       for(_class : classes)
5985       {
5986          EnumClassData enumeration = (EnumClassData)_class.data;
5987          NamedLink item;
5988          for(item = enumeration.values.first; item; item = item.next)
5989          {
5990             DataRow row = membersList.AddString(item.name);
5991             row.icon = icons[typeEnumValue];
5992          }
5993       }
5994       delete classes;
5995    }
5996
5997    bool ListEnumsModule(Module mainModule, Type dest)
5998    {
5999       bool result = false;
6000       Module module;
6001       result |= ListEnums(mainModule.application.systemNameSpace, dest);
6002       result |= ListEnums(mainModule.application.privateNameSpace, dest);
6003       result |= ListEnums(mainModule.application.publicNameSpace, dest);
6004       for(module = mainModule.application.allModules.first; module; module = module.next)
6005       {
6006          if(ModuleVisibility(mainModule, module))
6007             result |= ListEnums(module.publicNameSpace, dest);
6008       }
6009       return result;
6010    }
6011
6012    void ListNameSpaceByString(Module mainModule, char * string)
6013    {
6014       NameSpace * nameSpace;
6015       Module module;
6016       nameSpace = FindNameSpace(mainModule.application.systemNameSpace, string);
6017       if(nameSpace) ListNameSpace(nameSpace, 0, true);
6018       nameSpace = FindNameSpace(mainModule.application.privateNameSpace, string);
6019       if(nameSpace) ListNameSpace(nameSpace, 0, true);
6020       nameSpace = FindNameSpace(mainModule.application.publicNameSpace, string);
6021       if(nameSpace) ListNameSpace(nameSpace, 0, true);
6022       for(module = mainModule.application.allModules.first; module; module = module.next)
6023       {
6024          if(ModuleVisibility(mainModule, module))
6025          {
6026             nameSpace = FindNameSpace(module.publicNameSpace, string);
6027             if(nameSpace) ListNameSpace(nameSpace, 0, true);
6028          }
6029       }
6030    }
6031
6032    bool ListEnums(NameSpace nameSpace, Type dest)
6033    {
6034       BTNamedLink link;
6035       bool result = false;
6036
6037       for(link = (BTNamedLink)nameSpace.classes.first; link; link = (BTNamedLink)((BTNode)link).next)
6038       {
6039          Class _class = link.data;
6040          if(_class.type == enumClass && (dest.kind != classType || ((!dest._class || !dest._class.registered || (dest._class.registered != _class && strcmp(dest._class.registered.dataTypeString, "char *"))) && !dest.classObjectType)) &&
6041             dest.kind != pointerType && dest.kind != ellipsisType)
6042          {
6043             OldList conversions { };
6044             Type type { };
6045             type.kind = classType;
6046             type._class = FindClass(_class.name);
6047             if(MatchTypes(type, dest, &conversions, null, null, true, false, false, false))
6048             {
6049                ListEnumValues(_class);
6050                result = true;
6051             }
6052             conversions.Free(null);
6053             delete type;
6054          }
6055       }
6056       for(nameSpace = (NameSpace *)nameSpace.nameSpaces.first; nameSpace != null; nameSpace = (NameSpace *)((BTNode)nameSpace).next)
6057       {
6058          result |= ListEnums(nameSpace, dest);
6059       }
6060       return result;
6061    }
6062
6063    NameSpace * FindNameSpace(NameSpace nameSpace, char * name)
6064    {
6065       int start = 0, c;
6066       char ch;
6067       for(c = 0; (ch = name[c]); c++)
6068       {
6069          if(ch == '.' || (ch == ':' && name[c+1] == ':'))
6070          {
6071             NameSpace * newSpace;
6072             char * spaceName = new char[c - start + 1];
6073             memcpy(spaceName, name + start, c - start);
6074             spaceName[c-start] = '\0';
6075             newSpace = (NameSpace *)nameSpace.nameSpaces.FindString(spaceName);
6076             delete spaceName;
6077             if(!newSpace)
6078                return null;
6079             nameSpace = newSpace;
6080             if(ch == ':') c++;
6081             start = c+1;
6082          }
6083       }
6084       if(c - start)
6085       {
6086          // name + start;
6087       }
6088       return (NameSpace *)nameSpace;
6089    }
6090
6091    void ListSymbols(Expression exp, bool enumOnly, char * string, Identifier realIdentifier)
6092    {
6093       bool listedEnums = false;
6094       Type destType = (exp && exp.destType && !exp.destType.truth) ? exp.destType : null;
6095       bool listClasses = true;
6096
6097       if(exp && (exp.type == identifierExp || exp.type == memberExp))
6098       {
6099          // TOCHECK: This memberExp check wasn't here... Some stuff isn't quite done
6100          Identifier id = (exp.type == memberExp) ? exp.member.member : exp.identifier;
6101          char * colons = id ? RSearchString(id.string, "::", strlen(id.string), true, false) : null;
6102
6103          if(exp.type == identifierExp)
6104             id = realIdentifier;
6105
6106          if(id && id._class && !id._class.name)
6107          {
6108             listClasses = false;
6109             SetThisClass(null);
6110          }
6111          else if(id && id._class && id._class.name)
6112          {
6113             if(id.classSym)
6114             {
6115                Class _class = id.classSym.registered;
6116                if(_class && _class.type == enumClass)
6117                {
6118                   ListEnumValues(_class);
6119                }
6120                else
6121                   ListClassMembers(id.classSym.registered, true);
6122                return;
6123             }
6124             return;
6125          }
6126          else if(id && colons)
6127          {
6128             ListNameSpaceByString(this.privateModule, id.string);
6129             return;
6130          }
6131       }
6132
6133       if(this.privateModule && destType && (destType.kind != pointerType || destType.type.kind != voidType) && destType.kind != ellipsisType)
6134       {
6135          listedEnums = ListEnumsModule(this.privateModule, destType);
6136       }
6137
6138       if(destType && destType.kind == classType && destType._class.registered && destType._class.registered.type == enumClass)
6139       {
6140          ListEnumValues(destType._class.registered);
6141
6142          if(insideClass)
6143             ListClassPropertiesAndVirtual(insideClass, null);
6144
6145          listedEnums = true;
6146       }
6147       else if(destType && destType.kind == enumType)
6148       {
6149          NamedLink value;
6150
6151          for(value = destType.members.first; value; value = value.next)
6152          {
6153             DataRow row = membersList.AddString(value.name);
6154             row.icon = icons[typeEnumValue];
6155          }
6156
6157          if(insideClass)
6158             ListClassPropertiesAndVirtual(insideClass, null);
6159
6160          listedEnums = true;
6161       }
6162       else if(insideClass && !enumOnly)
6163       {
6164          ListClassPropertiesAndVirtual(insideClass, string);
6165       }
6166
6167       if(listedEnums && string && string[0])
6168       {
6169          DataRow row = membersList.FindSubString(string);
6170          if(!row)
6171             listedEnums = false;
6172       }
6173
6174       if(!insideClass && exp && exp.destType && exp.destType.kind == functionType && GetThisClass())
6175       {
6176          ListClassMembersMatch(GetThisClass(), exp.destType);
6177       }
6178       else if(!insideClass && !enumOnly && !listedEnums)
6179       {
6180          Context ctx;
6181          Symbol symbol = null;
6182          {
6183             if(GetThisClass())
6184             {
6185                ListClassMembers(GetThisClass(), false);
6186             }
6187
6188             for(ctx = listClasses ? GetCurrentContext() : GetTopContext(); ctx != GetTopContext().parent && !symbol; ctx = ctx.parent)
6189             {
6190                for(symbol = (Symbol)ctx.symbols.first; symbol; symbol = (Symbol)((BTNode)symbol).next)
6191                {
6192                   // Don't list enum values?
6193                   //if(symbol.type.kind != TypeEnum)
6194                   DataRow row = membersList.FindString(symbol.string);
6195                   if(!row)
6196                   {
6197                      if(GetBuildingEcereComModule() && symbol.type && symbol.type.kind == functionType && eSystem_FindFunction(privateModule, symbol.string))
6198                         continue;
6199                      row = membersList.AddString(symbol.string);
6200                      if(symbol.type && symbol.type.kind == functionType)
6201                         row.icon = icons[typeMethod];
6202                      else if(symbol.type && symbol.type.kind == enumType)
6203                      {
6204                         row.icon = icons[typeEnumValue];
6205                      }
6206                      else
6207                      {
6208                         BitmapResource bitmap = null;
6209                         if(symbol.type && symbol.type.kind == classType && symbol.type._class && symbol.type._class)
6210                         {
6211                            char * bitmapName = (char *)eClass_GetProperty(symbol.type._class.registered, "icon");
6212                            if(bitmapName)
6213                            {
6214                               bitmap = { bitmapName };
6215                               membersList.AddResource(bitmap);
6216                            }
6217                         }
6218                         row.icon = bitmap ? bitmap : icons[typeData];
6219                      }
6220                   }
6221                }
6222
6223                if(listClasses)
6224                {
6225                   for(symbol = (Symbol)ctx.types.first; symbol; symbol = (Symbol)((BTNode)symbol).next)
6226                   {
6227                      DataRow row = membersList.FindString(symbol.string);
6228                      if(!row)
6229                      {
6230                         row = membersList.AddString(symbol.string);
6231                         if(symbol.type.kind == functionType)
6232                            row.icon = icons[typeMethod];
6233                         else if(symbol.type.kind == classType && (!symbol.type._class.registered || (symbol.type._class.registered.type != unitClass && symbol.type._class.registered.type != enumClass)))
6234                         {
6235                            row.icon = icons[typeClass];
6236                         }
6237                         else
6238                         {
6239                            row.icon = icons[typeDataType];
6240                         }
6241                      }
6242                   }
6243                }
6244             }
6245
6246             ListModule(this.privateModule, 1, listClasses);
6247             // TODO: Implement this with name space
6248             /*
6249             {
6250                GlobalData data;
6251                for(data = globalData.first; data; data = data.next)
6252                {
6253                   DataRow row = membersList.FindString(data.name);
6254                   if(!data.dataType)
6255                      data.dataType = ProcessTypeString(data.dataTypeString, false);
6256                   if(!row)
6257                   {
6258                      row = membersList.AddString(data.name);
6259
6260                      if(data.dataType && data.dataType.kind == TypeEnum)
6261                      {
6262                         row.icon = icons[typeEnumValue];
6263                      }
6264                      else
6265                      {
6266                         BitmapResource bitmap = null;
6267                         if(data.dataType && data.dataType.kind == classType && data.dataType._class && data.dataType._class)
6268                         {
6269                            char * bitmapName = (char *)eClass_GetProperty(data.dataType._class.registered, "icon");
6270                            if(bitmapName)
6271                            {
6272                               bitmap = { bitmapName };
6273                               membersList.AddResource(bitmap);
6274                            }
6275                         }
6276                         row.icon = bitmap ? bitmap : icons[typeData];
6277                      }
6278                   }
6279                }
6280             }
6281             */
6282
6283             {
6284                DataRow row = membersList.AddString("Min");
6285                row.icon = icons[typeMethod];
6286
6287                row = membersList.AddString("Max");
6288                row.icon = icons[typeMethod];
6289
6290                row = membersList.AddString("Abs");
6291                row.icon = icons[typeMethod];
6292
6293                row = membersList.AddString("Sgn");
6294                row.icon = icons[typeMethod];
6295             }
6296          }
6297       }
6298    }
6299
6300    void OverrideVirtualFunction(ClassFunction function, Method method, Class _class, bool isInstance, bool extraIndent)
6301    {
6302       EditBoxStream f { editBox = editBox };
6303       uint position = 0;
6304       EditLine l1, l2;
6305       int x1,y1,x2,y2;
6306
6307       updatingCode = true;
6308
6309       if(!method.dataType)
6310          method.dataType = ProcessTypeString(method.dataTypeString, false);
6311
6312       DeleteJunkBefore(f, function.loc.start.pos, &position);
6313       f.DeleteBytes(function.loc.end.pos - function.loc.start.pos - 1);
6314
6315       // ADDING METHOD HERE
6316       {
6317          Type dataType = method.dataType;
6318          Type returnType = dataType.returnType;
6319          Type param;
6320          Class moduleClass = eSystem_FindClass(this.privateModule, "Module");
6321
6322          if(insideDef.prev)
6323              f.Printf("\n\n");
6324          else
6325             f.Printf("\n");
6326          if(extraIndent) f.Printf("   ");
6327          f.Printf("   ");
6328          OutputType(f, returnType, false);
6329
6330          f.Printf(" ");
6331
6332          if(dataType.thisClass && !dataType.classObjectType && (!isInstance || !insideClass || !eClass_IsDerived(insideClass, dataType.thisClass.registered)))
6333          {
6334             if(dataType.thisClass.shortName)
6335                f.Printf(dataType.thisClass.shortName);
6336             else
6337                f.Printf(dataType.thisClass.string);
6338             f.Printf("::");
6339          }
6340          f.Printf(method.name);
6341          f.Printf("(");
6342          for(param = dataType.params.first; param; param = param.next)
6343          {
6344             // Decided not to write void...
6345             if(param.kind != voidType)
6346             {
6347                OutputType(f, param, true);
6348                if(param.next)
6349                   f.Printf(", ");
6350             }
6351          }
6352          f.Printf(")\n");
6353          if(extraIndent) f.Printf("   ");
6354          f.Printf("   %c\n", OpenBracket);
6355
6356          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6357
6358          f.Printf("\n");
6359
6360          if(!_class ||
6361             (
6362                (isInstance ? _class : _class.base)._vTbl[method.vid] == moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad] ||
6363                (isInstance ? _class : _class.base)._vTbl[method.vid] == DummyMethod)) // Temp Check for DefaultFunction
6364          {
6365             if(returnType && returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
6366             {
6367                if(extraIndent) f.Printf("   ");
6368                f.Printf("      return true;\n");
6369             }
6370             else if(returnType && returnType.kind != voidType)
6371             {
6372                if(extraIndent) f.Printf("   ");
6373                f.Printf("      return 0;\n");
6374             }
6375          }
6376          else
6377          {
6378             if(extraIndent) f.Printf("   ");
6379             f.Printf("      ");
6380             if(returnType.kind != voidType)
6381                f.Printf("return ");
6382             f.Printf("%s::%s(", isInstance ? _class.name : _class.base.name, method.name);
6383             for(param = dataType.params.first; param; param = param.next)
6384             {
6385                if(param.prev) f.Printf(", ");
6386                if(param.kind != voidType)
6387                   f.Printf(param.name);
6388             }
6389             f.Printf(");\n");
6390          }
6391       }
6392
6393       if(extraIndent) f.Printf("   ");
6394       f.Printf("   %c", CloseBracket);
6395       // f.Printf("\n");
6396
6397       delete f;
6398
6399       if(extraIndent) { x1 += 3; x2 += 3; }
6400       editBox.SetSelPos(l1, y1, x1 + 6, l2, y2, x2 + 6);
6401
6402       this.updatingCode = false;
6403
6404    }
6405
6406    // Return false if we overrided a function and don't want to run params listing
6407    bool InvokeAutoComplete(bool enumOnly, int pointer, bool caretMove)
6408    {
6409       bool didOverride = false;
6410       EditLine line = editBox.line;
6411       char * text = line.text;
6412       int lineNum, charPos;
6413       Expression exp = null;
6414       EditLine l1, l2;
6415       int x1,y1, x2,y2;
6416       //Identifier id = null;
6417       Expression memberExp = null;
6418       Identifier realIdentifier = null;
6419
6420       if(!parsing) return true;
6421       if(!privateModule) return !didOverride;
6422
6423       insideFunction = null;
6424
6425       charPos = editBox.charPos + 1;
6426       if(!membersListShown)
6427       {
6428          EnsureUpToDate();
6429       }
6430
6431       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6432       {
6433          EditBoxStream f { editBox = editBox };
6434
6435          updatingCode = true;
6436          editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6437          for(;;)
6438          {
6439             char ch;
6440             if(!f.Seek(-1, current))
6441                break;
6442             f.Getc(&ch);
6443             if(!isspace(ch)) break;
6444             f.Seek(-1, current);
6445          }
6446          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6447
6448          lineNum = editBox.lineNumber + 1;
6449          charPos = editBox.charPos + 1;
6450          delete f;
6451          updatingCode = false;
6452       }
6453
6454       if(!membersListShown)
6455       {
6456          memberExp = FindExpTree(ast, lineNum, charPos);
6457          if(memberExp && (memberExp.type == TypeKind::memberExp || memberExp.type == pointerExp) && !memberExp.addedThis)
6458          {
6459          }
6460          else if(!pointer)
6461          {
6462             editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6463             {
6464                EditBoxStream f { editBox = editBox };
6465                char ch = 0;
6466
6467                updatingCode = true;
6468
6469                editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6470
6471                f.Getc(&ch);
6472                if(ch == '}' || ch == ',' || ch == ')')
6473                {
6474                   f.Seek(-1, current);
6475                   ch = ' ';
6476                }
6477                if(isspace(ch))
6478                {
6479                   for(;;)
6480                   {
6481                      char ch;
6482                      if(!f.Seek(-1, current))
6483                         break;
6484                      f.Getc(&ch);
6485                      if(!isspace(ch)) break;
6486                      f.Seek(-1, current);
6487                   }
6488                }
6489                else
6490                   f.Seek(-1, current);
6491
6492                editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6493
6494                lineNum = editBox.lineNumber + 1;
6495                charPos = editBox.charPos + 1;
6496                delete f;
6497                updatingCode = false;
6498             }
6499
6500             realIdentifier = FindCtxTree(ast, lineNum, charPos);
6501             exp = ctxInsideExp;
6502          }
6503       }
6504
6505       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6506       lineNum = editBox.lineNumber + 1;
6507       charPos = editBox.charPos/* + 1*/;
6508
6509       {
6510          int rowCount;
6511          char tempString[1024];
6512          char * string = null;
6513          CodePosition idStart, idEnd;
6514
6515          if(membersListShown)
6516          {
6517             char * buffer = membersLine.text;
6518             int c;
6519             bool firstChar = true;
6520             int len = 0;
6521             string = tempString;
6522
6523             for(c = membersLoc.start.charPos; c<membersLoc.end.charPos; c++)
6524             {
6525                bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
6526                if(!isSpace) firstChar = false;
6527                if(!firstChar)
6528                   string[len++] = buffer[c];
6529             }
6530             string[len] = 0;
6531          }
6532          else //if(realIdentifier)//if(id)
6533          {
6534             /*
6535             char * buffer = id.string;
6536             int c;
6537             bool firstChar = true;
6538             int len = 0;
6539             string = tempString;
6540             for(c = 0; c<= charPos - id.loc.start.charPos; c++)
6541             {
6542                bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
6543                if(!isSpace) firstChar = false;
6544                if(!firstChar)
6545                   string[len++] = buffer[c];
6546             }
6547             string[len] = 0;
6548             */
6549             int x, y;
6550             int len = 0;
6551             EditLine editLine = editBox.line;
6552             bool firstChar = true;
6553             bool done = false;
6554
6555             string = tempString;
6556             for(y = lineNum-1; y >= 0; y--)
6557             {
6558                char * buffer = editLine.text;
6559                int lineCount = editLine.count;
6560                for(x = (y == lineNum-1) ? (Min(charPos, lineCount) - 1 ): lineCount-1; x >= 0; x--)
6561                {
6562                   bool isSpace = (buffer[x] == ' ' || buffer[x] == '\t');
6563                   if(!isSpace)
6564                   {
6565                      if(firstChar)
6566                      {
6567                         idEnd.charPos = x + 2;
6568                         idEnd.line = y + 1;
6569                      }
6570                      firstChar = false;
6571                   }
6572                   // TESTING THIS CODE HERE FOR NOT CONSIDERING bool when doing ctrl-space past it
6573                   else if(firstChar)
6574                   {
6575                      idEnd.charPos = x + 2;
6576                      idEnd.line = y + 1;
6577                      done = true;
6578                      break;
6579                   }
6580                   if(!firstChar)
6581                   {
6582                      if(!isalnum(buffer[x]) && buffer[x] != '_')
6583                      {
6584                         x++;
6585                         done = true;
6586                         break;
6587                      }
6588                      memmove(string+1, string, len++);
6589                      string[0] = buffer[x];
6590                   }
6591                }
6592
6593                //if(done || firstChar)
6594                if(done || !firstChar)
6595                   break;
6596                editLine = editLine.prev;
6597             }
6598             string[len] = 0;
6599             if(!strcmp(string, "case"))
6600             {
6601                idEnd.charPos += 4;
6602                x+=4;
6603                string[0] = '\0';
6604             }
6605             else if(!strcmp(string, "return"))
6606             {
6607                idEnd.charPos += 6;
6608                x+=6;
6609                string[0] = '\0';
6610             }
6611             else if(!strcmp(string, "delete"))
6612             {
6613                idEnd.charPos += 6;
6614                x+=6;
6615                string[0] = '\0';
6616             }
6617             else if(!strcmp(string, "new"))
6618             {
6619                idEnd.charPos += 3;
6620                x+=3;
6621                string[0] = '\0';
6622             }
6623             else if(!strcmp(string, "renew"))
6624             {
6625                idEnd.charPos +=5;
6626                x+=5;
6627                string[0] = '\0';
6628             }
6629             if(x < 0) x = 0;
6630
6631             idStart.charPos = x + 1;
6632             idStart.line = y + 1;
6633          }
6634
6635          if(!membersListShown)
6636          {
6637             membersList.Clear();
6638             if(memberExp && (memberExp.type == ExpressionType::memberExp || memberExp.type == pointerExp) && !memberExp.addedThis)
6639             {
6640                Type type = memberExp.member.exp.expType;
6641                if(pointer == 2 && type)
6642                {
6643                   if(type.kind == pointerType || type.kind == arrayType)
6644                      type = type.type;
6645                   /*else
6646                      type = null;*/
6647                }
6648                ListMembers(type);
6649             }
6650             else if(!pointer)
6651             {
6652                ListSymbols(exp, enumOnly, string, realIdentifier);
6653             }
6654             membersList.Sort(null, 1);
6655          }
6656
6657          if(insideFunction)
6658          {
6659             // Virtual function override
6660             Identifier id = GetDeclId(insideFunction.declarator);
6661             char * string = id ? id.string : null;
6662
6663             Method method = eClass_FindMethod(GetThisClass(), string, this.privateModule);
6664             if(method)
6665             {
6666                if(method.type != virtualMethod || (!insideInstance && method._class == GetThisClass()))
6667                   insideFunction = null;
6668                else
6669                {
6670                   OverrideVirtualFunction(insideFunction, method, GetThisClass(), insideInstance, insideInstance && insideClass);
6671                   didOverride = true;
6672                }
6673             }
6674          }
6675          if(!didOverride) //insideFunction)
6676          {
6677             rowCount = membersList.rowCount;
6678             if(rowCount)
6679             {
6680                DataRow row = string ? membersList.FindSubString(string) : null;
6681                if(row && !membersList.FindSubStringAfter(row, string) && !caretMove)
6682                {
6683                   char * newString = row.string;
6684                   if(!membersListShown)
6685                   {
6686                      membersLoc.start.line = idStart.line-1;
6687                      membersLoc.start.charPos = idStart.charPos-1;
6688                      //membersLoc.end = membersLoc.start;
6689                       membersLoc.end.charPos = idEnd.charPos-1;
6690                       membersLoc.end.line = idEnd.line-1;
6691                      //membersLoc.end.charPos = idStart.charPos + strlen(string)-1; //end.charPos-1;
6692                      //membersLoc.end.charPos = idStart.charPos + strlen(string)-1; //end.charPos-1;
6693                      membersLine = line;
6694                   }
6695                   else
6696                   {
6697                      membersList.Destroy(0);
6698                      membersListShown = false;
6699                   }
6700
6701                   editBox.GoToPosition(membersLine, membersLoc.start.line, membersLoc.start.charPos);
6702                   editBox.Delete(
6703                      line, membersLoc.start.line, membersLoc.start.charPos,
6704                      line, membersLoc.end.line, membersLoc.end.charPos);
6705                   editBox.PutS(newString);
6706                }
6707                else
6708                {
6709                   if(!row)
6710                   {
6711                      row = membersList.FindSubStringi(string);
6712                      if(row)
6713                         membersList.currentRow = row;
6714                      membersList.currentRow.selected = false;
6715                   }
6716                   else
6717                      membersList.currentRow = row;
6718
6719                   if(!membersListShown)
6720                   {
6721                      Point caret;
6722
6723                      // TESTING THESE ADDITIONS TO THE IF SO THAT CARET ISNT MOVED IF NOT ON TOP OF A WORD
6724                      if(string && string[0] && lineNum == idStart.line && charPos >= idStart.charPos-1 && charPos <= idEnd.charPos-1)
6725                         editBox.SetSelPos(l1, y1, idStart.charPos-1, l2, y2, idStart.charPos-1);
6726                      editBox.GetCaretPosition(caret);
6727                      editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6728
6729                      membersList.master = this;
6730
6731                      caret.y += editBox.GetCaretSize();
6732                      caret.x -= 20;
6733                      membersList.Create();
6734
6735                      {
6736                         int x = caret.x + editBox.absPosition.x - app.desktop.absPosition.x - editBox.scroll.x;
6737                         int y = caret.y + editBox.absPosition.y - app.desktop.absPosition.y - editBox.scroll.y;
6738                         Window parent = membersList.parent;
6739
6740                         if(!paramsAbove && (paramsShown || y + membersList.size.h > parent.clientSize.h))
6741                         {
6742                            y -= editBox.GetCaretSize() + membersList.size.h;
6743                            membersAbove = true;
6744                         }
6745                         else
6746                            membersAbove = false;
6747
6748                         membersList.position = { x, y };
6749                      }
6750
6751                      membersLine = l1;
6752                      membersLoc.start.line = lineNum - 1;
6753
6754                      if(string && string[0])
6755                      {
6756                         membersLoc.start.charPos = idStart.charPos-1;
6757                         membersLoc.end = membersLoc.start;
6758                         //membersLoc.end.charPos = id.loc.end.charPos-1;
6759                         membersLoc.end.charPos = idStart.charPos + strlen(string)-1; //end.charPos-1;
6760                      }
6761                      else
6762                      {
6763                         membersLoc.start.charPos = charPos;
6764                         membersLoc.end = membersLoc.start;
6765                         membersLoc.end.charPos = charPos;
6766                      }
6767                      membersListShown = true;
6768
6769                      // Hack to keep caret shown
6770                      editBox.GetCaretPosition(caret);
6771                      editBox.SetCaret(caret.x, caret.y, editBox.GetCaretSize());
6772                   }
6773                   if(row)
6774                      membersList.SetScrollPosition(0, row.index * membersList.rowHeight);
6775                }
6776             }
6777          }
6778       }
6779
6780       SetCurrentContext(globalContext);
6781       SetThisClass(null);
6782
6783       return !didOverride;
6784    }
6785
6786    void InvokeParameters(bool exact, bool reposition, bool caretMove)
6787    {
6788       EditLine line = editBox.line;
6789       char * text = line.text;
6790       int lineNum, charPos;
6791       Expression exp = null;
6792       EditLine l1, l2;
6793       int x1,y1, x2,y2;
6794
6795       if(!parsing) return;
6796
6797       charPos = editBox.charPos + 1;
6798       EnsureUpToDate();
6799
6800       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6801       {
6802          EditBoxStream f { editBox = editBox };
6803          char ch;
6804
6805          updatingCode = true;
6806          editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6807
6808          f.Getc(&ch);
6809          if(ch == '}' || ch == ',' || ch == ')')
6810          {
6811             f.Seek(-1, current);
6812             ch = ' ';
6813          }
6814          if(isspace(ch))
6815          {
6816             for(;;)
6817             {
6818                char ch;
6819                if(!f.Seek(-1, current))
6820                   break;
6821                f.Getc(&ch);
6822                if(!isspace(ch)) break;
6823                f.Seek(-1, current);
6824             }
6825          }
6826          else
6827             f.Seek(-1, current);
6828
6829          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6830
6831          lineNum = editBox.lineNumber + 1;
6832          charPos = editBox.charPos + 1;
6833          delete f;
6834          updatingCode = false;
6835       }
6836
6837       charPos = Min(charPos, l1.count + 1);
6838       if(!caretMove)
6839          FindParamsTree(ast, lineNum, charPos);
6840
6841       // Not sure about this == ExpCall... paramsInsideExp doesn't seem to necessarily be a ExpCall
6842       if(exact && ((::functionType && paramsInsideExp.type == callExp && paramsInsideExp.call.exp.loc.end.charPos != charPos-1) /*|| instanceType*/))
6843       {
6844          ::functionType = null;
6845          ::instanceType = null;
6846       }
6847
6848       //if((::functionType || ::instanceType) && (!paramsShown || insideExp != functionExp || ::paramsID != this.paramsID))
6849       if((::functionType || ::instanceType) && (!paramsShown || true /*paramsInsideExp.destType != functionExp.destType */|| ::paramsID != this.paramsID))
6850       {
6851
6852          int x, y;
6853          Window parent = paramsList.parent;
6854
6855          if(this.functionType != ::functionType || this.instanceType != ::instanceType)
6856             reposition = false;
6857
6858          if(!this.paramsShown || reposition || paramsInsideExp != functionExp || ::instanceType) // Added instanceType here, otherwise instance popups never reposition...
6859                                                                                                           // ( Dummy exp: always ends up with same memory)
6860          {
6861             editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6862             editBox.GetCaretPosition(paramsPosition);
6863             this.paramsPosition.y += editBox.GetCaretSize();
6864          }
6865
6866          FreeType(this.functionType);
6867          FreeType(this.instanceType);
6868
6869          this.functionType = ::functionType;
6870          this.instanceType = ::instanceType;
6871
6872          if(this.functionType) this.functionType.refCount++;
6873          if(this.instanceType) this.instanceType.refCount++;
6874
6875          this.paramsID = ::paramsID;
6876          functionExp = paramsInsideExp;
6877
6878          paramsList.master = this;
6879
6880          paramsList.Create();
6881
6882          x = paramsPosition.x + editBox.absPosition.x - app.desktop.absPosition.x - editBox.scroll.x;
6883          y = paramsPosition.y + editBox.absPosition.y - app.desktop.absPosition.y - editBox.scroll.y;
6884
6885          if(!this.membersAbove && ( this.membersListShown || y + paramsList.size.h > parent.clientSize.h) )
6886          {
6887             y -= editBox.GetCaretSize() + paramsList.clientSize.h;
6888             paramsAbove = true;
6889          }
6890          else
6891             paramsAbove = false;
6892          if(x + paramsList.size.w > parent.clientSize.w)
6893          {
6894             x = parent.clientSize.w - paramsList.size.w;
6895             if(x < 0) x = 0;
6896          }
6897
6898          paramsList.position = { x, y };
6899
6900          // Hack to keep caret shown
6901          {
6902             Point caret;
6903             editBox.GetCaretPosition(caret);
6904             editBox.SetCaret(caret.x, caret.y, editBox.GetCaretSize());
6905          }
6906
6907          this.paramsShown = true;
6908       }
6909       else if((!::functionType && !::instanceType) || reposition)
6910       {
6911          paramsList.Destroy(0);
6912          paramsShown = false;
6913
6914          FreeType(this.functionType);
6915          FreeType(this.instanceType);
6916          this.functionType = null;
6917          this.instanceType = null;
6918          this.paramsID = -1;
6919       }
6920
6921       SetCurrentContext(globalContext);
6922       SetThisClass(null);
6923    }
6924
6925    bool ViewDesigner()
6926    {
6927       if(designer)
6928       {
6929          designer.visible = true;
6930          designer.Activate();
6931       }
6932       return true;
6933    }
6934 };
6935
6936 CodeEditor NewCodeEditor(Window parent, WindowState state, bool modified)
6937 {
6938    CodeEditor document { state = state, parent = parent, modifiedDocument = modified };
6939    document.Create();
6940    return document;
6941 }
6942
6943 static int nofdigits(int v)
6944 {
6945    if(v == MININT) return 10 + 1;
6946    if(v < 0) return nofdigits(-v) + 1;
6947    if(v >= 10000)
6948    {
6949       if(v >= 10000000)
6950       {
6951          if(v >= 100000000)
6952          {
6953             if(v >= 1000000000)
6954                return 10;
6955             return 9;
6956          }
6957          return 8;
6958       }
6959       if(v >= 100000)
6960       {
6961          if(v >= 1000000)
6962             return 7;
6963          return 6;
6964       }
6965       return 5;
6966    }
6967    if(v >= 100)
6968    {
6969       if(v >= 1000)
6970          return 4;
6971       return 3;
6972    }
6973    if(v >= 10)
6974       return 2;
6975    return 1;
6976 }