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