289d9acabe5d3e250cc842f89f1f5346a681812c
[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       selected.modified = true;
2614       selected.oClass.modified = true;
2615
2616       designer.modifiedDocument = true;
2617       modifiedDocument = true;
2618       formModified = true;
2619    }
2620
2621    /****************************************************************************
2622                                  PARSING
2623    ****************************************************************************/
2624    void FreeParser()
2625    {
2626       {
2627          Class windowClass = eSystem_FindClass(privateModule, "ecere::gui::Window");
2628          if(windowClass && windowClass.data)
2629             UnapplySkin(windowClass);
2630       }
2631
2632       SetCurrentNameSpace(null);
2633       if(ast)
2634       {
2635          FreeASTTree(ast);
2636          ast = null;
2637       }
2638       defines.Free(FreeModuleDefine);
2639       imports.Free(FreeModuleImport);   // Moved this after FreeAST because Debug printing causes ModuleImports to be created
2640
2641       FreeExcludedSymbols(excludedSymbols);
2642       FreeContext(globalContext);
2643       FreeIncludeFiles();
2644       FreeGlobalData(&globalData);
2645       FindCtx_Terminate();
2646       FindParams_Terminate();
2647
2648       if(GetGlobalContext() == globalContext)
2649       {
2650          SetGlobalData(null);
2651          SetGlobalContext(null);
2652          SetExcludedSymbols(null);
2653          SetTopContext(null);
2654          SetCurrentContext(null);
2655          SetDefines(null);
2656          SetImports(null);
2657          SetPrivateModule(null);
2658       }
2659
2660       // Note: This code should probably be merged with FreeParser()
2661       if(ast)
2662       {
2663          FreeASTTree(ast);
2664          ast = null;
2665          //SetAST(null);
2666       }
2667       defines.Free(FreeModuleDefine);
2668       imports.Free(FreeModuleImport);
2669
2670       FreeContext(this.globalContext);
2671       FreeExcludedSymbols(this.excludedSymbols);
2672
2673       FreeIncludeFiles();
2674       FreeGlobalData(&this.globalData);
2675
2676       if(this.privateModule)
2677       {
2678          FreeTypeData(this.privateModule);
2679          delete this.privateModule;
2680       }
2681    }
2682
2683    void ParseCode()
2684    {
2685       static bool reentrant = false;
2686       External external;
2687       File editFile;
2688       EditLine l1, l2;
2689       int x1,x2,y1,y2;
2690       char * selectedClassName = null, * selectedName = null;
2691       int selectedPos = 0;
2692       Designer backDesigner;
2693       char oldWorkDir[MAX_LOCATION];
2694       char mainModuleName[MAX_FILENAME] = "";
2695       const char * fileName;
2696       ImportedModule module;
2697       char extension[MAX_EXTENSION];
2698       PathBackup pathBackup { };
2699 #ifdef _TIMINGS
2700       Time parseCodeStart = GetTime();
2701       Time startTime, startFindClass;
2702
2703       findClassTotalTime = 0;
2704       checkTypeTotalTime = 0;
2705       externalImportTotalTime = 0;
2706       findClassIgnoreNSTotalTime = 0;
2707       findSymbolTotalTime = 0;
2708       //ResetClassFindTime();
2709 #endif
2710       Project project;
2711
2712       // 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)
2713       if(reentrant) return;
2714       reentrant = true;
2715
2716       updatingCode++;
2717
2718       if(selected)
2719       {
2720          selectedClassName = CopyString(oClass.name);
2721          if(selected != oClass)
2722          {
2723             ObjectInfo object = this.selected;
2724             selectedName = CopyString(object.name);
2725             if(!selectedName)
2726             {
2727                ObjectInfo check;
2728                for(check = this.oClass.instances.first; check; check = check.next)
2729                {
2730                   if(check == object)
2731                      break;
2732                   selectedPos++;
2733                }
2734             }
2735          }
2736          else
2737             selectedPos = -1;
2738       }
2739
2740       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
2741
2742       /*
2743       sprintf(command, "C:\\Program Files\\Microsoft Visual Studio\\VC98\\Bin\\cl "
2744          "/nologo /D \"MSC\" /D \"WIN32\" /D \"NDEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" "
2745          "/I \"C:\\Program Files\\Microsoft Visual Studio\\VC98\\Include\" "
2746          "/I T:\\ecere\\include /E %s", argv[1]);
2747       */
2748
2749       /*
2750       ChangeWorkingDir("e:\\ec");
2751       sprintf(command, "gcc -x c -E -");
2752       fileInput = DualPipeOpen({ output = true, input = true }, command);
2753       SetFileInput(fileInput);
2754       {
2755          for(;;)
2756          {
2757             byte buffer[8192];
2758             uint count = editFile.Read(buffer, 1, sizeof(buffer));
2759             if(count)
2760                fileInput.Write(buffer, 1, count);
2761             else
2762                break;
2763          }
2764          delete editFile;
2765          fileInput.CloseOutput();
2766       }
2767       */
2768
2769       // TOCHECK: COULDN'T WE CALL FreeParser here?
2770       // Clear everything
2771       FreeType(this.functionType);
2772       FreeType(this.instanceType);
2773       this.functionType = null;
2774       this.instanceType = null;
2775
2776       // Select nothing
2777       sheet.SelectObject(null);
2778
2779       designer.Reset();
2780
2781       selected = null;
2782
2783       // We don't want the designer to be notified of selection when deleting rows...
2784       backDesigner = designer;
2785       designer = null;
2786
2787       if(this.oClass)
2788       {
2789          ObjectInfo _class, next;
2790
2791          for(_class = classes.first; _class; _class = next)
2792          {
2793             ObjectInfo object;
2794
2795             next = _class.next;
2796
2797             while((object = _class.instances.first))
2798             {
2799                if(object.instance)
2800                {
2801                   Designer::DestroyObject(object.instance);
2802                   delete object.instance;
2803                }
2804                if(object.i18nStrings)
2805                {
2806                   Map<String, bool> i18nStrings = object.i18nStrings;
2807                   delete i18nStrings;
2808                }
2809                sheet.DeleteObject(object);
2810                delete object.name;
2811                _class.instances.Delete(object);
2812             }
2813             if(_class.instance)
2814             {
2815                Designer::DestroyObject(_class.instance);
2816                delete _class.instance;
2817             }
2818             if(_class.i18nStrings)
2819             {
2820                Map<String, bool> i18nStrings = _class.i18nStrings;
2821                delete i18nStrings;
2822             }
2823             sheet.DeleteObject(_class);
2824             delete _class.name;
2825             classes.Delete(_class);
2826          }
2827          this.oClass = null;
2828       }
2829
2830       designer = backDesigner;
2831
2832       SetEchoOn(true);
2833       fileInput = editFile = EditBoxStream { editBox = editBox };
2834       SetFileInput(fileInput);
2835
2836       FreeParser();
2837
2838       SetGlobalData(&globalData);
2839       SetGlobalContext(globalContext);
2840       SetExcludedSymbols(&excludedSymbols);
2841       SetTopContext(globalContext);
2842       SetCurrentContext(globalContext);
2843       SetDefines(&defines);
2844       SetImports(&imports);
2845
2846 #ifdef _TIMINGS
2847       startTime = GetTime();
2848       printf("Cleaning up took %.3f seconds\n", startTime - parseCodeStart);
2849
2850       printf("classes.count: %d\n", globalContext.classes.count);
2851 #endif
2852
2853       if(ide.workspace)
2854       {
2855          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
2856          SetTargetBits(ide.workspace.bitDepth ? ide.workspace.bitDepth : GetHostBits());
2857          delete compiler;
2858       }
2859       this.privateModule = __ecere_COM_Initialize((bool)(false | ((GetTargetBits() == sizeof(uintptr) *8) ? 0 : GetTargetBits() == 64 ? 2 : 4)), 1, null);
2860
2861       SetPrivateModule(privateModule);
2862
2863       {
2864          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint"), type = ProcessTypeString("unsigned int", false) });
2865          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint64"), type = ProcessTypeString("unsigned int64", false) });
2866          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint32"), type = ProcessTypeString("unsigned int", false) });
2867          globalContext.types.Add((BTNode)Symbol { string = CopyString("uint16"), type = ProcessTypeString("unsigned short", false) });
2868          globalContext.types.Add((BTNode)Symbol { string = CopyString("byte"), type = ProcessTypeString("unsigned char", false) });
2869       }
2870
2871       fileName = this.fileName;
2872       project = null;
2873       if(ide.workspace && ide.workspace.projects && fileName)
2874       {
2875          for(p : ide.workspace.projects)
2876          {
2877             char path[MAX_LOCATION];
2878             ProjectNode pn;
2879             MakePathRelative(fileName, p.topNode.path, path);
2880             MakeSlashPath(path);
2881
2882             pn = p.topNode.FindWithPath(path, false);
2883             if(pn)
2884             {
2885                project = p;
2886                break;
2887             }
2888          }
2889       }
2890       if(!project)
2891          project = ide.project;
2892
2893       GetWorkingDir(oldWorkDir, MAX_LOCATION);
2894       if(project)
2895          ChangeWorkingDir(project.topNode.path);
2896
2897       SetSomeSourceFileStack(fileName ? fileName : "", 0); //strcpy(sourceFileStack[0], fileName ? fileName : "");
2898
2899       GetLastDirectory(fileName, mainModuleName);
2900       GetExtension(mainModuleName, extension);
2901
2902       SetBuildingEcereCom(false);
2903       SetBuildingEcereComModule(false);
2904
2905       // TODO: Get symbolsDir from project settings instead...
2906       if(ide.projectView)
2907       {
2908          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
2909          ProjectConfig config = project.config;
2910          int bitDepth = ide.workspace.bitDepth;
2911          DirExpression objDir = project.GetObjDir(compiler, config, bitDepth);
2912          SetSymbolsDir(objDir.dir);
2913          SetDefaultNameSpace(project.GetDefaultNameSpace(config));
2914          ide.SetPath(true, compiler, config, bitDepth);
2915
2916          delete objDir;
2917          delete compiler;
2918          // SetIncludeDirs(ide.projectView.project.config.includeDirs);
2919          // SetSysIncludeDirs(ide.ideSettings.systemDirs[includes]);
2920       }
2921       else
2922       {
2923          switch(__runtimePlatform)
2924          {
2925             case win32: SetSymbolsDir("obj/debug.win32"); break;
2926             case tux:   SetSymbolsDir("obj/debug.linux"); break;
2927             case apple: SetSymbolsDir("obj/debug.apple"); break;
2928          }
2929          SetIncludeDirs(null);
2930          SetSysIncludeDirs(null);
2931          SetDefaultNameSpace(null);
2932       }
2933
2934       {
2935          if(ide.projectView && ide.projectView.IsModuleInProject(this.fileName))
2936          {
2937             // TODO FIX for configless project
2938             if(ide.project.config && ide.project.config.options && ide.project.config.options.preprocessorDefinitions)
2939             {
2940                for(item : ide.project.config.options.preprocessorDefinitions)
2941                {
2942                   if(!strcmp(item, "BUILDING_ECERE_COM"))
2943                   {
2944                      SetBuildingEcereCom(true);
2945                      break;
2946                   }
2947                }
2948             }
2949          }
2950
2951          if(!(strcmpi(mainModuleName, "instance.ec") && strcmpi(mainModuleName, "BinaryTree.ec") &&
2952             strcmpi(mainModuleName, "dataTypes.ec") && strcmpi(mainModuleName, "OldList.ec") &&
2953             strcmpi(mainModuleName, "String.ec") && strcmpi(mainModuleName, "BTNode.ec") &&
2954             strcmpi(mainModuleName, "Array.ec") && strcmpi(mainModuleName, "AVLTree.ec") &&
2955             strcmpi(mainModuleName, "BuiltInContainer.ec") && strcmpi(mainModuleName, "Container.ec") &&
2956             strcmpi(mainModuleName, "CustomAVLTree.ec") && strcmpi(mainModuleName, "LinkList.ec") &&
2957             strcmpi(mainModuleName, "List.ec") && strcmpi(mainModuleName, "Map.ec") &&
2958             strcmpi(mainModuleName, "Mutex.ec")))
2959          {
2960             SetBuildingEcereComModule(true);
2961          }
2962
2963          // Predeclare all classes
2964          {
2965             char symFile[MAX_FILENAME];
2966             char symLocation[MAX_LOCATION];
2967             ImportedModule module, next;
2968
2969             GetLastDirectory(fileName, symFile);
2970             ChangeExtension(symFile, "sym", symFile);
2971
2972             strcpy(symLocation, GetSymbolsDir());
2973             PathCat(symLocation, symFile);
2974
2975             // if(!GetEcereImported() && !GetBuildingEcereCom())
2976             if(!strcmp(extension, "ec") || !strcmp(extension, "eh"))
2977             {
2978 #ifdef _TIMINGS
2979                startTime = GetTime();
2980 #endif
2981                eModule_LoadStrict(privateModule, "ecereCOM", privateAccess);
2982 #ifdef _TIMINGS
2983                printf("Loading ecereCOM took %.3f seconds\n", GetTime() - startTime);
2984 #endif
2985             }
2986
2987 #ifdef _TIMINGS
2988             startTime = GetTime();
2989 #endif
2990             // LoadSymbols(symLocation, normalImport, true);
2991             LoadSymbols(symLocation, preDeclImport, false);
2992 #ifdef _TIMINGS
2993             printf("Loading symbols took %.3f seconds\n", GetTime() - startTime);
2994 #endif
2995
2996             for(module = defines.first; module; module = next)
2997             {
2998                next = module.next;
2999                if(module.type == moduleDefinition && strcmpi(module.name, mainModuleName))
3000                {
3001                   delete module.name;
3002                   defines.Delete(module);
3003                }
3004             }
3005          }
3006       }
3007       if(!strcmp(extension, "ec") || !strcmp(extension, "eh"))
3008       {
3009          SetDefaultDeclMode(privateAccess);
3010          SetDeclMode(privateAccess);
3011       }
3012       else
3013       {
3014          SetDefaultDeclMode(defaultAccess);
3015          SetDeclMode(defaultAccess);
3016       }
3017
3018       StripExtension(mainModuleName);
3019       module = ImportedModule { name = CopyString(mainModuleName), type = moduleDefinition };
3020       defines.AddName(module);
3021
3022    #ifdef _DEBUG
3023       // SetYydebug(true);
3024    #endif
3025       resetScanner();
3026
3027 #ifdef _TIMINGS
3028       startTime = GetTime();
3029       startFindClass = checkTypeTotalTime;
3030 #endif
3031       ParseEc();
3032 #ifdef _TIMINGS
3033       printf("ParseEc took %.3f seconds, out of which %.3f seconds were in CheckType\n", GetTime() - startTime, checkTypeTotalTime - startFindClass);
3034 #endif
3035       CheckDataRedefinitions();
3036       SetYydebug(false);
3037
3038       SetIncludeDirs(null);
3039       SetSysIncludeDirs(null);
3040
3041       delete editFile;
3042       fileInput = null;
3043       SetFileInput(null);
3044
3045       if(GetAST())
3046       {
3047          ast = GetAST();
3048
3049 #ifdef _TIMINGS
3050          startTime = GetTime();
3051 #endif
3052          PrePreProcessClassDefinitions();
3053          ComputeModuleClasses(privateModule);
3054          PreProcessClassDefinitions();
3055          ProcessClassDefinitions();
3056 #ifdef _TIMINGS
3057          printf("Initial Passes took %.3f seconds\n", GetTime() - startTime);
3058          startTime = GetTime();
3059 #endif
3060
3061          ComputeDataTypes();
3062 #ifdef _TIMINGS
3063          printf("ComputeDataTypes took %.3f seconds\n", GetTime() - startTime);
3064          startTime = GetTime();
3065 #endif
3066          ProcessInstantiations();
3067 #ifdef _TIMINGS
3068          printf("ProcessInstantiations took %.3f seconds\n", GetTime() - startTime);
3069 #endif
3070
3071          if(!strcmp(extension, "ec") || !strcmp(extension, "eh"))
3072          {
3073             Class windowClass = eSystem_FindClass(this.privateModule, "ecere::gui::Window");
3074             if(!windowClass || windowClass.internalDecl)
3075             {
3076 #ifdef _TIMINGS
3077                startTime = GetTime();
3078 #endif
3079                // *** COMMENTED THIS OUT DUE TO ecereCOM issues
3080                // eModule_Load(this.privateModule.application.allModules.first ? this.privateModule.application.allModules.first : this.privateModule, "ecere", privateAccess);
3081                eModule_Load(this.privateModule, "ecere", privateAccess);
3082 #ifdef _TIMINGS
3083                printf("Loading ecere.dll took %.3f seconds\n", GetTime() - startTime);
3084 #endif
3085             }
3086             windowClass = eSystem_FindClass(this.privateModule, "ecere::gui::Window");
3087
3088             if(windowClass && windowClass.data)
3089                ApplySkin(windowClass, app.currentSkin.name, null);
3090          }
3091
3092 #ifdef _TIMINGS
3093          startTime = GetTime();
3094 #endif
3095          for(external = ast->first; external; external = external.next)
3096          {
3097             if(external.type == classExternal)
3098             {
3099                ClassDefinition _class = external._class;
3100                if(_class.baseSpecs && _class.baseSpecs->first && ((Specifier)_class.baseSpecs->first).type == nameSpecifier ) // classSpecifier
3101                {
3102                   Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)_class.baseSpecs->first).name);
3103                   if(regClass)
3104                   {
3105                      if(eClass_GetDesigner(regClass) && !GetBuildingEcereComModule())
3106                      {
3107                         Instance instance = eInstance_New(regClass);
3108                         ObjectInfo classObject
3109                         {
3110                            name = CopyString(_class._class.name);
3111                            instance = instance;
3112                            classDefinition = _class;
3113                            oClass = classObject;
3114                         };
3115                         classes.Add(classObject);
3116
3117                         incref instance;
3118
3119                         // Moved this at bottom so that the file dialog doesn't show up in eCom
3120                         designer.CreateObject(instance, classObject, true, null);
3121                         sheet.AddObject(classObject, classObject.name ? classObject.name : _class._class.name, typeClass, false);
3122
3123                         if(_class.definitions)
3124                         {
3125                            ClassDef def;
3126                            ObjectInfo object;
3127                            for(def = _class.definitions->first; def; def = def.next)
3128                            {
3129                               switch(def.type)
3130                               {
3131                                  case defaultPropertiesClassDef:
3132                                  {
3133                                     MemberInit propDef;
3134                                     for(propDef = def.defProperties->first; propDef; propDef = propDef.next)
3135                                     {
3136                                        Identifier id = propDef.identifiers->first;
3137                                        if(id)
3138                                        {
3139                                           Property prop = eClass_FindProperty(regClass, id.string, this.privateModule);
3140                                           if(prop)
3141                                           {
3142                                              Class propertyClass = prop.dataTypeClass;
3143                                              if(!propertyClass)
3144                                                 propertyClass = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
3145                                              if(prop.compiled && prop.Set && prop.Get && propertyClass && propDef.initializer && propDef.initializer.type == expInitializer && propDef.initializer.exp)
3146                                              {
3147                                                 Expression computed;
3148                                                 bool variable = true;
3149
3150                                                 FreeType(propDef.initializer.exp.destType);
3151                                                 propDef.initializer.exp.destType = MkClassType(propertyClass.name);
3152                                                 ProcessExpressionType(propDef.initializer.exp);
3153
3154                                                 computed = CopyExpression(propDef.initializer.exp);
3155                                                 ComputeExpression(computed);
3156                                                 if(computed.isConstant)
3157                                                 {
3158                                                    switch(computed.type)
3159                                                    {
3160                                                       case stringExp:
3161                                                          if(propertyClass.dataTypeString && strstr(propertyClass.dataTypeString, "char *"))
3162                                                          {
3163                                                             String temp = new char[strlen(computed.string)+1];
3164                                                             ReadString(temp, computed.string);
3165                                                             ((void (*)(void *, void *))(void *)prop.Set)(instance, temp);
3166                                                             delete temp;
3167
3168                                                             if(!propDef.initializer.exp.intlString)
3169                                                             {
3170                                                                Map<String, bool> i18nStrings = classObject.i18nStrings;
3171                                                                if(!i18nStrings)
3172                                                                   classObject.i18nStrings = i18nStrings = { };
3173                                                                i18nStrings[prop.name] = false;
3174                                                             }
3175                                                             variable = false;
3176                                                          }
3177                                                          break;
3178                                                       case instanceExp:
3179                                                          if((propertyClass.type == structClass || propertyClass.type == noHeadClass || propertyClass.type == normalClass) && !id.next)
3180                                                          {
3181                                                             if(prop.Set)
3182                                                             {
3183                                                                if(computed.instance._class && computed.instance._class.symbol &&
3184                                                                   computed.instance._class.symbol.registered &&
3185                                                                   eClass_IsDerived(computed.instance._class.symbol.registered, propertyClass))
3186                                                                {
3187                                                                   ((void (*)(void *, void *))(void *)prop.Set)(instance, computed.instance.data);
3188
3189                                                                   // This was saved in the control and shouldn't be freed by FreeExpression...
3190                                                                   // (Not doing this anymore, incrementing refCount in pass15 instead)
3191                                                                   /*if(propertyClass.type == normalClass)
3192                                                                      computed.instance.data = null;*/
3193                                                                }
3194                                                             }
3195                                                             variable = false;
3196                                                          }
3197                                                          break;
3198                                                       case constantExp:
3199                                                       {
3200                                                          Operand value = GetOperand(computed);
3201                                                          DataValue valueData;
3202                                                          valueData.i64 = value.i64;
3203                                                          SetProperty(prop, instance, valueData);
3204                                                          variable = false;
3205                                                          break;
3206                                                       }
3207                                                    }
3208                                                 }
3209                                                 if(variable)
3210                                                    propDef.variable = true;
3211                                                 FreeExpression(computed);
3212                                              }
3213                                           }
3214                                           else
3215                                           {
3216                                              Method method = eClass_FindMethod(regClass, id.string, this.privateModule);
3217                                              if(method && method.type == virtualMethod && propDef.initializer && propDef.initializer.type == expInitializer &&
3218                                                 propDef.initializer.exp && propDef.initializer.exp.type == identifierExp)
3219                                              {
3220                                                 ClassDef def;
3221                                                 // Maintain a list in FunctionDefinition of who is attached to it
3222                                                 for(def = _class.definitions->first; def; def = def.next)
3223                                                 {
3224                                                    if(def.type == functionClassDef)
3225                                                    {
3226                                                       ClassFunction function = def.function;
3227                                                       if(!strcmp(function.declarator.symbol.string, propDef.initializer.exp.identifier.string))
3228                                                       {
3229                                                          function.attached.Add(OldLink { data = method });
3230                                                       }
3231                                                    }
3232                                                 }
3233                                              }
3234                                           }
3235                                        }
3236                                     }
3237                                     break;
3238                                  }
3239                                  case declarationClassDef:
3240                                  {
3241                                     Declaration decl = def.decl;
3242                                     switch(decl.type)
3243                                     {
3244                                        case instDeclaration:
3245                                        {
3246                                           Instantiation inst = decl.inst;
3247                                           Class instClass = eSystem_FindClass(this.privateModule, inst._class.name);
3248                                           if(instClass && eClass_GetDesigner(instClass))
3249                                           {
3250                                              Instance control = eInstance_New(instClass);
3251                                              incref control;
3252
3253                                              object = ObjectInfo
3254                                              {
3255                                                 oClass = classObject;
3256                                                 instance = control;
3257                                                 instCode = inst;
3258                                              };
3259                                              classObject.instances.Add(object);
3260                                              if(inst.exp)
3261                                                 // TOCHECK: Why is this needed now?
3262                                                 object.name = CopyString((inst.exp.type == memberExp) ? inst.exp.member.member.string : inst.exp.identifier.string);
3263                                              def.object = object;
3264
3265                                              // if(object.name) { symbol = eList_Add(&curContext.symbols, sizeof(Symbol)); symbol.string = object.name; symbol.type = MkClassType(instClass.name); }
3266
3267                                              designer.CreateObject(control, object, false, classObject.instance);
3268                                              sheet.AddObject(object, object.name ? object.name : inst._class.name, typeData, false);
3269                                           }
3270                                           break;
3271                                        }
3272                                     }
3273                                     break;
3274                                  }
3275                               }
3276                            }
3277
3278                            // Second pass, process instantiation members
3279                            object = null;
3280                            for(def = _class.definitions->first; def; def = def.next)
3281                            {
3282                               switch(def.type)
3283                               {
3284                                  case declarationClassDef:
3285                                  {
3286                                     Declaration decl = def.decl;
3287                                     switch(decl.type)
3288                                     {
3289                                        case instDeclaration:
3290                                        {
3291                                           Instantiation inst = decl.inst;
3292                                           Class instClass = eSystem_FindClass(this.privateModule, inst._class.name);
3293                                           if(instClass && eClass_GetDesigner(instClass))
3294                                           {
3295                                              Instance control;
3296                                              object = object ? object.next : classObject.instances.first;
3297                                              control = object.instance;
3298
3299                                              if(inst.members)
3300                                              {
3301                                                 MembersInit members;
3302                                                 for(members = inst.members->first; members; members = members.next)
3303                                                 {
3304                                                    switch(members.type)
3305                                                    {
3306                                                       case dataMembersInit:
3307                                                       {
3308                                                          if(members.dataMembers)
3309                                                          {
3310                                                             MemberInit member;
3311                                                             DataMember curMember = null;
3312                                                             Class curClass = null;
3313                                                             DataMember subMemberStack[256];
3314                                                             int subMemberStackPos = 0;
3315
3316                                                             for(member = members.dataMembers->first; member; member = member.next)
3317                                                             {
3318                                                                bool found = false;
3319                                                                Identifier ident = member.identifiers ? member.identifiers->first : null;
3320                                                                if(ident)
3321                                                                {
3322                                                                   DataMember _subMemberStack[256];
3323                                                                   int _subMemberStackPos = 0;
3324                                                                   DataMember thisMember = (DataMember)eClass_FindDataMember(instClass, ident.string, privateModule, _subMemberStack, &_subMemberStackPos);
3325
3326                                                                   if(!thisMember)
3327                                                                   {
3328                                                                      thisMember = (DataMember)eClass_FindProperty(instClass, ident.string, privateModule);
3329                                                                   }
3330                                                                   if(thisMember && thisMember.memberAccess == publicAccess)
3331                                                                   {
3332                                                                      curMember = thisMember;
3333                                                                      curClass = curMember._class;
3334                                                                      memcpy(subMemberStack, _subMemberStack, sizeof(DataMember) * _subMemberStackPos);
3335                                                                      subMemberStackPos = _subMemberStackPos;
3336                                                                      found = true;
3337                                                                   }
3338                                                                }
3339                                                                else
3340                                                                {
3341                                                                   eClass_FindNextMember(instClass, &curClass, (DataMember *)&curMember, subMemberStack, &subMemberStackPos);
3342                                                                   if(curMember) found = true;
3343                                                                }
3344                                                                if(found && curMember.isProperty)
3345                                                                {
3346                                                                   Property prop = (Property) curMember;
3347                                                                   Class propertyClass = prop.dataTypeClass;
3348                                                                   bool variable = true;
3349                                                                   if(!propertyClass)
3350                                                                      propertyClass = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
3351
3352                                                                   if(prop.compiled && prop.Set && prop.Get && propertyClass && member.initializer && member.initializer.type == expInitializer && member.initializer.exp)
3353                                                                   {
3354                                                                      FreeType(member.initializer.exp.destType);
3355                                                                      member.initializer.exp.destType = MkClassType(propertyClass.name);
3356                                                                      if(propertyClass)
3357                                                                      {
3358                                                                         Expression computed;
3359
3360                                                                         ProcessExpressionType(member.initializer.exp);
3361
3362                                                                         computed = CopyExpression(member.initializer.exp);
3363                                                                         if(computed)
3364                                                                         {
3365                                                                            bool isClass = propertyClass.type == structClass || propertyClass.type == normalClass || propertyClass.type == noHeadClass;
3366                                                                            {
3367 #ifdef _DEBUG
3368                                                                               /*char debugExpString[4096];
3369                                                                               debugExpString[0] = '\0';
3370                                                                               PrintExpression(member.initializer.exp, debugExpString);*/
3371 #endif
3372                                                                               ComputeExpression(computed);
3373
3374                                                                               switch(computed.type)
3375                                                                               {
3376                                                                                  case instanceExp:
3377                                                                                     if(isClass && computed.isConstant && computed.instance.data)
3378                                                                                     {
3379                                                                                        if(computed.instance._class && computed.instance._class.symbol &&
3380                                                                                           computed.instance._class.symbol.registered &&
3381                                                                                           eClass_IsDerived(computed.instance._class.symbol.registered, propertyClass))
3382                                                                                        {
3383                                                                                           ((void (*)(void *, void *))(void *)prop.Set)(control, computed.instance.data);
3384
3385                                                                                           // This was saved in the control and shouldn't be freed by FreeExpression...
3386                                                                                           // (Not doing this anymore, incrementing refCount in pass15 instead)
3387                                                                                           /*if(propertyClass.type == normalClass)
3388                                                                                              computed.instance.data = null;*/
3389                                                                                        }
3390                                                                                        variable = false;
3391                                                                                     }
3392                                                                                     break;
3393                                                                                  case identifierExp:
3394                                                                                     if(isClass && eClass_GetDesigner(propertyClass))
3395                                                                                     //if(prop.Set)
3396                                                                                     {
3397                                                                                        char * name = computed.identifier.string;
3398                                                                                        if(!strcmp(name, "this"))
3399                                                                                        {
3400                                                                                           if(prop.Set)
3401                                                                                              ((void (*)(void *, void *))(void *)prop.Set)(control, instance);
3402                                                                                           variable = false;
3403                                                                                        }
3404                                                                                        else
3405                                                                                        {
3406                                                                                           ObjectInfo check;
3407                                                                                           for(check = classObject.instances.first; check; check = check.next)
3408                                                                                              if(check.name && !strcmp(name, check.name))
3409                                                                                              {
3410                                                                                                 if(prop.Set)
3411                                                                                                    ((void (*)(void *, void *))(void *)prop.Set)(control, check.instance);
3412                                                                                                 variable = false;
3413                                                                                                 break;
3414                                                                                              }
3415                                                                                        }
3416                                                                                     }
3417                                                                                     break;
3418                                                                                  case memberExp:
3419                                                                                     if(isClass)
3420                                                                                     {
3421                                                                                        if(computed.member.exp.type == identifierExp)
3422                                                                                        {
3423                                                                                           char * name = computed.member.exp.identifier.string;
3424                                                                                           ObjectInfo check;
3425                                                                                           if(!strcmp(name, "this"))
3426                                                                                           {
3427                                                                                              char * name = computed.member.member.string;
3428                                                                                              ObjectInfo check;
3429                                                                                              for(check = classObject.instances.first; check; check = check.next)
3430                                                                                                 if(check.name && !strcmp(name, check.name))
3431                                                                                                 {
3432                                                                                                    if(prop.Set)
3433                                                                                                       ((void (*)(void *, void *))(void *)prop.Set)(control, check.instance);
3434                                                                                                    variable = false;
3435                                                                                                    break;
3436                                                                                                 }
3437                                                                                           }
3438                                                                                           else
3439                                                                                           {
3440                                                                                              for(check = classObject.instances.first; check; check = check.next)
3441                                                                                              {
3442                                                                                                 if(check.name && !strcmp(name, check.name))
3443                                                                                                 {
3444                                                                                                    Property getProperty = eClass_FindProperty(check.instance._class, computed.member.member.string, this.privateModule);
3445                                                                                                    if(getProperty)
3446                                                                                                    {
3447                                                                                                       DataValue value { };
3448                                                                                                       GetProperty(getProperty, check.instance, &value);
3449                                                                                                       SetProperty(prop, control, value);
3450                                                                                                       variable = false;
3451                                                                                                    }
3452                                                                                                    break;
3453                                                                                                 }
3454                                                                                              }
3455                                                                                           }
3456                                                                                        }
3457                                                                                     }
3458                                                                                     break;
3459                                                                                  case stringExp:
3460                                                                                     if(propertyClass.dataTypeString && strstr(propertyClass.dataTypeString, "char *"))
3461                                                                                     {
3462                                                                                        String temp = new char[strlen(computed.string)+1];
3463                                                                                        ReadString(temp, computed.string);
3464                                                                                        ((void (*)(void *, void *))(void *)prop.Set)(control, temp);
3465                                                                                        delete temp;
3466
3467                                                                                        if(!member.initializer.exp.intlString)
3468                                                                                        {
3469                                                                                           Map<String, bool> i18nStrings = object.i18nStrings;
3470                                                                                           if(!i18nStrings)
3471                                                                                              object.i18nStrings = i18nStrings = { };
3472                                                                                           i18nStrings[prop.name] = false;
3473                                                                                        }
3474
3475                                                                                        variable = false;
3476                                                                                     }
3477                                                                                     break;
3478                                                                                  case constantExp:
3479                                                                                     if(!isClass && computed.isConstant)
3480                                                                                     {
3481                                                                                        if(!strcmp(propertyClass.dataTypeString, "float"))
3482                                                                                           ((void (*)(void *, float))(void *)prop.Set)(control, (float)strtod(computed.constant, null));
3483                                                                                        else if(!strcmp(propertyClass.dataTypeString, "double"))
3484                                                                                           ((void (*)(void *, double))(void *)prop.Set)(control, strtod(computed.constant, null));
3485                                                                                        else
3486                                                                                           ((void (*)(void *, int))(void *)prop.Set)(control, strtol(computed.constant, null, 0));
3487                                                                                        variable = false;
3488                                                                                     }
3489                                                                                     break;
3490                                                                               }
3491                                                                            }
3492                                                                         }
3493                                                                         FreeExpression(computed);
3494                                                                      }
3495                                                                   }
3496                                                                   if(variable)
3497                                                                      member.variable = true;
3498                                                                }
3499                                                                else if(ident && member.initializer && member.initializer.type == expInitializer && member.initializer.exp &&
3500                                                                   member.initializer.exp.type == memberExp) // identifierExp
3501                                                                {
3502                                                                   Method method = eClass_FindMethod(instClass, ident.string, this.privateModule);
3503                                                                   if(method && method.type == virtualMethod)
3504                                                                   {
3505                                                                      ClassDef def;
3506                                                                      // Maintain a list in FunctionDefinition of who is attached to it
3507                                                                      for(def = _class.definitions->first; def; def = def.next)
3508                                                                      {
3509                                                                         if(def.type == functionClassDef)
3510                                                                         {
3511                                                                            ClassFunction function = def.function;
3512                                                                            Identifier id = (member.initializer.exp.type == memberExp) ? member.initializer.exp.member.member : member.initializer.exp.identifier;
3513                                                                            if(function.declarator && !strcmp(function.declarator.symbol.string, id.string))
3514                                                                            {
3515                                                                               function.attached.Add(OldLink { data = method });
3516                                                                               // Reference this particular instance?
3517                                                                            }
3518                                                                         }
3519                                                                      }
3520                                                                   }
3521                                                                }
3522                                                                id++;
3523                                                             }
3524                                                          }
3525                                                          break;
3526                                                       }
3527                                                    }
3528                                                 }
3529                                              }
3530
3531                                              designer.PostCreateObject(object.instance, object, false, classObject.instance);
3532                                              break;
3533                                           }
3534                                        }
3535                                        break;
3536                                     }
3537                                  }
3538                               }
3539                            }
3540                         }
3541
3542                         //designer.CreateObject(instance, classObject, true, null);
3543                         //sheet.AddObject(classObject, classObject.name ? classObject.name : _class._class.name, classType, false);
3544
3545                         designer.PostCreateObject(instance, classObject, true, null);
3546
3547                         //instance.state = Hidden;
3548                         //instance.Create();
3549                         //instance.SetState(Normal, true, 0);
3550                      }
3551                   }
3552                }
3553             }
3554          }
3555
3556          SetAST(null);
3557 #ifdef _TIMINGS
3558          printf("Class/Instance Processing took %.3f seconds\n", GetTime() - startTime);
3559 #endif
3560       }
3561
3562       // Restore Selection
3563       if(selectedClassName)
3564       {
3565          ObjectInfo oClass;
3566          for(oClass = classes.first; oClass; oClass = oClass.next)
3567          {
3568             if(!strcmp(oClass.name, selectedClassName))
3569             {
3570                this.oClass = oClass;
3571                break;
3572             }
3573          }
3574          delete selectedClassName;
3575       }
3576       if(this.oClass)
3577       {
3578          if(selectedName)
3579          {
3580             ObjectInfo check;
3581
3582             for(check = this.oClass.instances.first; check; check = check.next)
3583             {
3584                if(check.name && !strcmp(check.name, selectedName))
3585                {
3586                   this.selected = check;
3587                   break;
3588                }
3589             }
3590             if(!check)
3591             {
3592                if(this.oClass.instances.first)
3593                   this.selected = this.oClass.instances.first;
3594                else
3595                   this.selected = this.oClass;
3596             }
3597          }
3598          else if(selectedPos == -1 || !this.oClass.instances.count)
3599             this.selected = this.oClass;
3600          else
3601          {
3602             ObjectInfo check;
3603             int pos = 0;
3604
3605             if(selectedPos > this.oClass.instances.count)
3606                selectedPos = 0;
3607             for(check = this.oClass.instances.first; check; check = check.next)
3608             {
3609                if(selectedPos == pos++)
3610                {
3611                   this.selected = check;
3612                   break;
3613                }
3614             }
3615          }
3616       }
3617       else
3618       {
3619          this.oClass = classes.first;
3620          this.selected = (this.oClass && this.oClass.instances.first) ? this.oClass.instances.first : this.oClass;
3621       }
3622       delete selectedName;
3623       SetSymbolsDir(null);
3624
3625       if(sheet.codeEditor == this)
3626          sheet.SelectObject(selected);
3627       Update(null);
3628
3629       codeModified = false;
3630
3631       // TESTING THIS TO NOT GET EMPTY PARAMETERS
3632       if(paramsShown)
3633       {
3634          InvokeParameters(false, false, false);
3635       }
3636
3637       editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
3638
3639       reentrant = false;
3640
3641       updatingCode--;
3642
3643       ChangeWorkingDir(oldWorkDir);
3644 #ifdef _TIMINGS
3645       printf("Total FindClass time is %.3f seconds, out of which %.3f is in Ignore NS\n\n", findClassTotalTime, findClassIgnoreNSTotalTime);
3646       printf("Total CheckType time is %.3f seconds\n\n", checkTypeTotalTime);
3647       printf("Total MkExternalImport time is %.3f seconds\n\n", externalImportTotalTime);
3648       printf("Total FindSymbol time is %.3f seconds\n\n", findSymbolTotalTime);
3649       // printf("Total Class Members Find time is %.3f seconds\n\n", GetClassFindTime());
3650
3651       printf("Whole ParseCode function took %.3f seconds\n\n", GetTime() - parseCodeStart);
3652 #endif
3653       if(inUseDebug && ide.projectView)
3654          ide.debugger.EvaluateWatches();
3655
3656       delete pathBackup;
3657    }
3658
3659    void UpdateInstanceCodeClass(Class _class, ObjectInfo object, EditBoxStream f, Instance test, bool * prev, bool * lastIsMethod, DataMember * curMember, Class * curClass)
3660    {
3661       Property propIt;
3662       Window control = (Window)object.instance;
3663       ObjectInfo classObject = object.oClass;
3664
3665       if(_class.base && _class.base.type != systemClass) UpdateInstanceCodeClass(_class.base, object, f, test, prev, lastIsMethod, curMember, curClass);
3666
3667       if(!strcmp(_class.name, "DesignerBase")) return;
3668
3669       for(propIt = _class.membersAndProperties.first; propIt; propIt = propIt.next)
3670       {
3671          Property prop = eClass_FindProperty(object.instance._class, propIt.name, privateModule);
3672          if(prop && prop.isProperty && !prop.conversion && eClass_FindProperty(object.instance._class, prop.name, privateModule))
3673          {
3674             if(prop.Set && prop.Get && prop.dataTypeString && strcmp(prop.name, "name") && !Code_IsPropertyDisabled(object, prop.name) &&
3675                prop.compiled && (!prop.IsSet || prop.IsSet(control)))
3676             {
3677                Class dataType = prop.dataTypeClass;
3678                if(!dataType)
3679                   dataType = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
3680
3681                if(dataType)
3682                {
3683                   if(dataType.type == structClass)
3684                   {
3685                      void * dataForm = new0 byte[dataType.structSize];
3686                      void * dataTest = new0 byte[dataType.structSize];
3687
3688                      ((void (*)(void *, void *))(void *)prop.Get)(control, dataForm);
3689                      ((void (*)(void *, void *))(void *)prop.Get)(test, dataTest);
3690
3691                      if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
3692                      {
3693                         char tempString[1024] = "";
3694                         const char * string = "";
3695                         bool needClass = true;
3696                         if(*prev)
3697                            f.Printf(", ");
3698
3699                         ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
3700
3701                         string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
3702
3703                         eClass_FindNextMember(_class, curClass, curMember, null, null);
3704                         if(*curMember != (DataMember)prop)
3705                            f.Printf("%s = ", prop.name);
3706
3707                         *curMember = (DataMember)prop;
3708                         *curClass = curMember->_class;
3709
3710                         if(needClass)
3711                            f.Printf("%c %s %c", /*dataType.name, */OpenBracket, string, CloseBracket);
3712                         else
3713                            f.Printf("%s", string);
3714                         *prev = true;
3715                      }
3716
3717                      delete dataForm;
3718                      delete dataTest;
3719                   }
3720                   else if(dataType.type == normalClass || dataType.type == noHeadClass)
3721                   {
3722                      void * dataForm, * dataTest;
3723                      bool isEditBoxContents = false;
3724                      bool freeDataForm = false, freeDataTest = false;
3725
3726                      // Because contents property is broken for mutiline EditBox at the moment
3727                      if(!strcmp(prop.name, "contents") && !strcmp(prop._class.name, "EditBox"))
3728                         isEditBoxContents = true;
3729
3730                      if(isEditBoxContents && ((EditBox)control).multiLine)
3731                      {
3732                         dataForm = ((EditBox)control).multiLineContents;
3733                         freeDataForm = true;
3734                      }
3735                      else
3736                         dataForm = ((void *(*)(void *))(void *)prop.Get)(control);
3737                      if(isEditBoxContents && ((EditBox)test).multiLine)
3738                      {
3739                         dataTest = ((EditBox)test).multiLineContents;
3740                         freeDataTest = true;
3741                      }
3742                      else
3743                         dataTest = ((void *(*)(void *))(void *)prop.Get)(test);
3744
3745                      if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
3746                      {
3747                         char tempString[1024] = "";
3748                         const char * string = "";
3749                         if(*prev)
3750                            f.Printf(", ");
3751
3752                         ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
3753
3754                         eClass_FindNextMember(_class, curClass, curMember, null, null);
3755                         if(*curMember != (DataMember)prop)
3756                            f.Printf("%s = ", prop.name);
3757                         *curMember = (DataMember)prop;
3758                         *curClass = curMember->_class;
3759
3760                         if(eClass_GetDesigner(dataType))
3761                         {
3762                            if(eClass_IsDerived(classObject.instance._class, dataType) && classObject.instance == dataForm)
3763                            //if(!strcmp(classObject.instance._class.name, dataType.name) && classObject.instance == dataForm)
3764                               f.Printf("this", prop.name);
3765                            else
3766                            {
3767                               //ObjectInfo classObject;
3768                               //for(classObject = classes.first; classObject; classObject = classObject.next)
3769                               {
3770                                  ObjectInfo object;
3771
3772                                  for(object = classObject.instances.first; object; object = object.next)
3773                                  {
3774                                     if(!object.deleted && eClass_IsDerived(object.instance._class, dataType) && object.instance == dataForm && object.name)
3775                                     {
3776                                        f.Printf("%s", object.name);
3777                                        break;
3778                                     }
3779                                  }
3780
3781                                  if(!object)
3782                                  {
3783                                     bool needClass = true;
3784                                     string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
3785                                     f.Printf("%s", string);
3786                                  }
3787                               }
3788                            }
3789                         }
3790                         else
3791                         {
3792                            bool needClass = true;
3793                            string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
3794
3795                            if(!strcmp(dataType.dataTypeString, "char *"))
3796                            {
3797                               Map<String, bool> i18nStrings = object.i18nStrings;
3798                               bool i18n = true;
3799                               if(i18nStrings && i18nStrings.GetAtPosition(prop.name, false, null))
3800                                  i18n = false;
3801
3802                               f.Printf("%s\"", i18n ? "$" : "");
3803                               OutputString(f, string);
3804                               f.Puts("\"");
3805                            }
3806                            else if(needClass)
3807                               f.Printf("%c %s %c", /*dataType.name, */OpenBracket, string, CloseBracket);
3808                            else
3809                               f.Printf("%s", string);
3810                         }
3811                         *prev = true;
3812                         *lastIsMethod = false;
3813                      }
3814
3815                      if(freeDataForm) delete dataForm;
3816                      if(freeDataTest) delete dataTest;
3817                   }
3818                   else
3819                   {
3820                      DataValue dataForm, dataTest;
3821
3822                      GetProperty(prop, control, &dataForm);
3823                      GetProperty(prop, test, &dataTest);
3824
3825                      if((prop.IsSet && !prop.IsSet(test)) || ((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, &dataForm, &dataTest))
3826                      {
3827                         char * string = null;
3828                         char tempString[1024] = "";
3829                         SetProperty(prop, test, dataForm);
3830
3831                         if(dataType.type != bitClass)
3832                         {
3833                            bool needClass = true;
3834
3835                            if(dataType.type == enumClass)
3836                            {
3837                               NamedLink64 value;
3838                               Class enumClass = eSystem_FindClass(privateModule, "enum");
3839                               EnumClassData e = ACCESS_CLASSDATA(dataType, enumClass);
3840                               int64 i64Value = GetI64EnumValue(dataType, dataForm);
3841
3842                               for(value = e.values.first; value; value = value.next)
3843                               {
3844                                  if(value.data == i64Value)
3845                                  {
3846                                     string = value.name;
3847                                     break;
3848                                  }
3849                               }
3850                            }
3851                            else
3852                               string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm, tempString, null, &needClass);
3853
3854                            if(string && string[0])
3855                            {
3856                               if(*prev)
3857                                  f.Printf(", ");
3858
3859                               eClass_FindNextMember(_class, curClass, curMember, null, null);
3860                               if(*curMember != (DataMember)prop)
3861                                  f.Printf("%s = ", prop.name);
3862                               *curMember = (DataMember)prop;
3863                               *curClass = curMember->_class;
3864
3865                               if(!strcmp(dataType.dataTypeString, "float") && strchr(string, '.'))
3866                                  f.Printf("%sf", string);
3867                               else
3868                                  f.Printf("%s", string);
3869                               *prev = true;
3870                            }
3871                         }
3872                         else if(dataType.type == bitClass)
3873                         {
3874                            bool needClass = true;
3875
3876                            if(*prev) f.Printf(", ");
3877
3878                            eClass_FindNextMember(_class, curClass, curMember, null, null);
3879                            if(*curMember != (DataMember)prop)
3880                               f.Printf("%s = ", prop.name);
3881                            *curMember = (DataMember)prop;
3882                            *curClass = curMember->_class;
3883
3884                            string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm.ui, tempString, null, &needClass);
3885                            if(needClass)
3886                               f.Printf("%c %s %c", /*dataType.name, */OpenBracket, string, CloseBracket);
3887                            else
3888                               f.Printf("%s", string);
3889                            *prev = true;
3890                            *lastIsMethod = false;
3891                         }
3892                      }
3893                   }
3894                }
3895             }
3896          }
3897       }
3898    }
3899
3900    int UpdateInstanceCode(EditBoxStream f, int position, Class regClass, ObjectInfo object, bool * firstObject, char ** text, int * textSize, int movedFuncIdLen, int movedFuncIdPos)
3901    {
3902       Instantiation inst = object.instCode;
3903       Window control = (Window)object.instance;
3904       bool prev = false;
3905       bool methodPresent = false;
3906       bool lastIsMethod = true;
3907
3908       if(inst)
3909       {
3910          if(object.deleted)
3911          {
3912             // Instance removed, delete it
3913             DeleteJunkBefore(f, inst.loc.start.pos, &position);
3914
3915             f.DeleteBytes(inst.loc.end.pos - inst.loc.start.pos + 1);
3916             position = inst.loc.end.pos + 1;
3917          }
3918          else
3919          {
3920             bool multiLine = false;
3921
3922             // Change the name
3923             // Check if it's an unnamed instance
3924             if(inst.exp)
3925             {
3926                f.Seek(inst.nameLoc.start.pos - position, current);
3927                f.DeleteBytes(inst.nameLoc.end.pos - inst.nameLoc.start.pos);
3928                position = inst.nameLoc.end.pos;
3929                if(object.name)
3930                   f.Printf(object.name);
3931                else
3932                {
3933                   char ch = 0;
3934                   f.Getc(&ch);
3935                   if(isspace(ch) && ch != '\n')
3936                   {
3937                      f.Seek(-1, current);
3938                      f.DeleteBytes(1);
3939                      position ++;
3940                   }
3941                }
3942             }
3943             else
3944             {
3945                int pos = inst.loc.start.pos; // + strlen(inst._class.name);
3946                char ch;
3947                f.Seek(pos - position, current);
3948                while(f.Getc(&ch))
3949                {
3950                   if(isspace(ch))
3951                   {
3952                      f.Seek(-1, current);
3953                      break;
3954                   }
3955                   pos++;
3956                }
3957
3958                if(object.name)
3959                {
3960                   f.Puts(" ");
3961                   f.Puts(object.name);
3962                }
3963                position = pos;
3964             }
3965
3966             if((this.methodAction == actionAddMethod || this.moveAttached) && this.selected == object)
3967                methodPresent = true;
3968
3969             for(;;)
3970             {
3971                char ch = 0;
3972                if(!f.Getc(&ch))
3973                   break;
3974                position++;
3975                if(ch == OpenBracket)
3976                   break;
3977                if(ch == '\n')
3978                   multiLine = true;
3979             }
3980
3981             // TODO: Simplify this?
3982             if(methodPresent)
3983             {
3984                if(!multiLine)
3985                {
3986                   int count = 0;
3987                   int toDelete = 0;
3988                   //int toAdd = 0;
3989
3990                   f.Seek(-1, current);
3991                   DeleteJunkBefore(f, position, &position);
3992                   f.Puts("\n   ");
3993                   f.Seek(1, current);
3994                   //f.Puts("\n");
3995
3996                   // Fix indentation
3997                   for(;;)
3998                   {
3999                      char ch = 0;
4000                      if(!f.Getc(&ch))
4001                         break;
4002                      position++;
4003                      if(ch == '\n') { toDelete = count; count = 0; }
4004                      else if(isspace(ch)) count++;
4005                      else
4006                      {
4007                         f.Seek(-1, current);
4008                         position--;
4009                         if(count > 6)
4010                         {
4011                            toDelete += count - 6;
4012                            count = 6;
4013                         }
4014                         /*else
4015                            toAdd = 6 - count;*/
4016                         break;
4017                      }
4018                   }
4019                   if(toDelete)
4020                   {
4021                      f.Seek(-toDelete-count, current);
4022                      f.DeleteBytes(toDelete);
4023                      f.Seek(count, current);
4024                   }
4025
4026                   DeleteJunkBefore(f, position, &position);
4027
4028                   // Removed this here as it was adding trailing spaces when adding a method
4029                   /*
4030                   if(toAdd)
4031                   {
4032                      int c;
4033                      for(c = 0; c<toAdd; c++)
4034                         f.Putc(' ');
4035                   }
4036                   */
4037                }
4038             }
4039             else
4040                methodPresent = multiLine;
4041
4042             //if(!prev) -- always false
4043                f.Printf(methodPresent ? "\n      " : " ");
4044          }
4045       }
4046       else
4047       {
4048          // Instance not there, create a brand new one
4049          DeleteJunkBefore(f, position, &position);
4050          f.Printf(*firstObject ? "\n\n" : "\n");
4051          *firstObject = false;
4052
4053          if((this.methodAction == actionAddMethod || this.moveAttached) && this.selected == object)
4054             methodPresent = true;
4055
4056          if(methodPresent)
4057          {
4058             if(object.name)
4059                f.Printf("   %s %s\n   %c\n      ", control._class.name, object.name, OpenBracket);
4060             else
4061                f.Printf("   %s\n   %c\n      ", control._class.name, OpenBracket);
4062          }
4063          else
4064          {
4065             if(object.name)
4066                f.Printf("   %s %s %c ", control._class.name, object.name, OpenBracket);
4067             else
4068                f.Printf("   %s %c ", control._class.name, OpenBracket);
4069          }
4070       }
4071
4072       if(!object.deleted)
4073       {
4074          Instance test = eInstance_New(control._class);
4075          DataMember curMember = null;
4076          Class curClass = null;
4077          incref test;
4078
4079          UpdateInstanceCodeClass(control._class, object, f, test, &prev, &lastIsMethod, &curMember, &curClass);
4080
4081          delete test;
4082
4083          // Attach Method here
4084          if((this.methodAction == actionAttachMethod || this.methodAction == actionReattachMethod) && !this.moveAttached && this.selected == object)
4085          {
4086             if(prev) f.Printf(", ");
4087             f.Printf("%s = %s", this.method.name, function.declarator.symbol.string);
4088             prev = true;
4089          }
4090       }
4091
4092       if(inst && !object.deleted)
4093       {
4094          MembersInit members;
4095          Class instClass = eSystem_FindClass(this.privateModule, inst._class.name);
4096
4097          DeleteJunkBefore(f, position, &position);
4098
4099          // Instance already there, clear out the properties
4100          for(members = inst.members ? inst.members->first : null; members; members = members.next)
4101          {
4102             if(members.type == dataMembersInit)
4103             {
4104                MemberInit member;
4105
4106                if(members.dataMembers)
4107                {
4108                   bool keptMember = false;
4109                   MemberInit lastKept = null;
4110
4111                   for(member = members.dataMembers->first; member; member = member.next)
4112                   {
4113                      Identifier ident = member.identifiers ? member.identifiers->first : null;
4114                      bool deleted = false;
4115
4116                      // For now delete if it's not a method
4117                      if(!member.variable) // && ident)
4118                      {
4119                         if(!ident || !ident.next)
4120                         {
4121                            Property prop = ident ? eClass_FindProperty(instClass, ident.string, this.privateModule) : null;
4122                            if(!ident || prop)
4123                            {
4124                               f.Seek(member.loc.start.pos - position, current);
4125                               f.DeleteBytes(member.loc.end.pos - member.loc.start.pos);
4126                               position = member.loc.end.pos;
4127                               deleted = true;
4128                            }
4129                            else
4130                            {
4131                               Method method = eClass_FindMethod(instClass, ident.string, this.privateModule);
4132                               if(method && method.type == virtualMethod && member.initializer && member.initializer.type == expInitializer && member.initializer.exp &&
4133                                  member.initializer.exp.type == memberExp /*ExpIdentifier*/)
4134                               {
4135                                  if(((this.methodAction == actionDetachMethod || this.methodAction == actionReattachMethod) && this.method == method && this.selected == object) ||
4136                                     (this.methodAction == actionDeleteMethod && !strcmp(function.declarator.symbol.string, member.initializer.exp.identifier.string)))
4137                                  {
4138                                     f.Seek(member.loc.start.pos - position, current);
4139                                     f.DeleteBytes(member.loc.end.pos - member.loc.start.pos);
4140                                     position = member.loc.end.pos;
4141                                     deleted = true;
4142                                  }
4143                               }
4144                            }
4145                         }
4146                      }
4147                      if(!deleted)
4148                      {
4149                         keptMember = true;
4150                         lastKept = member;
4151
4152                         //f.Seek(member.loc.start.pos - position, current);
4153                         //position = member.loc.start.pos;
4154                         DeleteJunkBefore(f, member.loc.start.pos, &position);
4155                         if(prev) f.Printf(", ");
4156                         else if(keptMember) f.Printf(" ");
4157                         prev = false;
4158                      }
4159                   }
4160
4161                   if(!keptMember || !members.next)
4162                   {
4163                      char ch = 0;
4164
4165                      if(keptMember && lastKept != members.dataMembers->last)
4166                      {
4167                         // Delete the comma
4168                         char ch;
4169                         int count = 0;
4170                         f.Seek(-1, current);
4171                         for(;f.Getc(&ch);)
4172                         {
4173                            if(ch == ',')
4174                            {
4175                               count++;
4176                               f.Seek(-1, current);
4177                               break;
4178                            }
4179                            else if(!isspace(ch))
4180                               break;
4181                            f.Seek(-2, current);
4182                            count++;
4183                         }
4184
4185                         if(ch == ',')
4186                            f.DeleteBytes(count);
4187                      }
4188
4189                      f.Seek(members.loc.end.pos - position, current);
4190                      f.Getc(&ch);
4191
4192                      if(ch == ';')
4193                      {
4194                         f.Seek(-1, current);
4195                         f.DeleteBytes(1);
4196                         position = members.loc.end.pos + 1;
4197                      }
4198                      else
4199                      {
4200                         f.Seek(-1, current);
4201                         position = members.loc.end.pos;
4202                      }
4203
4204                      if(keptMember)
4205                      {
4206                         prev = true;
4207                         lastIsMethod = false;
4208                      }
4209                   }
4210                   else
4211                   {
4212                      DeleteJunkBefore(f, position, &position);
4213                      f.Printf(" ");
4214
4215                      if(lastKept != members.dataMembers->last)
4216                      {
4217                         // Delete the comma
4218                         char ch;
4219                         int count = 0;
4220                         f.Seek(-1, current);
4221                         for(;f.Getc(&ch);)
4222                         {
4223                            if(ch == ',')
4224                            {
4225                               count++;
4226                               f.Seek(-1, current);
4227                               break;
4228                            }
4229                            else if(!isspace(ch))
4230                               break;
4231                            f.Seek(-2, current);
4232                            count++;
4233                         }
4234
4235                         if(ch == ',')
4236                            f.DeleteBytes(count);
4237                      }
4238                      else
4239                      {
4240                         f.Seek(members.loc.end.pos - position, current);
4241                         position = members.loc.end.pos;
4242                      }
4243                      /*
4244                      prev = false;
4245                      lastIsMethod = true;
4246                      */
4247                      prev = true;
4248                      lastIsMethod = false;
4249
4250                   }
4251                }
4252                else
4253                {
4254                   f.Seek(members.loc.end.pos - position, current);
4255                   position = members.loc.end.pos;
4256                   prev = false;
4257                   lastIsMethod = true;
4258                }
4259             }
4260             else if(members.type == methodMembersInit)
4261             {
4262                if(this.methodAction == actionDeleteMethod && members.function == function);
4263                else
4264                   methodPresent = true;
4265
4266                // Delete instance method here
4267                if((this.methodAction == actionDeleteMethod || (this.methodAction == actionDetachMethod && this.moveAttached)) &&
4268                   members.function == function)
4269                {
4270                   if(this.moveAttached && !*text)
4271                      GetLocText(editBox, f, position, &function.loc, text, textSize, Max((int)strlen(this.methodName) - movedFuncIdLen,0), 0);
4272
4273                   DeleteJunkBefore(f, members.loc.start.pos, &position);
4274                   f.DeleteBytes(members.loc.end.pos - members.loc.start.pos + 1);
4275                   position = members.loc.end.pos + 1;
4276                   f.Printf("\n");
4277                }
4278                else
4279                {
4280                   DeleteJunkBefore(f, position, &position);
4281                   if(!lastIsMethod)
4282                      f.Printf(";");
4283
4284                   DeleteJunkBefore(f, members.loc.start.pos, &position);
4285                   lastIsMethod = true;
4286                   f.Printf("\n\n      ");
4287                }
4288
4289                f.Seek(members.loc.end.pos - position, current);
4290                position = members.loc.end.pos;
4291             }
4292             DeleteJunkBefore(f, position, &position);
4293          }
4294       }
4295
4296       if(!object.deleted)
4297       {
4298          if(!methodPresent)
4299             f.Printf(" ");
4300
4301          if((this.methodAction == actionAddMethod || (this.moveAttached && (this.methodAction == actionAttachMethod || this.methodAction == actionReattachMethod))) && this.selected == object)
4302          {
4303             Method method = this.method;
4304             DeleteJunkBefore(f, position, &position);
4305             if(!lastIsMethod)
4306                f.Printf(";");
4307
4308             f.Printf("\n");
4309
4310             if(!method.dataType)
4311                method.dataType = ProcessTypeString(method.dataTypeString, false);
4312
4313             {
4314                Type dataType = method.dataType;
4315                Type returnType = dataType.returnType;
4316                Type param;
4317
4318                if(this.moveAttached)
4319                {
4320                   // Move function here:
4321                   int newLen = strlen(method.name);
4322
4323                   f.Printf("\n   ");
4324
4325                   if(!*text)
4326                      GetLocText(editBox, f, position, &function.loc, text, textSize, Max(newLen - movedFuncIdLen, 0), 3);
4327
4328                   // First change name of function
4329                   memmove(*text + movedFuncIdPos + newLen, *text + movedFuncIdPos + movedFuncIdLen, *textSize - movedFuncIdPos - movedFuncIdLen + 1);
4330                   *textSize += newLen - movedFuncIdLen;
4331                   memcpy(*text + movedFuncIdPos, method.name, newLen);
4332
4333                   // Second, tab right
4334                   {
4335                      int c;
4336                      for(c = 0; (*text)[c]; )
4337                      {
4338                         int i;
4339                         for(i = c; (*text)[i] && (*text)[i] != '\n'; i++);
4340                         if(i != c)
4341                         {
4342                            memmove((*text)+c+3, (*text)+c, *textSize+1-c);
4343                            (*text)[c] = (*text)[c+1] = (*text)[c+2] = ' ';
4344                            c += 3;
4345                            *textSize += 3;
4346                         }
4347                         for(; (*text)[c] && (*text)[c] != '\n'; c++);
4348                         if((*text)[c]) c++;
4349                      }
4350                   }
4351
4352                   f.Puts((*text));
4353                   f.Printf("\n");
4354                }
4355                else
4356                {
4357                   // Class moduleClass = eSystem_FindClass(this.privateModule, "Module");
4358
4359                   // ADDING METHOD HERE
4360                   f.Printf("\n      ");
4361                   OutputType(f, returnType, false);
4362
4363                   f.Printf(" ");
4364                   if(dataType.thisClass)
4365                   {
4366                      if(!eClass_IsDerived(regClass, dataType.thisClass.registered) && !dataType.classObjectType)     // Just fixed this... was backwards.
4367                      {
4368                         if(dataType.thisClass.shortName)
4369                            f.Printf(dataType.thisClass.shortName);
4370                         else
4371                            f.Printf(dataType.thisClass.string);
4372                         f.Printf("::");
4373                      }
4374                   }
4375                   f.Printf(method.name);
4376                   f.Printf("(");
4377                   for(param = dataType.params.first; param; param = param.next)
4378                   {
4379                      OutputType(f, param, true);
4380                      if(param.next)
4381                         f.Printf(", ");
4382                   }
4383                   f.Printf(")\n");
4384                   f.Printf("      %c\n\n", OpenBracket);
4385
4386                   if(control._class._vTbl[method.vid] == null /*moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad]*/) // Temp Check for DefaultFunction
4387                   {
4388                      if(returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
4389                         f.Printf("         return true;\n");
4390                      else if(returnType.kind != voidType)
4391                         f.Printf("         return 0;\n");
4392                   }
4393                   else
4394                   {
4395                      f.Printf("         ");
4396                      if(returnType.kind != voidType)
4397                         f.Printf("return ");
4398                      f.Printf("%s::%s(", control._class.name, method.name);
4399                      for(param = dataType.params.first; param; param = param.next)
4400                      {
4401                         if(param.prev) f.Printf(", ");
4402                         if(param.kind != voidType)
4403                            f.Printf(param.name);
4404                      }
4405                      f.Printf(");\n");
4406                   }
4407                   f.Printf("      %c\n", CloseBracket);
4408                }
4409             }
4410          }
4411       }
4412
4413       if(!object.instCode)
4414          f.Printf(methodPresent ? "   %c;" : "%c;", CloseBracket);
4415       else if(!object.deleted)
4416       {
4417          // Turn this into a multiline instance when adding a method
4418          DeleteJunkBefore(f, inst.loc.end.pos-1, &position);
4419
4420          f.Printf(methodPresent ? "\n   " : " ");
4421
4422          f.Seek(inst.loc.end.pos + 1 - position, current);
4423          position = inst.loc.end.pos + 1;
4424       }
4425       return position;
4426    }
4427
4428    void OutputClassProperties(Class _class, ObjectInfo classObject, EditBoxStream f, Instance test)
4429    {
4430       Property propIt;
4431       Class regClass = eSystem_FindClass(privateModule, classObject.name);
4432
4433       if(_class.base && _class.base.type != systemClass) OutputClassProperties(_class.base, classObject, f, test);
4434
4435       for(propIt = _class.membersAndProperties.first; propIt; propIt = propIt.next)
4436       {
4437          Property prop = eClass_FindProperty(selected.instance._class, propIt.name, privateModule);
4438          if(prop && prop.isProperty && !prop.conversion)
4439          {
4440             if(prop.Set && prop.Get && prop.dataTypeString && strcmp(prop.name, "name") && !Code_IsPropertyDisabled(classObject, prop.name) &&
4441                (!prop.IsSet || prop.IsSet(classObject.instance)))
4442             {
4443                Class dataType = prop.dataTypeClass;
4444                char tempString[1024] = "";
4445                char * string = null;
4446                bool specify = false;
4447                DataMember member;
4448
4449                member = eClass_FindDataMember(regClass, prop.name, privateModule, null, null);
4450                if(member && member._class == regClass)
4451                   specify = true;
4452
4453                if(!dataType)
4454                   dataType = prop.dataTypeClass = eSystem_FindClass(this.privateModule, prop.dataTypeString);
4455
4456                if(dataType && dataType.type == structClass)
4457                {
4458                   void * dataForm = new0 byte[dataType.structSize];
4459                   void * dataTest = new0 byte[dataType.structSize];
4460
4461                   ((void (*)(void *, void *))(void *)prop.Get)(classObject.instance, dataForm);
4462                   ((void (*)(void *, void *))(void *)prop.Get)(test, dataTest);
4463
4464                   if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
4465                   {
4466                      bool needClass = true;
4467
4468                      string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
4469                      ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
4470                      if(needClass)
4471                         f.Printf("\n   %s%s = %c %s %c;", specify ? "property::" : "", prop.name, /*dataType.name, */OpenBracket, string, CloseBracket);
4472                      else
4473                         f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4474                   }
4475                   delete dataForm;
4476                   delete dataTest;
4477                }
4478                else if(dataType && (dataType.type == normalClass || dataType.type == noHeadClass))
4479                {
4480                   void * dataForm, * dataTest;
4481                   bool isEditBoxContents = false;
4482                   bool freeDataForm = false, freeDataTest = false;
4483
4484                   // Because contents property is broken for mutiline EditBox at the moment
4485                   if(!strcmp(prop.name, "contents") && !strcmp(prop._class.name, "EditBox"))
4486                      isEditBoxContents = true;
4487
4488                   if(isEditBoxContents && ((EditBox)classObject.instance).multiLine)
4489                   {
4490                      dataForm = ((EditBox)classObject.instance).multiLineContents;
4491                      freeDataForm = true;
4492                   }
4493                   else
4494                      dataForm = ((void *(*)(void *))(void *)prop.Get)(classObject.instance);
4495                   if(isEditBoxContents && ((EditBox)test).multiLine)
4496                   {
4497                      dataTest = ((EditBox)test).multiLineContents;
4498                      freeDataTest = true;
4499                   }
4500                   else
4501                      dataTest = ((void *(*)(void *))(void *)prop.Get)(test);
4502
4503                   if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, dataForm, dataTest))
4504                   {
4505                      char tempString[1024] = "";
4506                      char * string = null;
4507                      ((void (*)(void *, void *))(void *)prop.Set)(test, dataForm);
4508
4509                      if(eClass_IsDerived(classObject.instance._class, dataType) && classObject.instance == dataForm)
4510                      {
4511                         // Shouldn't go here ...
4512                         f.Printf("\n   %s%s = this;", specify ? "property::" : "", prop.name);
4513                      }
4514                      else
4515                      {
4516                         bool needClass = true;
4517
4518                         string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, dataForm, tempString, null, &needClass);
4519
4520                         if(!strcmp(dataType.dataTypeString, "char *"))
4521                         {
4522                            Map<String, bool> i18nStrings = classObject.i18nStrings;
4523                            bool i18n = true;
4524                            if(i18nStrings && i18nStrings.GetAtPosition(prop.name, false, null))
4525                               i18n = false;
4526
4527                            f.Printf("\n   %s%s = %s\"", specify ? "property::" : "", prop.name, i18n ? "$" : "");
4528                            OutputString(f, string);
4529                            f.Puts("\";");
4530                         }
4531                         else if(needClass)
4532                            f.Printf("\n   %s%s = %c %s %c;", specify ? "property::" : "", prop.name, /*dataType.name, */OpenBracket, string, CloseBracket);
4533                         else
4534                            f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4535                      }
4536                   }
4537                   if(freeDataForm) delete dataForm;
4538                   if(freeDataTest) delete dataTest;
4539                }
4540                else if(dataType)
4541                {
4542                   DataValue dataForm, dataTest;
4543
4544                   GetProperty(prop, classObject.instance, &dataForm);
4545                   GetProperty(prop, test, &dataTest);
4546
4547                   if(((int (*)(void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnCompare])(dataType, &dataForm, &dataTest))
4548                   {
4549                      SetProperty(prop, test, dataForm);
4550                      if(dataType.type == bitClass)
4551                      {
4552                         bool needClass = true;
4553                         string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm, tempString, null, &needClass);
4554                         if(needClass)
4555                            f.Printf("\n   %s%s = %c %s %c;", specify ? "property::" : "", prop.name, /*dataType.name, */OpenBracket, string, CloseBracket);
4556                         else if(string[0])
4557                            f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4558                      }
4559                      else
4560                      {
4561                         bool needClass = true;
4562                         if(dataType.type == enumClass)
4563                         {
4564                            NamedLink64 value;
4565                            Class enumClass = eSystem_FindClass(privateModule, "enum");
4566                            EnumClassData e = ACCESS_CLASSDATA(dataType, enumClass);
4567                            int64 i64Value = GetI64EnumValue(dataType, dataForm);
4568
4569                            for(value = e.values.first; value; value = value.next)
4570                            {
4571                               if(value.data == i64Value)
4572                               {
4573                                  string = value.name;
4574                                  break;
4575                               }
4576                            }
4577                         }
4578                         else
4579                            string = ((char * (*)(void *, void *, void *, void *, void *))(void *)dataType._vTbl[__ecereVMethodID_class_OnGetString])(dataType, &dataForm, tempString, null, &needClass);
4580                         if(!strcmp(dataType.dataTypeString, "float") && strchr(string, '.'))
4581                            f.Printf("\n   %s%s = %sf;", specify ? "property::" : "", prop.name, string);
4582                         else if(string[0])
4583                            f.Printf("\n   %s%s = %s;", specify ? "property::" : "", prop.name, string);
4584                      }
4585                   }
4586                }
4587             }
4588          }
4589       }
4590    }
4591
4592    void UpdateFormCode()
4593    {
4594       if(!this) return;
4595       if(!parsing) return;
4596
4597       updatingCode++;
4598       if(codeModified)
4599       {
4600          ParseCode();
4601       }
4602       else if(formModified)
4603       {
4604          EditBoxStream f { editBox = editBox };
4605          int position = 0;
4606          char * text = null;
4607          int textSize;
4608          Identifier movedFuncId;
4609          int movedFuncIdLen = 0, movedFuncIdPos = 0;
4610          ObjectInfo classObject;
4611
4612            updatingCode++;
4613
4614          editBox.recordUndoEvent = true;
4615
4616          if(moveAttached)
4617          {
4618             movedFuncId = GetDeclId(function.declarator);
4619             movedFuncIdLen = movedFuncId.loc.end.pos - movedFuncId.loc.start.pos;
4620             movedFuncIdPos = movedFuncId.loc.start.pos - function.loc.start.pos;
4621          }
4622
4623          for(classObject = classes.first; classObject; classObject = classObject.next)
4624          {
4625             ClassDefinition classDef = classObject.classDefinition;
4626             Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)classDef.baseSpecs->first).name);
4627             Instance test;
4628             ClassDef def;
4629             bool firstObject = true;
4630             ObjectInfo object = classObject.instances.first;
4631             bool lastIsDecl = false;
4632
4633             if(!classObject.modified) continue;
4634
4635             test = eInstance_New(regClass);
4636             incref test;
4637
4638             // Put it in the same desktop window...
4639             designer.PrepareTestObject(test);
4640
4641             //f.Printf("class %s : %s\n", classObject.name, classObject.oClass.name);
4642             //f.Printf("%c\n\n", OpenBracket);
4643
4644             // Change the _class name
4645             f.Seek(classDef.nameLoc.start.pos - position, current);
4646             f.DeleteBytes(classDef.nameLoc.end.pos - classDef.nameLoc.start.pos);
4647             f.Printf(classObject.name);
4648             position = classDef.nameLoc.end.pos;
4649
4650             {
4651                // Go to block start, delete all until no white space, put \n
4652                char ch;
4653                int count = 0;
4654                int back = 0;
4655                f.Seek(classDef.blockStart.end.pos - position, current);
4656                position = classDef.blockStart.end.pos;
4657
4658                for(; f.Getc(&ch); count++)
4659                {
4660                   if(!isspace(ch))
4661                   {
4662                      f.Seek(-1, current);
4663                      break;
4664                   }
4665
4666                   if(ch == '\n')
4667                      back = 0;
4668                   else
4669                      back++;
4670                }
4671
4672                f.Seek(-count, current);
4673
4674                f.DeleteBytes(count-back);
4675                //f.Printf("\n");
4676                position += count-back;
4677             }
4678
4679             // Output properties
4680             OutputClassProperties(classObject.instance._class, classObject, f, test);
4681
4682             for(def = classDef.definitions->first; def; def = def.next)
4683             {
4684                switch(def.type)
4685                {
4686                   case defaultPropertiesClassDef:
4687                   {
4688                      bool keptMember = false;
4689                      MemberInit propDef;
4690                      MemberInit lastKept = null;
4691
4692                      lastIsDecl = false;
4693                      DeleteJunkBefore(f, def.loc.start.pos, &position);
4694
4695                      // This was adding blank spaces between comment and properties -- What was it for?
4696                      // f.Printf("\n   ");
4697
4698                      for(propDef = def.defProperties->first; propDef; propDef = propDef.next)
4699                      {
4700                         Identifier ident = propDef.identifiers->first;
4701                         bool deleted = false;
4702
4703                         // For now delete if it's a prop
4704                         if(!propDef.variable && ident)
4705                         {
4706                            if(!ident.next)
4707                            {
4708                               Property prop = eClass_FindProperty(regClass, ident.string, this.privateModule);
4709                               if(prop)
4710                               {
4711                                  f.Seek(propDef.loc.start.pos - position, current);
4712                                  f.DeleteBytes(propDef.loc.end.pos - propDef.loc.start.pos);
4713                                  position = propDef.loc.end.pos;
4714                                  deleted = true;
4715                               }
4716                               else
4717                               {
4718                                  Method method = eClass_FindMethod(regClass, ident.string, this.privateModule);
4719                                  if(method && method.type == virtualMethod && propDef.initializer && propDef.initializer.type == expInitializer && propDef.initializer.exp && propDef.initializer.exp.type == identifierExp)
4720                                  {
4721                                     if(((methodAction == actionDetachMethod || methodAction == actionReattachMethod) && method == this.method && selected == classObject) ||
4722                                        (methodAction == actionDeleteMethod && !strcmp(function.declarator.symbol.string, propDef.initializer.exp.identifier.string)))
4723                                     {
4724                                        f.Seek(propDef.loc.start.pos - position, current);
4725                                        f.DeleteBytes(propDef.loc.end.pos - propDef.loc.start.pos);
4726                                        position = propDef.loc.end.pos;
4727                                        deleted = true;
4728                                     }
4729                                  }
4730                               }
4731                            }
4732                         }
4733                         if(!deleted)
4734                         {
4735                            keptMember = true;
4736                            lastKept = propDef;
4737                         }
4738                      }
4739
4740                      if(!keptMember)
4741                      {
4742                         char ch = 0;
4743                         f.Seek(def.loc.end.pos - position - 1, current);
4744                         f.Getc(&ch);
4745
4746                         if(ch == ';')
4747                         {
4748                            f.Seek(-1, current);
4749                            f.DeleteBytes(1);
4750                         }
4751                         position = def.loc.end.pos;
4752                      }
4753                      else
4754                      {
4755                         if(lastKept != def.defProperties->last)
4756                         {
4757                            char ch;
4758                            int count = 0;
4759
4760                            f.Seek(-1, current);
4761                            for(;f.Getc(&ch);)
4762                            {
4763                               if(ch == ',')
4764                               {
4765                                  count++;
4766                                  f.Seek(-1, current);
4767                                  break;
4768                               }
4769                               else if(!isspace(ch))
4770                                  break;
4771                               f.Seek(-2, current);
4772                               count++;
4773                            }
4774
4775                            if(ch == ',')
4776                               f.DeleteBytes(count);
4777                         }
4778                         else
4779                         {
4780                            f.Seek(def.loc.end.pos - position, current);
4781                            position = def.loc.end.pos;
4782                         }
4783                      }
4784                      break;
4785                   }
4786                   case declarationClassDef:
4787                   {
4788                      Declaration decl = def.decl;
4789
4790                      if(decl.type == instDeclaration)
4791                      {
4792                         if(def.object/* && ((ObjectInfo)def.object).modified*/)
4793                         {
4794                            while(def.object && object != def.object)
4795                            {
4796                               if(object /*&& ((ObjectInfo)def.object).modified*/)
4797                                  position = UpdateInstanceCode(f, position, regClass, object, &firstObject, &text, &textSize, movedFuncIdLen, movedFuncIdPos);
4798                               object = object.next;
4799                            }
4800
4801                            DeleteJunkBefore(f, def.loc.start.pos, &position);
4802                            f.Printf(firstObject ? "\n\n   " : "\n   ");
4803                            firstObject = false;
4804
4805                            if(def.object && ((ObjectInfo)def.object).modified)
4806                               position = UpdateInstanceCode(f, position, regClass, def.object, &firstObject, &text, &textSize, movedFuncIdLen, movedFuncIdPos);
4807
4808                            object = object ? object.next : null;
4809                         }
4810                         else
4811                         {
4812                            DeleteJunkBefore(f, def.loc.start.pos, &position);
4813                            f.Printf(firstObject ? "\n\n   " : "\n   ");
4814                            firstObject = false;
4815                         }
4816                         lastIsDecl = false;
4817                      }
4818                      else
4819                      {
4820                         DeleteJunkBefore(f, def.loc.start.pos, &position);
4821                         f.Printf(lastIsDecl ? "\n   " : "\n\n   ");
4822                         lastIsDecl = true;
4823                      }
4824                      break;
4825                   }
4826                   case functionClassDef:
4827                   {
4828                      // TESTING IF THIS IS GOOD ENOUGH FOR GENERATED FUNCTION...
4829                      if(!def.function.body) continue;
4830
4831                      lastIsDecl = false;
4832
4833                      DeleteJunkBefore(f, def.loc.start.pos, &position);
4834                      f.Printf("\n\n   ");
4835
4836                      // Delete _class methods
4837                      if((methodAction == actionDeleteMethod || (moveAttached && selected != classObject)) &&
4838                         def.function == function)
4839                      {
4840                         char ch;
4841                         int count = 0;
4842
4843                         if(moveAttached && !text)
4844                         {
4845                            GetLocText(editBox, f, position, &function.loc, &text, &textSize, Max((int)strlen(methodName) - movedFuncIdLen,0), 3);
4846                         }
4847
4848                         f.Seek(def.loc.end.pos - position, current);
4849                         for(; f.Getc(&ch); count++)
4850                         {
4851                            if(!isspace(ch))
4852                            {
4853                               f.Seek(-1, current);
4854                               break;
4855                            }
4856                         }
4857                         f.Seek(def.loc.start.pos - def.loc.end.pos - count, current);
4858
4859                         f.DeleteBytes(def.loc.end.pos - def.loc.start.pos + count);
4860                         position = def.loc.end.pos + count;
4861                      }
4862
4863                      // In case of detaching methods in the _class, simply rename the method
4864                      if(methodAction == actionDetachMethod && moveAttached && selected == classObject && function == def.function)
4865                      {
4866                         f.Seek(function.loc.start.pos + movedFuncIdPos - position, current);
4867                         f.DeleteBytes(movedFuncIdLen);
4868                         f.Puts(methodName);
4869                         position = function.loc.start.pos + movedFuncIdPos + movedFuncIdLen;
4870                      }
4871
4872                      if((methodAction == actionAttachMethod || methodAction == actionReattachMethod) && selected == classObject && moveAttached &&
4873                         function == def.function)
4874                      {
4875                         // In case of attaching methods in the _class, simply rename the method
4876                         f.Seek(function.loc.start.pos + movedFuncIdPos - position, current);
4877                         position = function.loc.start.pos + movedFuncIdPos;
4878                         f.DeleteBytes(movedFuncIdLen);
4879                         if(method.dataType.thisClass)
4880                            f.Printf("%s::", method.dataType.thisClass.string);
4881                         f.Puts(method.name);
4882                         position += movedFuncIdLen;
4883                      }
4884                      break;
4885                   }
4886                   default:
4887                      DeleteJunkBefore(f, def.loc.start.pos, &position);
4888                      if(def.type == memberAccessClassDef)
4889                      {
4890                         f.Printf("\n\n");
4891                         firstObject = false;
4892                         lastIsDecl = true;
4893                      }
4894                      else
4895                      {
4896                         f.Printf("\n   ");
4897                         lastIsDecl = false;
4898                      }
4899                }
4900
4901                f.Seek(def.loc.end.pos - position, current);
4902                position = def.loc.end.pos;
4903             }
4904
4905             // Output attached methods
4906             if((methodAction == actionAttachMethod || methodAction == actionReattachMethod) && selected == classObject && !moveAttached)
4907             {
4908                DeleteJunkBefore(f, position, &position);
4909                f.Printf("\n   %s = %s;\n", method.name, function.declarator.symbol.string);
4910             }
4911
4912             // ********** INSTANCES ***************
4913             for(; object; object = object.next)
4914             {
4915                if(!object.instCode)
4916                {
4917                   position = UpdateInstanceCode(f, position, regClass, object, &firstObject, &text, &textSize, movedFuncIdLen, movedFuncIdPos);
4918                }
4919             }
4920
4921             DeleteJunkBefore(f, position, &position);
4922
4923             // ****************** METHODS ***********************
4924             if(methodAction == actionDetachMethod && moveAttached && classObject == oClass)
4925             {
4926                // If detaching an instance method
4927                if(selected != classObject)
4928                {
4929                   int newLen = strlen(methodName);
4930
4931                   if(!text)
4932                      GetLocText(editBox, f, position, &function.loc, &text, &textSize, Max(newLen - movedFuncIdLen,0), 0);
4933                   // Tab selection left
4934                   {
4935                      int c;
4936                      for(c = 0; text[c]; )
4937                      {
4938                         int start = c, i;
4939                         for(i = 0; i<3 && text[c] == ' '; i++, c++);
4940                         memmove(text+start, text+start+i, textSize+1-start-i);
4941                         textSize -= i;
4942                         c -= i;
4943                         for(; text[c] && text[c] != '\n'; c++);
4944                         if(text[c]) c++;
4945                      }
4946                   }
4947
4948                   // Rename function
4949                   memmove(text + movedFuncIdPos + newLen, text + movedFuncIdPos + movedFuncIdLen, textSize - movedFuncIdPos - movedFuncIdLen + 1);
4950                   textSize += newLen - movedFuncIdLen;
4951                   memcpy(text + movedFuncIdPos, methodName, newLen);
4952
4953                   f.Printf("\n\n   ");
4954                   f.Puts(text);
4955                }
4956             }
4957
4958             if(methodAction == actionAddMethod && selected == classObject)
4959             {
4960                Method method = this.method;
4961
4962                if(!method.dataType)
4963                   method.dataType = ProcessTypeString(method.dataTypeString, false);
4964
4965                // ADDING METHOD HERE
4966                {
4967                   Type dataType = method.dataType;
4968                   Type returnType = dataType.returnType;
4969                   Type param;
4970                   // Class moduleClass = eSystem_FindClass(this.privateModule, "Module");
4971
4972                   f.Printf("\n\n");
4973                   f.Printf("   ");
4974                   OutputType(f, returnType, false);
4975
4976                   f.Printf(" ");
4977                   if(dataType.thisClass && !dataType.classObjectType)
4978                   {
4979                      if(dataType.thisClass.shortName)
4980                         f.Printf(dataType.thisClass.shortName);
4981                      else
4982                         f.Printf(dataType.thisClass.string);
4983                      f.Printf("::");
4984                   }
4985                   f.Printf(method.name);
4986                   f.Printf("(");
4987                   for(param = dataType.params.first; param; param = param.next)
4988                   {
4989                      OutputType(f, param, true);
4990                      if(param.next)
4991                         f.Printf(", ");
4992                   }
4993                   f.Printf(")\n");
4994                   f.Printf("   %c\n\n", OpenBracket);
4995
4996                   if(test._class._vTbl[method.vid] == null /*moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad]*/) // Temp Check for DefaultFunction
4997                   {
4998                      if(returnType && returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
4999                         f.Printf("      return true;\n");
5000                      else if(returnType && returnType.kind != voidType)
5001                         f.Printf("      return 0;\n");
5002                   }
5003                   else
5004                   {
5005                      f.Printf("      ");
5006                      if(returnType.kind != voidType)
5007                         f.Printf("return ");
5008                      {
5009                         char * name = ((Specifier)classDef.baseSpecs->first).name;
5010                         Symbol _class = FindClass(name);
5011                         f.Printf("%s::%s(", (_class && _class.registered) ? _class.registered.name : name, method.name);
5012                      }
5013                      for(param = dataType.params.first; param; param = param.next)
5014                      {
5015                         if(param.prev) f.Printf(", ");
5016                         if(param.kind != voidType)
5017                            f.Printf(param.name);
5018                      }
5019                      f.Printf(");\n");
5020                   }
5021
5022                   f.Printf("   %c", CloseBracket);
5023                }
5024             }
5025
5026             DeleteJunkBefore(f, classDef.loc.end.pos-1, &position);
5027             f.Printf("\n");
5028
5029             delete test;
5030          }
5031
5032          editBox.recordUndoEvent = false;
5033
5034          updatingCode--;
5035          delete f;
5036
5037          ParseCode();
5038          delete text;
5039
5040          // TOFIX: Patch for a glitch where clicking at the end of the view seems one line off. No idea what could be going on?
5041          editBox.OnVScroll(setRange, editBox.scroll.y, 0);
5042       }
5043
5044       updatingCode--;
5045       codeModified = false;
5046       formModified = false;
5047       methodAction = 0;
5048       moveAttached = false;
5049       function = null;
5050       method = null;
5051    }
5052
5053    int FindMethod(const char * methodName /*Method method*/, ClassFunction*functionPtr, Location propLoc)
5054    {
5055       int found = 0;
5056       ClassFunction function = null;
5057       if(methodName)
5058       {
5059          ObjectInfo object = this.selected;
5060
5061          if(object && object == this.oClass)
5062          {
5063             ClassDefinition classDef = object.oClass.classDefinition;
5064             ClassDef def;
5065             if(classDef && classDef.definitions)
5066             {
5067                for(def = classDef.definitions->first; def; def = def.next)
5068                {
5069                   if(def.type == functionClassDef && def.function.declarator)
5070                   {
5071                      if(!strcmp(def.function.declarator.symbol.string, methodName))
5072                      {
5073                         function = def.function;
5074                         found = 1;
5075                         break;
5076                      }
5077                   }
5078                   else if(def.type == defaultPropertiesClassDef)
5079                   {
5080                      MemberInit propDef;
5081
5082                      for(propDef = def.defProperties->first; propDef; propDef = propDef.next)
5083                      {
5084                         Identifier ident = propDef.identifiers ? propDef.identifiers->first : null;
5085                         if(ident && !ident.next)
5086                         {
5087                            if(!strcmp(ident.string, methodName) && propDef.initializer && propDef.initializer.type == expInitializer && propDef.initializer.exp && propDef.initializer.exp.type == identifierExp)
5088                            {
5089                               found = 2;
5090                               if(propLoc != null)
5091                                  propLoc = propDef.loc;
5092                               if(functionPtr)
5093                               {
5094                                  ClassDefinition classDef = object.oClass.classDefinition;
5095                                  ClassDef def;
5096                                  if(classDef.definitions)
5097                                  {
5098                                     for(def = classDef.definitions->first; def; def = def.next)
5099                                     {
5100                                        if(def.type == functionClassDef)
5101                                        {
5102                                           if(!strcmp(def.function.declarator.symbol.string, propDef.initializer.exp.identifier.string))
5103                                           {
5104                                              function = def.function;
5105                                              break;
5106                                           }
5107                                        }
5108                                     }
5109                                     if(function) break;
5110                                  }
5111                               }
5112                               else
5113                                  break;
5114                            }
5115                         }
5116                      }
5117                   }
5118                }
5119             }
5120          }
5121          else if(object)
5122          {
5123             Instantiation inst = object.instCode;
5124
5125             // Check here to see if the method already exists, no need to call ModifyCode in that case
5126             if(inst && inst.members)
5127             {
5128                MembersInit members;
5129                for(members = inst.members->first; members; members = members.next)
5130                {
5131                   switch(members.type)
5132                   {
5133                      case dataMembersInit:
5134                      {
5135                         if(members.dataMembers)
5136                         {
5137                            MemberInit member;
5138                            for(member = members.dataMembers->first; member; member = member.next)
5139                            {
5140                               Identifier ident = member.identifiers ? member.identifiers->first : null;
5141                               if(ident && !ident.next)
5142                               {
5143                                  if(!strcmp(ident.string, methodName) && member.initializer && member.initializer.type == expInitializer && member.initializer.exp && member.initializer.exp.type == memberExp /*ExpIdentifier*/)
5144                                  {
5145                                     found = 2;
5146                                     if(propLoc != null)
5147                                        propLoc = member.loc;
5148                                     if(functionPtr)
5149                                     {
5150                                        ClassDefinition classDef = object.oClass.classDefinition;
5151                                        ClassDef def;
5152                                        if(classDef.definitions)
5153                                        {
5154                                           for(def = classDef.definitions->first; def; def = def.next)
5155                                           {
5156                                              if(def.type == functionClassDef)
5157                                              {
5158                                                 if(def.function.declarator && !strcmp(def.function.declarator.symbol.string, member.initializer.exp.identifier.string))
5159                                                 {
5160                                                    function = def.function;
5161                                                    break;
5162                                                 }
5163                                              }
5164                                           }
5165                                           if(function) break;
5166                                        }
5167                                        if(!function)
5168                                        {
5169                                           // TODO: Fix memory leak
5170                                           function = ClassFunction
5171                                           {
5172                                              declarator = Declarator { symbol = Symbol { string = CopyString(member.initializer.exp.member.member ? member.initializer.exp.member.member.string : "") } }
5173                                           };
5174                                        }
5175                                     }
5176                                     else
5177                                        break;
5178                                  }
5179                               }
5180                            }
5181                         }
5182                         break;
5183                      }
5184                      case methodMembersInit:
5185                      {
5186                         if(members.function.declarator && !strcmp(members.function.declarator.symbol.string, methodName))
5187                         {
5188                            function = members.function;
5189                            found = 1;
5190                         }
5191                         break;
5192                      }
5193                   }
5194                   if(function)
5195                      break;
5196                }
5197             }
5198          }
5199       }
5200       if(functionPtr) *functionPtr = function;
5201       return found;
5202    }
5203
5204    void GoToMethod(const char * methodName /*Method method*/)
5205    {
5206       if(methodName)
5207       {
5208          ObjectInfo object = selected;
5209          EditBoxStream f { editBox = editBox };
5210          ClassFunction function = null;
5211          bool atChar = false;
5212          int indent = 6;
5213          EditLine l1, l2;
5214          int y1,y2, x1, x2;
5215          Location propLoc = { {0,0,-1} };
5216
5217          // GO TO THE METHOD
5218          if(FindMethod(methodName, &function, &propLoc) == 1 && object != this.oClass) indent = 9;
5219          if(function && function.body)
5220          {
5221             bool lfCount = 0;
5222             f.Seek(function.body.loc.start.pos+1, current);
5223             for(;;)
5224             {
5225                char ch;
5226                if(!f.Getc(&ch))
5227                   break;
5228                if(ch == '\n')
5229                {
5230                   if(lfCount)
5231                   {
5232                      f.Seek(-1, current);
5233                      break;
5234                   }
5235                   lfCount++;
5236                }
5237                else if(!isspace(ch))
5238                {
5239                   f.Seek(-1, current);
5240                   atChar = true;
5241                   break;
5242                }
5243             }
5244          }
5245          else if(propLoc.start.pos > -1)
5246          {
5247             f.Seek(propLoc.start.pos, current);
5248             atChar = true;
5249          }
5250          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
5251          delete f;
5252          if(function || propLoc.start.pos > -1)
5253          {
5254             editBox.SetSelPos(l1, y1, atChar ? x1 : indent, l2, y2, atChar ? x2 : indent);
5255             editBox.CenterOnCursor();
5256             SetState(normal, false, 0);
5257             Activate();
5258
5259             if(function && function.declarator && function.declarator.symbol && !function.declarator.symbol.type)
5260             {
5261                FreeClassFunction(function);
5262             }
5263          }
5264       }
5265    }
5266
5267    void FindCompatibleMethods(Method method, OldList compatible)
5268    {
5269       ClassDefinition classDef = this.oClass.classDefinition;
5270       if(classDef && classDef.definitions)
5271       {
5272          Class regClass { };
5273          Class baseClass = eSystem_FindClass(this.privateModule, ((Specifier)classDef.baseSpecs->first).name);
5274          ClassDef def;
5275          Class _class;
5276          Symbol classSym { };
5277          Symbol selectedClass;
5278          if(this.selected == this.oClass)
5279             selectedClass = classSym;
5280          else
5281             selectedClass = FindClass(this.selected.instance._class.name);
5282
5283          regClass.name = classDef._class.name;
5284          regClass.base = eSystem_FindClass(this.privateModule, ((Specifier)classDef.baseSpecs->first).name);
5285          for(def = classDef.definitions->first; def; def = def.next)
5286          {
5287             if(def.type == functionClassDef && def.function.declarator)
5288             {
5289                Method vMethod = eClass_FindMethod(baseClass, def.function.declarator.symbol.string, this.privateModule);
5290                if(!vMethod)
5291                   vMethod = eClass_FindMethod(this.selected.instance._class, def.function.declarator.symbol.string, this.privateModule);
5292                if(!vMethod)
5293                {
5294                   Type type = def.function.declarator.symbol.type;
5295                   if(CheckCompatibleMethod(method, type, regClass, this.selected == this.oClass, FindClass(this.selected.instance._class.name)))
5296                   {
5297                      compatible.Add(OldLink { data = def.function });
5298                   }
5299                }
5300             }
5301          }
5302
5303          if(this.oClass && this.oClass.instance)
5304          {
5305             classSym.registered = regClass;
5306             //classSym.registered = this.oClass.oClass;
5307
5308             for(_class = regClass.base; _class; _class = _class.base)
5309             {
5310                Method testMethod;
5311                for(testMethod = (Method)_class.methods.first; testMethod; testMethod = (Method)((BTNode)testMethod).next)
5312                {
5313                   // TODO: Understand why these functions popup in attach list
5314                   if(testMethod.type != virtualMethod /*&& testMethod.function != Window_OnGetString && testMethod.function != Window_OnGetDataFromString*/)
5315                   {
5316                      if(!testMethod.dataType)
5317                         testMethod.dataType = ProcessTypeString(testMethod.dataTypeString, false);
5318
5319                      //if(CheckCompatibleMethod(method, testMethod.dataType, &regClass, false, selectedClass)) // this.selected == this.oClass, selectedClass))
5320                      if(CheckCompatibleMethod(method, testMethod.dataType, this.oClass.instance._class, false, selectedClass)) // this.selected == this.oClass, selectedClass))
5321                      //if(CheckCompatibleMethod(method, testMethod.dataType, &regClass, this.selected == this.oClass, FindClass(this.oClass.oClass.name)))
5322                      {
5323                         // TODO: Fix memory leak, Figure out if it should be ClassFunction or FunctionDefinition
5324                         // ClassFunction function { };
5325                         FunctionDefinition function { };
5326
5327                         function.declarator = Declarator { };
5328                         function.declarator.symbol = Symbol { string = CopyString(testMethod.name) };
5329                         excludedSymbols.Add(function.declarator.symbol);
5330
5331                         compatible.Add(OldLink { data = function });
5332                      }
5333                   }
5334                }
5335             }
5336          }
5337          delete regClass;
5338          delete classSym;
5339       }
5340    }
5341
5342    void AddMethod(Method method)
5343    {
5344       if(method)
5345       {
5346          char methodName[1024];
5347          strcpy(methodName, method.name);
5348          if(!FindMethod(methodName, null, null))
5349          {
5350             methodAction = actionAddMethod;
5351             this.method = method;
5352             ModifyCode();
5353          }
5354          UpdateFormCode();
5355          GoToMethod(methodName);
5356       }
5357    }
5358
5359    void DeleteMethod(ClassFunction function)
5360    {
5361       if(function)
5362       {
5363          methodAction = actionDeleteMethod;
5364          this.function = function;
5365          ModifyCode();
5366          UpdateFormCode();
5367
5368          Update(null);
5369       }
5370    }
5371
5372    void AttachMethod(Method method, ClassFunction function)
5373    {
5374       if(function)
5375       {
5376          // If it's an instance we'll ask if we want to move it inside...
5377          if(!function.attached.count && function.body)
5378          {
5379             // Find the function in the _class to check if it's a virtual function
5380             Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)this.oClass.classDefinition.baseSpecs->first).name);
5381             Method method = eClass_FindMethod(regClass, function.declarator.symbol.string, this.privateModule);
5382             /*    LATER we'll need to check for public/virtual properties etc, for now only checked if virtual in base _class
5383             ClassDef def;
5384             for(def = this.classDefinition.first; def; def = def.next)
5385             {
5386                if(def.type == functionClassDef)
5387                {
5388                   if(def.function == function)
5389                      break;
5390                }
5391             }
5392             */
5393             if(!method || method.type != virtualMethod)
5394             {
5395                char title[1024];
5396                sprintf(title, $"Attach %s", function.declarator.symbol.string);
5397                if(MessageBox { type = yesNo, master = parent, text = title, contents = $"Method is unused. Move method inside instance?"}.Modal() == yes)
5398                {
5399                   moveAttached = true;
5400                }
5401             }
5402          }
5403
5404          methodAction = actionAttachMethod;
5405          this.method = method;
5406          this.function = function;
5407          ModifyCode();
5408          UpdateFormCode();
5409          Update(null);
5410       }
5411    }
5412
5413    void ReAttachMethod(Method method, ClassFunction function)
5414    {
5415       if(function)
5416       {
5417          // If it's an instance we'll ask if we want to move it inside...
5418          if(!function.attached.count && function.body)
5419          {
5420             // Find the function in the _class to check if it's a virtual function
5421             Class regClass = eSystem_FindClass(this.privateModule, ((Specifier)this.oClass.classDefinition.baseSpecs->first).name);
5422             Method method = eClass_FindMethod(regClass, function.declarator.symbol.string, this.privateModule);
5423             /*    LATER we'll need to check for public/virtual properties etc, for now only checked if virtual in base _class
5424             ClassDef def;
5425             for(def = this.classDefinition.first; def; def = def.next)
5426             {
5427                if(def.type == functionClassDef)
5428                {
5429                   if(def.function == function)
5430                      break;
5431                }
5432             }
5433             */
5434             if(!method || method.type != virtualMethod)
5435             {
5436                char title[1024];
5437                sprintf(title, $"Attach %s", function.declarator.symbol.string);
5438                if(MessageBox { type = yesNo, master = parent, text = title,
5439                   contents = $"Method is unused. Move method inside instance?" }.Modal() == yes)
5440                {
5441                   moveAttached = true;
5442                }
5443             }
5444          }
5445
5446          methodAction = actionReattachMethod;
5447          this.method = method;
5448          this.function = function;
5449          ModifyCode();
5450          UpdateFormCode();
5451          Update(null);
5452       }
5453    }
5454
5455    void DetachMethod(Method method, ClassFunction function, int type)
5456    {
5457       bool result = true;
5458
5459       if(type == 1)
5460       {
5461          Window dialog
5462          {
5463             hasClose = true, borderStyle = sizable, minClientSize = { 300, 55 },
5464             master = sheet, text = $"Name detached method", background = formColor
5465          };
5466          Button cancelButton
5467          {
5468             dialog, anchor = { horz = 45, top = 30 }, size = { 80 }, text = $"Cancel", hotKey = escape,
5469             id = DialogResult::cancel, NotifyClicked = ButtonCloseDialog
5470          };
5471          Button okButton
5472          {
5473             dialog, anchor = { horz = -45, top = 30 }, size = { 80 }, text = $"OK", isDefault = true,
5474             id = DialogResult::ok, NotifyClicked = ButtonCloseDialog
5475          };
5476          EditBox nameBox
5477          {
5478             dialog, anchor = { left = 5, right = 5, top = 5 }
5479          };
5480          sprintf(methodName, "%s_%s", selected.name, method.name);
5481          nameBox.contents = methodName;
5482          incref nameBox;
5483          result = dialog.Modal() == ok;
5484          strcpy(methodName, nameBox.contents);
5485          delete nameBox;
5486       }
5487       if(result)
5488       {
5489          // If the method is not attached, move it outside
5490          if(type == 1)
5491          {
5492             // Add this class to the methodName
5493             char name[1024] = "";
5494
5495             if(this.selected != this.oClass && !method.dataType.thisClass)
5496             {
5497                strcat(name, this.selected.instance._class.name);
5498                strcat(name, "::");
5499                strcat(name, this.methodName);
5500                strcpy(this.methodName, name);
5501             }
5502             else if(method.dataType.thisClass && (this.selected == this.oClass || !eClass_IsDerived(this.oClass.instance._class, method.dataType.thisClass.registered)))
5503             {
5504                strcat(name, method.dataType.thisClass.string);
5505                strcat(name, "::");
5506                strcat(name, this.methodName);
5507                strcpy(this.methodName, name);
5508             }
5509
5510             this.moveAttached = true;
5511          }
5512
5513          this.methodAction = actionDetachMethod;
5514          this.method = method;
5515          this.function = function;
5516          ModifyCode();
5517          UpdateFormCode();
5518          Update(null);
5519       }
5520    }
5521
5522    void AddObject(Instance instance, ObjectInfo * object)
5523    {
5524       int id;
5525       incref instance;
5526       //*object = _class.instances.Add(sizeof(ObjectInfo));
5527       *object = ObjectInfo { };
5528       oClass.instances.Insert((selected.oClass == selected) ? null : selected, *object);
5529       (*object).oClass = oClass;
5530       (*object).instance = instance;
5531       for(id = 1;; id++)
5532       {
5533          char name[1024];
5534          ObjectInfo check;
5535          sprintf(name, "%c%s%d", tolower(instance._class.name[0]), instance._class.name+1, id);
5536
5537          // if(strcmp(name, this.oClass.instance.name))
5538
5539          {
5540             for(check = oClass.instances.first; check; check = check.next)
5541                if(!check.deleted && check.name && !strcmp(name, check.name))
5542                   break;
5543             if(!check)
5544             {
5545                (*object).name = CopyString(name);
5546                break;
5547             }
5548          }
5549       }
5550       toolBox.controlClass = null;
5551
5552       ModifyCode();
5553
5554       //sheet.AddObject(*object, (*object).name, TypeData, true);
5555
5556       selected = *object;
5557    }
5558
5559    void EnsureUpToDate()
5560    {
5561       if(sheet && codeModified && parsing)
5562          ParseCode();
5563    }
5564
5565    void SelectObject(ObjectInfo object)
5566    {
5567       selected = object;
5568       oClass = object ? object.oClass : null;
5569       if(designer)
5570          designer.SelectObject(object, object ? object.instance : null);
5571    }
5572
5573    void SelectObjectFromDesigner(ObjectInfo object)
5574    {
5575       selected = object;
5576       sheet.SelectObject(object);
5577    }
5578
5579    void EnumerateObjects(Sheet sheet)
5580    {
5581       ObjectInfo oClass;
5582
5583       for(oClass = classes.first; oClass; oClass = oClass.next)
5584       {
5585          if(oClass.instance)
5586          {
5587             ObjectInfo object;
5588
5589             sheet.AddObject(oClass, oClass.name ? oClass.name : oClass.instance._class.name, typeClass, false);
5590             for(object = oClass.instances.first; object; object = object.next)
5591                sheet.AddObject(object, object.name ? object.name : object.instance._class.name, typeData, false);
5592          }
5593       }
5594       sheet.SelectObject(selected);
5595    }
5596
5597    void AddControl()
5598    {
5599       designer.AddObject();
5600    }
5601
5602    void DeleteObject(ObjectInfo object)
5603    {
5604       delete object.instance;
5605       object.deleted = true;
5606       object.modified = true;
5607       object.oClass.modified = true;
5608
5609       if(selected == object)
5610       {
5611          bool looped = false;
5612          ObjectInfo select = object;
5613
5614          for(;;)
5615          {
5616             select = select.prev;
5617             if(!select)
5618             {
5619                if(looped) break;
5620                select = object.oClass.instances.last;
5621                if(!select) break;
5622                looped = true;
5623             }
5624             if(!select.deleted)
5625                break;
5626          }
5627          sheet.SelectObject(select ? select : oClass);
5628       }
5629
5630       if(!object.instCode && object.oClass != object)
5631       {
5632          delete object.name;
5633          oClass.instances.Delete(object);
5634       }
5635
5636       if(sheet.codeEditor == this)
5637          sheet.DeleteObject(object);
5638    }
5639
5640    void RenameObject(ObjectInfo object, const char * name)
5641    {
5642       bool valid = false;
5643
5644       // Validate the name:
5645       if(object != oClass && (!name || !name[0])) valid = true;   // What's this one again?
5646       else if(name[0] && (isalpha(name[0]) || name[0] == '_'))
5647       {
5648          int c;
5649          for(c = 0; name[c]; c++)
5650             if(!isalnum(name[c]) && name[c] != '_' && name[c] != '_')
5651                break;
5652          if(!name[c])
5653             valid = true;
5654       }
5655       if(valid)
5656       {
5657          delete object.name;
5658          object.name = (name && name[0]) ? CopyString(name) : null;
5659
5660          sheet.RenameObject(object, object.name ? object.name : object.instance._class.name);
5661       }
5662    }
5663
5664    void DesignerModifiedObject()
5665    {
5666       sheet.ListProperties(false);
5667       sheet.Update(null);
5668    }
5669
5670    void ListSubMembers(Type member)
5671    {
5672       Type subMember;
5673
5674       for(subMember = member.members.first; subMember; subMember = subMember.next)
5675       {
5676          if(subMember.name)
5677          {
5678             DataRow row = membersList.AddString(subMember.name);
5679             row.icon = icons[typeData];
5680          }
5681          else
5682          {
5683             ListSubMembers(subMember);
5684          }
5685       }
5686    }
5687
5688    void ListSubDataMembers(DataMember member, bool isPrivate)
5689    {
5690       DataMember subMember;
5691       for(subMember = member.members.first; subMember; subMember = subMember.next)
5692       {
5693          if((subMember.memberAccess == publicAccess && !isPrivate) || subMember._class.module == privateModule)
5694          {
5695             if(subMember.name)
5696             {
5697                DataRow row = membersList.AddString(subMember.name);
5698                BitmapResource bitmap = null;
5699                if(!subMember.dataType)
5700                   subMember.dataType = ProcessTypeString(subMember.dataTypeString, false);
5701
5702                if(subMember.dataType && subMember.dataType.kind == classType && subMember.dataType._class)
5703                {
5704                   char * bitmapName = (char *)(intptr)eClass_GetProperty(subMember.dataType._class.registered, "icon");
5705                   if(bitmapName)
5706                   {
5707                      bitmap = { bitmapName };
5708                      membersList.AddResource(bitmap);
5709                   }
5710                }
5711                row.icon = bitmap ? bitmap : icons[(subMember.memberAccess == publicAccess && !isPrivate) ? typeData : typeDataPrivate];
5712             }
5713             else
5714             {
5715                ListSubDataMembers(subMember, isPrivate || member.memberAccess == privateAccess);
5716             }
5717          }
5718       }
5719    }
5720
5721    void ListClassMembers(Class whatClass, bool methodsOnly)
5722    {
5723       Class _class;
5724       Class baseClass = eSystem_FindClass(this.privateModule, "class");
5725       bool isPrivate = false;
5726
5727       for(_class = whatClass; _class && _class.type != systemClass; _class = _class.base)
5728       {
5729          Method method, methodIt;
5730          DataMember member;
5731          DataMember memberIt;
5732
5733          for(methodIt = (Method)_class.methods.first; methodIt; methodIt = (Method)((BTNode)methodIt).next)
5734          {
5735             method = eClass_FindMethod(whatClass, methodIt.name, privateModule);
5736             if(methodIt.memberAccess == privateAccess && method && method.memberAccess == publicAccess)
5737                method = methodIt;
5738             if(method && method._class.type != systemClass && !eClass_FindMethod(baseClass, method.name, this.privateModule))
5739             {
5740                if(method.memberAccess == publicAccess || method._class.module == privateModule)
5741                {
5742                   DataRow row = membersList.FindString(method.name);
5743                   if(!row)
5744                   {
5745                      row = membersList.AddString(method.name);
5746
5747                      if(!method.dataType)
5748                         method.dataType = ProcessTypeString(method.dataTypeString, false);
5749
5750                      row.icon = icons[(method.type == virtualMethod && method.dataType && method.dataType.thisClass) ? typeEvent : ((method.memberAccess == publicAccess && !isPrivate) ? typeMethod : typeMethodPrivate)];
5751                   }
5752                }
5753             }
5754          }
5755
5756          if(!methodsOnly)
5757          {
5758             for(memberIt = _class.membersAndProperties.first; memberIt; memberIt = memberIt.next)
5759             {
5760                if(memberIt.name)
5761                {
5762                   if(memberIt.isProperty)
5763                   {
5764                      member = (DataMember)eClass_FindProperty(whatClass, memberIt.name, privateModule);
5765                      if(!member)
5766                         member = eClass_FindDataMember(whatClass, memberIt.name, privateModule, null, null);
5767                   }
5768                   else
5769                   {
5770                      member = eClass_FindDataMember(whatClass, memberIt.name, privateModule, null, null);
5771                      if(!member)
5772                         member = (DataMember)eClass_FindProperty(whatClass, memberIt.name, privateModule);
5773                   }
5774
5775                   if(memberIt.memberAccess == privateAccess && member && member.memberAccess == publicAccess)
5776                      member = memberIt;
5777                }
5778                else
5779                   member = memberIt;
5780
5781                if(member && (member.memberAccess == publicAccess || member._class.module == privateModule))
5782                {
5783                   if(member.isProperty)
5784                   {
5785                      Property prop = (Property) member;
5786                      if(!membersList.FindString(prop.name))
5787                      {
5788                         DataRow row = membersList.AddString(prop.name);
5789                         row.icon = icons[(member.memberAccess == publicAccess && !isPrivate) ? typeProperty : typePropertyPrivate];
5790                      }
5791                   }
5792                   else if(member.name && !membersList.FindString(member.name))
5793                   {
5794                      DataRow row = membersList.AddString(member.name);
5795
5796                      BitmapResource bitmap = null;
5797                      if(!member.dataType)
5798                         member.dataType = ProcessTypeString(member.dataTypeString, false);
5799
5800                      if(member.dataType && member.dataType.kind == classType && member.dataType._class)
5801                      {
5802                         char * bitmapName = (char *)(intptr)eClass_GetProperty(member.dataType._class.registered, "icon");
5803                         if(bitmapName)
5804                         {
5805                            bitmap = { bitmapName };
5806                            membersList.AddResource(bitmap);
5807                         }
5808                      }
5809                      row.icon = bitmap ? bitmap : icons[(member.memberAccess == publicAccess && !isPrivate) ? typeData : typeDataPrivate];
5810                   }
5811                   else
5812                      ListSubDataMembers(member, member.memberAccess == privateAccess);
5813                }
5814             }
5815          }
5816          if(_class.inheritanceAccess == privateAccess)
5817          {
5818             isPrivate = true;
5819             if(_class.module != privateModule) break;
5820          }
5821       }
5822    }
5823
5824    void ListClassMembersMatch(Class whatClass, Type methodType)
5825    {
5826       Class _class;
5827       Class baseClass = eSystem_FindClass(this.privateModule, "class");
5828       bool isPrivate = false;
5829
5830       for(_class = whatClass; _class && _class.type != systemClass; _class = _class.base)
5831       {
5832          Method method;
5833
5834          for(method = (Method)_class.methods.first; method; method = (Method)((BTNode)method).next)
5835          {
5836             if(method.memberAccess == publicAccess || method._class.module == privateModule)
5837             {
5838                if(method._class.type != systemClass && !eClass_FindMethod(baseClass, method.name, this.privateModule))
5839                {
5840                   if(!method.dataType)
5841                      method.dataType = ProcessTypeString(method.dataTypeString, false);
5842
5843                   if(MatchTypes(method.dataType, methodType, null, whatClass, /*null, */whatClass, false, true, false, false, true))
5844                   {
5845                      DataRow row = membersList.FindString(method.name);
5846                      if(!row)
5847                      {
5848                         row = membersList.AddString(method.name);
5849                         row.icon = icons[(method.type == virtualMethod && method.dataType.thisClass) ? typeEvent : ((method.memberAccess == publicAccess && !isPrivate) ? typeMethod : typeMethodPrivate)];
5850                      }
5851                   }
5852                }
5853             }
5854          }
5855          if(_class.inheritanceAccess == privateAccess)
5856          {
5857             isPrivate = true;
5858             if(_class.module != privateModule) break;
5859          }
5860       }
5861    }
5862
5863    void ListClassPropertiesAndVirtual(Class whatClass, const String curString)
5864    {
5865       Class _class;
5866       bool isPrivate = false;
5867       for(_class = whatClass; _class /*&& _class.type != systemClass*/; _class = _class.base)
5868       {
5869          Method method;
5870          DataMember member;
5871
5872          for(method = (Method)_class.methods.first; method; method = (Method)((BTNode)method).next)
5873          {
5874             if(method.type == virtualMethod)
5875             {
5876                if(method.memberAccess == publicAccess || method._class.module == privateModule)
5877                {
5878                   DataRow row = membersList.FindString(method.name);
5879                   if(!row)
5880                   {
5881                      row = membersList.AddString(method.name);
5882
5883                      if(!method.dataType)
5884                         method.dataType = ProcessTypeString(method.dataTypeString, false);
5885
5886                      row.icon = icons[method.dataType.thisClass ? typeEvent : ((method.memberAccess == publicAccess && !isPrivate) ? typeMethod : typeMethodPrivate)];
5887                   }
5888                }
5889             }
5890          }
5891
5892          for(member = _class.membersAndProperties.first; member; member = member.next)
5893          {
5894             if(member.memberAccess == publicAccess || member._class.module == privateModule)
5895             {
5896                if(member.isProperty)
5897                {
5898                   Property prop = (Property)member;
5899                   {
5900                      DataRow row = membersList.AddString(prop.name);
5901                      row.icon = icons[(member.memberAccess == publicAccess && !isPrivate) ? typeProperty : typePropertyPrivate];
5902                   }
5903                }
5904                else if(member.name && (!curString || strcmp(curString, member.name)))
5905                {
5906                   DataRow row = membersList.AddString(member.name);
5907
5908                   BitmapResource bitmap = null;
5909                   if(!member.dataType)
5910                      member.dataType = ProcessTypeString(member.dataTypeString, false);
5911
5912                   if(member.dataType && member.dataType.kind == classType && member.dataType._class)
5913                   {
5914                      char * bitmapName = (char *)(intptr)eClass_GetProperty(member.dataType._class.registered, "icon");
5915                      if(bitmapName)
5916                      {
5917                         bitmap = { bitmapName };
5918                         membersList.AddResource(bitmap);
5919                      }
5920                   }
5921                   row.icon = bitmap ? bitmap : icons[(member.memberAccess == publicAccess && !isPrivate) ? typeData : typeDataPrivate];
5922                }
5923                else
5924                   ListSubDataMembers(member, member.memberAccess == privateAccess || isPrivate);
5925             }
5926          }
5927          if(_class.inheritanceAccess == privateAccess)
5928          {
5929             isPrivate = true;
5930             if(_class.module != privateModule) break;
5931          }
5932       }
5933    }
5934
5935    void ListMembers(Type type)
5936    {
5937       if(type && (type.kind == classType || type.kind == structType || type.kind == unionType))
5938       {
5939          if(type.kind == classType)
5940          {
5941             if(type._class)
5942                ListClassMembers(type._class.registered, false);
5943          }
5944          else
5945          {
5946             Type member;
5947             for(member = type.members.first; member; member = member.next)
5948             {
5949                if(member.name)
5950                {
5951                   DataRow row = membersList.AddString(member.name);
5952                   row.icon = icons[typeData];
5953                }
5954                else if(member.kind == structType || member.kind == unionType)
5955                   ListSubMembers(member);
5956             }
5957          }
5958       }
5959    }
5960
5961    void ListModule(Module mainModule, int recurse, bool listClasses)
5962    {
5963       Module module;
5964       ListNameSpace(mainModule.application.systemNameSpace, 1, listClasses);
5965       ListNameSpace(mainModule.application.privateNameSpace, 1, listClasses);
5966       ListNameSpace(mainModule.application.publicNameSpace, 1, listClasses);
5967       for(module = mainModule.application.allModules.first; module; module = module.next)
5968       {
5969          if(ModuleVisibility(mainModule, module))
5970             ListNameSpace(module.publicNameSpace, recurse, listClasses);
5971       }
5972    }
5973
5974    void ListNameSpace(NameSpace nameSpace, int recurse, bool listClasses)
5975    {
5976       NameSpace * ns;
5977       BTNamedLink link;
5978
5979       if(listClasses)
5980       {
5981          for(link = (BTNamedLink)nameSpace.classes.first; link; link = (BTNamedLink)((BTNode)link).next)
5982          {
5983             Class _class = link.data;
5984             if(_class.type != systemClass && !_class.templateClass)  // Omit templatized classes
5985             {
5986                DataRow row = membersList.AddString(_class.name);
5987                row.icon = (_class.type == unitClass || _class.type == enumClass) ? icons[typeDataType] : icons[typeClass];
5988             }
5989          }
5990       }
5991
5992       for(link = (BTNamedLink)nameSpace.defines.first; link; link = (BTNamedLink)((BTNode)link).next )
5993       {
5994          //DefinedExpression definedExp = link.data;
5995          DataRow row = membersList.AddString(link /*definedExp*/.name);
5996          row.icon = icons[typeData];
5997       }
5998
5999       for(link = (BTNamedLink)nameSpace.functions.first; link; link = (BTNamedLink)((BTNode)link).next)
6000       {
6001          //GlobalFunction function = link.data;
6002          DataRow row = membersList.AddString(link /*function*/.name);
6003          row.icon = icons[typeMethod];
6004       }
6005
6006
6007       for(ns = (NameSpace *)nameSpace.nameSpaces.first; ns; ns = (NameSpace *)((BTNode)ns).next)
6008       {
6009          if(recurse != 2 && listClasses)
6010          {
6011             if(!membersList.FindString(ns->name))
6012             {
6013                DataRow row = membersList.AddString(ns->name);
6014                row.icon = icons[typeNameSpace];
6015             }
6016          }
6017
6018          if(recurse)
6019             ListNameSpace(ns, 2, listClasses);
6020       }
6021    }
6022
6023    void ListEnumValues(Class _class)
6024    {
6025       List<Class> classes { };
6026       for(; _class && _class.type == enumClass; _class = _class.base)
6027          classes.Insert(null, _class);
6028       for(_class : classes)
6029       {
6030          EnumClassData enumeration = (EnumClassData)_class.data;
6031          NamedLink64 item;
6032          for(item = enumeration.values.first; item; item = item.next)
6033          {
6034             DataRow row = membersList.AddString(item.name);
6035             row.icon = icons[typeEnumValue];
6036          }
6037       }
6038       delete classes;
6039    }
6040
6041    bool ListEnumsModule(Module mainModule, Type dest)
6042    {
6043       bool result = false;
6044       Module module;
6045       result |= ListEnums(mainModule.application.systemNameSpace, dest);
6046       result |= ListEnums(mainModule.application.privateNameSpace, dest);
6047       result |= ListEnums(mainModule.application.publicNameSpace, dest);
6048       for(module = mainModule.application.allModules.first; module; module = module.next)
6049       {
6050          if(ModuleVisibility(mainModule, module))
6051             result |= ListEnums(module.publicNameSpace, dest);
6052       }
6053       return result;
6054    }
6055
6056    void ListNameSpaceByString(Module mainModule, const char * string)
6057    {
6058       NameSpace * nameSpace;
6059       Module module;
6060       nameSpace = FindNameSpace(mainModule.application.systemNameSpace, string);
6061       if(nameSpace) ListNameSpace(nameSpace, 0, true);
6062       nameSpace = FindNameSpace(mainModule.application.privateNameSpace, string);
6063       if(nameSpace) ListNameSpace(nameSpace, 0, true);
6064       nameSpace = FindNameSpace(mainModule.application.publicNameSpace, string);
6065       if(nameSpace) ListNameSpace(nameSpace, 0, true);
6066       for(module = mainModule.application.allModules.first; module; module = module.next)
6067       {
6068          if(ModuleVisibility(mainModule, module))
6069          {
6070             nameSpace = FindNameSpace(module.publicNameSpace, string);
6071             if(nameSpace) ListNameSpace(nameSpace, 0, true);
6072          }
6073       }
6074    }
6075
6076    bool ListEnums(NameSpace nameSpace, Type dest)
6077    {
6078       BTNamedLink link;
6079       bool result = false;
6080
6081       for(link = (BTNamedLink)nameSpace.classes.first; link; link = (BTNamedLink)((BTNode)link).next)
6082       {
6083          Class _class = link.data;
6084          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)) &&
6085             dest.kind != pointerType && dest.kind != ellipsisType)
6086          {
6087             OldList conversions { };
6088             Type type { };
6089             type.kind = classType;
6090             type._class = FindClass(_class.name);
6091             if(MatchTypes(type, dest, &conversions, null, null, true, false, false, false, true))
6092             {
6093                ListEnumValues(_class);
6094                result = true;
6095             }
6096             conversions.Free(null);
6097             delete type;
6098          }
6099       }
6100       for(nameSpace = (NameSpace *)nameSpace.nameSpaces.first; nameSpace != null; nameSpace = (NameSpace *)((BTNode)nameSpace).next)
6101       {
6102          result |= ListEnums(nameSpace, dest);
6103       }
6104       return result;
6105    }
6106
6107    NameSpace * FindNameSpace(NameSpace nameSpace, const char * name)
6108    {
6109       int start = 0, c;
6110       char ch;
6111       for(c = 0; (ch = name[c]); c++)
6112       {
6113          if(ch == '.' || (ch == ':' && name[c+1] == ':'))
6114          {
6115             NameSpace * newSpace;
6116             char * spaceName = new char[c - start + 1];
6117             memcpy(spaceName, name + start, c - start);
6118             spaceName[c-start] = '\0';
6119             newSpace = (NameSpace *)nameSpace.nameSpaces.FindString(spaceName);
6120             delete spaceName;
6121             if(!newSpace)
6122                return null;
6123             nameSpace = newSpace;
6124             if(ch == ':') c++;
6125             start = c+1;
6126          }
6127       }
6128       if(c - start)
6129       {
6130          // name + start;
6131       }
6132       return (NameSpace *)nameSpace;
6133    }
6134
6135    void ListSymbols(Expression exp, bool enumOnly, const char * string, Identifier realIdentifier)
6136    {
6137       bool listedEnums = false;
6138       Type destType = (exp && exp.destType && !exp.destType.truth) ? exp.destType : null;
6139       bool listClasses = true;
6140
6141       if(exp && (exp.type == identifierExp || exp.type == memberExp))
6142       {
6143          // TOCHECK: This memberExp check wasn't here... Some stuff isn't quite done
6144          Identifier id = (exp.type == memberExp) ? exp.member.member : exp.identifier;
6145          char * colons = id ? RSearchString(id.string, "::", strlen(id.string), true, false) : null;
6146
6147          if(exp.type == identifierExp)
6148             id = realIdentifier;
6149
6150          if(id && id._class && !id._class.name)
6151          {
6152             listClasses = false;
6153             SetThisClass(null);
6154          }
6155          else if(id && id._class && id._class.name)
6156          {
6157             if(id.classSym)
6158             {
6159                Class _class = id.classSym.registered;
6160                if(_class && _class.type == enumClass)
6161                {
6162                   ListEnumValues(_class);
6163                }
6164                else
6165                   ListClassMembers(id.classSym.registered, true);
6166                return;
6167             }
6168             return;
6169          }
6170          else if(id && colons)
6171          {
6172             ListNameSpaceByString(this.privateModule, id.string);
6173             return;
6174          }
6175       }
6176
6177       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 ||
6178          (destType.kind == pointerType && destType.type.kind != voidType)))
6179       //if(this.privateModule && destType && (destType.kind != pointerType || destType.type.kind != voidType) && destType.kind != ellipsisType)
6180       {
6181          listedEnums = ListEnumsModule(this.privateModule, destType);
6182       }
6183
6184       if(destType && destType.kind == classType && destType._class.registered && destType._class.registered.type == enumClass)
6185       {
6186          ListEnumValues(destType._class.registered);
6187
6188          if(insideClass)
6189             ListClassPropertiesAndVirtual(insideClass, null);
6190
6191          listedEnums = true;
6192       }
6193       else if(destType && destType.kind == enumType)
6194       {
6195          NamedLink64 value;
6196
6197          for(value = destType.members.first; value; value = value.next)
6198          {
6199             DataRow row = membersList.AddString(value.name);
6200             row.icon = icons[typeEnumValue];
6201          }
6202
6203          if(insideClass)
6204             ListClassPropertiesAndVirtual(insideClass, null);
6205
6206          listedEnums = true;
6207       }
6208       else if(insideClass && !enumOnly)
6209       {
6210          ListClassPropertiesAndVirtual(insideClass, string);
6211       }
6212
6213       if(listedEnums && string && string[0])
6214       {
6215          DataRow row = membersList.FindSubString(string);
6216          if(!row)
6217             listedEnums = false;
6218       }
6219
6220       if(!insideClass && exp && exp.destType && exp.destType.kind == functionType && GetThisClass())
6221       {
6222          ListClassMembersMatch(GetThisClass(), exp.destType);
6223       }
6224       else if(!insideClass && !enumOnly && !listedEnums)
6225       {
6226          Context ctx;
6227          Symbol symbol = null;
6228          {
6229             if(GetThisClass())
6230             {
6231                ListClassMembers(GetThisClass(), false);
6232             }
6233
6234             for(ctx = listClasses ? GetCurrentContext() : GetTopContext(); ctx != GetTopContext().parent && !symbol; ctx = ctx.parent)
6235             {
6236                for(symbol = (Symbol)ctx.symbols.first; symbol; symbol = (Symbol)((BTNode)symbol).next)
6237                {
6238                   // Don't list enum values?
6239                   //if(symbol.type.kind != TypeEnum)
6240                   DataRow row = membersList.FindString(symbol.string);
6241                   if(!row)
6242                   {
6243                      if(GetBuildingEcereComModule() && symbol.type && symbol.type.kind == functionType && eSystem_FindFunction(privateModule, symbol.string))
6244                         continue;
6245                      row = membersList.AddString(symbol.string);
6246                      if(symbol.type && symbol.type.kind == functionType)
6247                         row.icon = icons[typeMethod];
6248                      else if(symbol.type && symbol.type.kind == enumType)
6249                      {
6250                         row.icon = icons[typeEnumValue];
6251                      }
6252                      else
6253                      {
6254                         BitmapResource bitmap = null;
6255                         if(symbol.type && symbol.type.kind == classType && symbol.type._class && symbol.type._class)
6256                         {
6257                            char * bitmapName = (char *)(intptr)eClass_GetProperty(symbol.type._class.registered, "icon");
6258                            if(bitmapName)
6259                            {
6260                               bitmap = { bitmapName };
6261                               membersList.AddResource(bitmap);
6262                            }
6263                         }
6264                         row.icon = bitmap ? bitmap : icons[typeData];
6265                      }
6266                   }
6267                }
6268
6269                if(listClasses)
6270                {
6271                   for(symbol = (Symbol)ctx.types.first; symbol; symbol = (Symbol)((BTNode)symbol).next)
6272                   {
6273                      DataRow row = membersList.FindString(symbol.string);
6274                      if(!row)
6275                      {
6276                         row = membersList.AddString(symbol.string);
6277                         if(symbol.type.kind == functionType)
6278                            row.icon = icons[typeMethod];
6279                         else if(symbol.type.kind == classType && (!symbol.type._class.registered || (symbol.type._class.registered.type != unitClass && symbol.type._class.registered.type != enumClass)))
6280                         {
6281                            row.icon = icons[typeClass];
6282                         }
6283                         else
6284                         {
6285                            row.icon = icons[typeDataType];
6286                         }
6287                      }
6288                   }
6289                }
6290             }
6291
6292             ListModule(this.privateModule, 1, listClasses);
6293             // TODO: Implement this with name space
6294             /*
6295             {
6296                GlobalData data;
6297                for(data = globalData.first; data; data = data.next)
6298                {
6299                   DataRow row = membersList.FindString(data.name);
6300                   if(!data.dataType)
6301                      data.dataType = ProcessTypeString(data.dataTypeString, false);
6302                   if(!row)
6303                   {
6304                      row = membersList.AddString(data.name);
6305
6306                      if(data.dataType && data.dataType.kind == TypeEnum)
6307                      {
6308                         row.icon = icons[typeEnumValue];
6309                      }
6310                      else
6311                      {
6312                         BitmapResource bitmap = null;
6313                         if(data.dataType && data.dataType.kind == classType && data.dataType._class && data.dataType._class)
6314                         {
6315                            char * bitmapName = (char *)eClass_GetProperty(data.dataType._class.registered, "icon");
6316                            if(bitmapName)
6317                            {
6318                               bitmap = { bitmapName };
6319                               membersList.AddResource(bitmap);
6320                            }
6321                         }
6322                         row.icon = bitmap ? bitmap : icons[typeData];
6323                      }
6324                   }
6325                }
6326             }
6327             */
6328
6329             {
6330                DataRow row = membersList.AddString("Min");
6331                row.icon = icons[typeMethod];
6332
6333                row = membersList.AddString("Max");
6334                row.icon = icons[typeMethod];
6335
6336                row = membersList.AddString("Abs");
6337                row.icon = icons[typeMethod];
6338
6339                row = membersList.AddString("Sgn");
6340                row.icon = icons[typeMethod];
6341             }
6342          }
6343       }
6344    }
6345
6346    void OverrideVirtualFunction(ClassFunction function, Method method, Class _class, bool isInstance, bool extraIndent)
6347    {
6348       EditBoxStream f { editBox = editBox };
6349       int position = 0;
6350       EditLine l1, l2;
6351       int x1,y1,x2,y2;
6352
6353       updatingCode = true;
6354
6355       if(!method.dataType)
6356          method.dataType = ProcessTypeString(method.dataTypeString, false);
6357
6358       DeleteJunkBefore(f, function.loc.start.pos, &position);
6359       f.DeleteBytes(function.loc.end.pos - function.loc.start.pos - 1);
6360
6361       // ADDING METHOD HERE
6362       {
6363          Type dataType = method.dataType;
6364          Type returnType = dataType.returnType;
6365          Type param;
6366          // Class moduleClass = eSystem_FindClass(this.privateModule, "Module");
6367
6368          if(insideDef.prev)
6369              f.Printf("\n\n");
6370          else
6371             f.Printf("\n");
6372          if(extraIndent) f.Printf("   ");
6373          f.Printf("   ");
6374          OutputType(f, returnType, false);
6375
6376          f.Printf(" ");
6377
6378          if(dataType.thisClass && !dataType.classObjectType && (!isInstance || !insideClass || !eClass_IsDerived(insideClass, dataType.thisClass.registered)))
6379          {
6380             if(dataType.thisClass.shortName)
6381                f.Printf(dataType.thisClass.shortName);
6382             else
6383                f.Printf(dataType.thisClass.string);
6384             f.Printf("::");
6385          }
6386          f.Printf(method.name);
6387          f.Printf("(");
6388          for(param = dataType.params.first; param; param = param.next)
6389          {
6390             // Decided not to write void...
6391             if(param.kind != voidType)
6392             {
6393                OutputType(f, param, true);
6394                if(param.next)
6395                   f.Printf(", ");
6396             }
6397          }
6398          f.Printf(")\n");
6399          if(extraIndent) f.Printf("   ");
6400          f.Printf("   %c\n", OpenBracket);
6401
6402          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6403
6404          f.Printf("\n");
6405
6406          if(!_class ||
6407             (
6408                (isInstance ? _class : _class.base)._vTbl[method.vid] == null /*moduleClass._vTbl[__ecereVMethodID___ecereNameSpace__ecere__com__Module_OnLoad]*/ ||
6409                (isInstance ? _class : _class.base)._vTbl[method.vid] == DummyMethod)) // Temp Check for DefaultFunction
6410          {
6411             if(returnType && returnType.kind == classType && !strcmp(returnType._class.string, "bool"))
6412             {
6413                if(extraIndent) f.Printf("   ");
6414                f.Printf("      return true;\n");
6415             }
6416             else if(returnType && returnType.kind != voidType)
6417             {
6418                if(extraIndent) f.Printf("   ");
6419                f.Printf("      return 0;\n");
6420             }
6421          }
6422          else
6423          {
6424             if(extraIndent) f.Printf("   ");
6425             f.Printf("      ");
6426             if(returnType.kind != voidType)
6427                f.Printf("return ");
6428             f.Printf("%s::%s(", isInstance ? _class.name : _class.base.name, method.name);
6429             for(param = dataType.params.first; param; param = param.next)
6430             {
6431                if(param.prev) f.Printf(", ");
6432                if(param.kind != voidType)
6433                   f.Printf(param.name);
6434             }
6435             f.Printf(");\n");
6436          }
6437       }
6438
6439       if(extraIndent) f.Printf("   ");
6440       f.Printf("   %c", CloseBracket);
6441       // f.Printf("\n");
6442
6443       delete f;
6444
6445       if(extraIndent) { x1 += 3; x2 += 3; }
6446       editBox.SetSelPos(l1, y1, x1 + 6, l2, y2, x2 + 6);
6447
6448       this.updatingCode = false;
6449
6450    }
6451
6452    // Return false if we overrided a function and don't want to run params listing
6453    bool InvokeAutoComplete(bool enumOnly, int pointer, bool caretMove)
6454    {
6455       bool didOverride = false;
6456       EditLine line = editBox.line;
6457       int lineNum, charPos;
6458       Expression exp = null;
6459       EditLine l1, l2;
6460       int x1,y1, x2,y2;
6461       //Identifier id = null;
6462       Expression memberExp = null;
6463       Identifier realIdentifier = null;
6464
6465       if(!parsing) return true;
6466       if(!privateModule) return !didOverride;
6467
6468       insideFunction = null;
6469
6470       charPos = editBox.charPos + 1;
6471       if(!membersListShown)
6472       {
6473          EnsureUpToDate();
6474       }
6475
6476       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6477       {
6478          EditBoxStream f { editBox = editBox };
6479
6480          updatingCode = true;
6481          editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6482          for(;;)
6483          {
6484             char ch;
6485             if(!f.Seek(-1, current))
6486                break;
6487             f.Getc(&ch);
6488             if(!isspace(ch)) break;
6489             f.Seek(-1, current);
6490          }
6491          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6492
6493          lineNum = editBox.lineNumber + 1;
6494          charPos = editBox.charPos + 1;
6495          delete f;
6496          updatingCode = false;
6497       }
6498
6499       if(!membersListShown)
6500       {
6501          memberExp = FindExpTree(ast, lineNum, charPos);
6502          if(memberExp && (memberExp.type == TypeKind::memberExp || memberExp.type == pointerExp) && !memberExp.addedThis)
6503          {
6504          }
6505          else if(!pointer)
6506          {
6507             editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6508             {
6509                EditBoxStream f { editBox = editBox };
6510                char ch = 0;
6511
6512                updatingCode = true;
6513
6514                editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6515
6516                f.Getc(&ch);
6517                if(ch == '}' || ch == ',' || ch == ')')
6518                {
6519                   f.Seek(-1, current);
6520                   ch = ' ';
6521                }
6522                if(isspace(ch))
6523                {
6524                   for(;;)
6525                   {
6526                      char ch;
6527                      if(!f.Seek(-1, current))
6528                         break;
6529                      f.Getc(&ch);
6530                      if(!isspace(ch)) break;
6531                      f.Seek(-1, current);
6532                   }
6533                }
6534                else
6535                   f.Seek(-1, current);
6536
6537                editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6538
6539                lineNum = editBox.lineNumber + 1;
6540                charPos = editBox.charPos + 1;
6541                delete f;
6542                updatingCode = false;
6543             }
6544
6545             realIdentifier = FindCtxTree(ast, lineNum, charPos);
6546             exp = ctxInsideExp;
6547          }
6548       }
6549
6550       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6551       lineNum = editBox.lineNumber + 1;
6552       charPos = editBox.charPos/* + 1*/;
6553
6554       {
6555          int rowCount;
6556          char tempString[1024];
6557          char * string = null;
6558          CodePosition idStart { };
6559          CodePosition idEnd { };
6560
6561          if(membersListShown)
6562          {
6563             const char * buffer = membersLine.text;
6564             int c;
6565             bool firstChar = true;
6566             int len = 0;
6567             string = tempString;
6568
6569             for(c = membersLoc.start.charPos; c<membersLoc.end.charPos; c++)
6570             {
6571                bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
6572                if(!isSpace) firstChar = false;
6573                if(!firstChar)
6574                   string[len++] = buffer[c];
6575             }
6576             string[len] = 0;
6577          }
6578          else //if(realIdentifier)//if(id)
6579          {
6580             /*
6581             char * buffer = id.string;
6582             int c;
6583             bool firstChar = true;
6584             int len = 0;
6585             string = tempString;
6586             for(c = 0; c<= charPos - id.loc.start.charPos; c++)
6587             {
6588                bool isSpace = (buffer[c] == ' ' || buffer[c] == '\t');
6589                if(!isSpace) firstChar = false;
6590                if(!firstChar)
6591                   string[len++] = buffer[c];
6592             }
6593             string[len] = 0;
6594             */
6595             int x = 0, y;
6596             int len = 0;
6597             EditLine editLine = editBox.line;
6598             bool firstChar = true;
6599             bool done = false;
6600
6601             string = tempString;
6602             for(y = lineNum-1; y >= 0; y--)
6603             {
6604                const char * buffer = editLine.text;
6605                int lineCount = editLine.count;
6606                for(x = (y == lineNum-1) ? (Min(charPos, lineCount) - 1 ): lineCount-1; x >= 0; x--)
6607                {
6608                   bool isSpace = (buffer[x] == ' ' || buffer[x] == '\t');
6609                   if(!isSpace)
6610                   {
6611                      if(firstChar)
6612                      {
6613                         idEnd.charPos = x + 2;
6614                         idEnd.line = y + 1;
6615                      }
6616                      firstChar = false;
6617                   }
6618                   // TESTING THIS CODE HERE FOR NOT CONSIDERING bool when doing ctrl-space past it
6619                   else if(firstChar)
6620                   {
6621                      idEnd.charPos = x + 2;
6622                      idEnd.line = y + 1;
6623                      done = true;
6624                      break;
6625                   }
6626                   if(!firstChar)
6627                   {
6628                      if(!isalnum(buffer[x]) && buffer[x] != '_')
6629                      {
6630                         x++;
6631                         done = true;
6632                         break;
6633                      }
6634                      memmove(string+1, string, len++);
6635                      string[0] = buffer[x];
6636                   }
6637                }
6638
6639                //if(done || firstChar)
6640                if(done || !firstChar)
6641                   break;
6642                editLine = editLine.prev;
6643             }
6644             string[len] = 0;
6645             if(!strcmp(string, "case"))
6646             {
6647                idEnd.charPos += 4;
6648                x+=4;
6649                string[0] = '\0';
6650             }
6651             else if(!strcmp(string, "return"))
6652             {
6653                idEnd.charPos += 6;
6654                x+=6;
6655                string[0] = '\0';
6656             }
6657             else if(!strcmp(string, "delete"))
6658             {
6659                idEnd.charPos += 6;
6660                x+=6;
6661                string[0] = '\0';
6662             }
6663             else if(!strcmp(string, "new"))
6664             {
6665                idEnd.charPos += 3;
6666                x+=3;
6667                string[0] = '\0';
6668             }
6669             else if(!strcmp(string, "renew"))
6670             {
6671                idEnd.charPos +=5;
6672                x+=5;
6673                string[0] = '\0';
6674             }
6675             if(x < 0) x = 0;
6676
6677             idStart.charPos = x + 1;
6678             idStart.line = y + 1;
6679          }
6680
6681          if(!membersListShown)
6682          {
6683             membersList.Clear();
6684             if(memberExp && (memberExp.type == ExpressionType::memberExp || memberExp.type == pointerExp) && !memberExp.addedThis)
6685             {
6686                Type type = memberExp.member.exp.expType;
6687                if(pointer == 2 && type)
6688                {
6689                   if(type.kind == pointerType || type.kind == arrayType)
6690                      type = type.type;
6691                   /*else
6692                      type = null;*/
6693                }
6694                ListMembers(type);
6695             }
6696             else if(!pointer)
6697             {
6698                ListSymbols(exp, enumOnly, string, realIdentifier);
6699             }
6700             membersList.Sort(null, 1);
6701          }
6702
6703          if(insideFunction)
6704          {
6705             // Virtual function override
6706             Identifier id = GetDeclId(insideFunction.declarator);
6707             char * string = id ? id.string : null;
6708
6709             Method method = eClass_FindMethod(GetThisClass(), string, this.privateModule);
6710             if(method)
6711             {
6712                if(method.type != virtualMethod || (!insideInstance && method._class == GetThisClass()))
6713                   insideFunction = null;
6714                else
6715                {
6716                   OverrideVirtualFunction(insideFunction, method, GetThisClass(), insideInstance, insideInstance && insideClass);
6717                   didOverride = true;
6718                }
6719             }
6720          }
6721          if(!didOverride) //insideFunction)
6722          {
6723             rowCount = membersList.rowCount;
6724             if(rowCount)
6725             {
6726                DataRow row = string ? membersList.FindSubString(string) : null;
6727                if(row && !membersList.FindSubStringAfter(row, string) && !caretMove)
6728                {
6729                   const char * newString = row.string;
6730                   if(!membersListShown)
6731                   {
6732                      membersLoc.start.line = idStart.line-1;
6733                      membersLoc.start.charPos = idStart.charPos-1;
6734                      //membersLoc.end = membersLoc.start;
6735                       membersLoc.end.charPos = idEnd.charPos-1;
6736                       membersLoc.end.line = idEnd.line-1;
6737                      //membersLoc.end.charPos = idStart.charPos + strlen(string)-1; //end.charPos-1;
6738                      //membersLoc.end.charPos = idStart.charPos + strlen(string)-1; //end.charPos-1;
6739                      membersLine = line;
6740                   }
6741                   else
6742                   {
6743                      membersList.Destroy(0);
6744                      membersListShown = false;
6745                   }
6746
6747                   editBox.GoToPosition(membersLine, membersLoc.start.line, membersLoc.start.charPos);
6748                   editBox.Delete(
6749                      line, membersLoc.start.line, membersLoc.start.charPos,
6750                      line, membersLoc.end.line, membersLoc.end.charPos);
6751                   editBox.PutS(newString);
6752                }
6753                else
6754                {
6755                   if(!row)
6756                   {
6757                      row = membersList.FindSubStringi(string);
6758                      if(row)
6759                         membersList.currentRow = row;
6760                      membersList.currentRow.selected = false;
6761                   }
6762                   else
6763                      membersList.currentRow = row;
6764
6765                   if(!membersListShown)
6766                   {
6767                      Point caret;
6768
6769                      // TESTING THESE ADDITIONS TO THE IF SO THAT CARET ISNT MOVED IF NOT ON TOP OF A WORD
6770                      if(string && string[0] && lineNum == idStart.line && charPos >= idStart.charPos-1 && charPos <= idEnd.charPos-1)
6771                         editBox.SetSelPos(l1, y1, idStart.charPos-1, l2, y2, idStart.charPos-1);
6772                      editBox.GetCaretPosition(caret);
6773                      editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6774
6775                      membersList.master = this;
6776
6777                      caret.y += editBox.GetCaretSize();
6778                      caret.x -= 20;
6779                      membersList.Create();
6780
6781                      {
6782                         int x = caret.x + editBox.absPosition.x - app.desktop.absPosition.x - editBox.scroll.x;
6783                         int y = caret.y + editBox.absPosition.y - app.desktop.absPosition.y - editBox.scroll.y;
6784                         Window parent = membersList.parent;
6785
6786                         if(!paramsAbove && (paramsShown || y + membersList.size.h > parent.clientSize.h))
6787                         {
6788                            y -= editBox.GetCaretSize() + membersList.size.h;
6789                            membersAbove = true;
6790                         }
6791                         else
6792                            membersAbove = false;
6793
6794                         membersList.position = { x, y };
6795                      }
6796
6797                      membersLine = l1;
6798                      membersLoc.start.line = lineNum - 1;
6799
6800                      if(string && string[0])
6801                      {
6802                         membersLoc.start.charPos = idStart.charPos-1;
6803                         membersLoc.end = membersLoc.start;
6804                         //membersLoc.end.charPos = id.loc.end.charPos-1;
6805                         membersLoc.end.charPos = idStart.charPos + strlen(string)-1; //end.charPos-1;
6806                      }
6807                      else
6808                      {
6809                         membersLoc.start.charPos = charPos;
6810                         membersLoc.end = membersLoc.start;
6811                         membersLoc.end.charPos = charPos;
6812                      }
6813                      membersListShown = true;
6814
6815                      // Hack to keep caret shown
6816                      editBox.GetCaretPosition(caret);
6817                      editBox.SetCaret(caret.x, caret.y, editBox.GetCaretSize());
6818                   }
6819                   if(row)
6820                      membersList.SetScrollPosition(0, row.index * membersList.rowHeight);
6821                }
6822             }
6823          }
6824       }
6825
6826       SetCurrentContext(globalContext);
6827       SetThisClass(null);
6828
6829       return !didOverride;
6830    }
6831
6832    void InvokeParameters(bool exact, bool reposition, bool caretMove)
6833    {
6834       int lineNum, charPos;
6835       EditLine l1, l2;
6836       int x1,y1, x2,y2;
6837
6838       if(!parsing) return;
6839
6840       charPos = editBox.charPos + 1;
6841       EnsureUpToDate();
6842
6843       editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6844       {
6845          EditBoxStream f { editBox = editBox };
6846          char ch;
6847
6848          updatingCode = true;
6849          editBox.SetSelPos(l1, y1, x1, l2, y2, x2);
6850
6851          f.Getc(&ch);
6852          if(ch == '}' || ch == ',' || ch == ')')
6853          {
6854             f.Seek(-1, current);
6855             ch = ' ';
6856          }
6857          if(isspace(ch))
6858          {
6859             for(;;)
6860             {
6861                char ch;
6862                if(!f.Seek(-1, current))
6863                   break;
6864                f.Getc(&ch);
6865                if(!isspace(ch)) break;
6866                f.Seek(-1, current);
6867             }
6868          }
6869          else
6870             f.Seek(-1, current);
6871
6872          editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6873
6874          lineNum = editBox.lineNumber + 1;
6875          charPos = editBox.charPos + 1;
6876          delete f;
6877          updatingCode = false;
6878       }
6879
6880       charPos = Min(charPos, l1.count + 1);
6881       if(!caretMove)
6882          FindParamsTree(ast, lineNum, charPos);
6883
6884       // Not sure about this == ExpCall... paramsInsideExp doesn't seem to necessarily be a ExpCall
6885       if(exact && ((::functionType && paramsInsideExp.type == callExp && paramsInsideExp.call.exp.loc.end.charPos != charPos-1) /*|| instanceType*/))
6886       {
6887          ::functionType = null;
6888          ::instanceType = null;
6889       }
6890
6891       //if((::functionType || ::instanceType) && (!paramsShown || insideExp != functionExp || ::paramsID != this.paramsID))
6892       if((::functionType || ::instanceType) && (!paramsShown || true /*paramsInsideExp.destType != functionExp.destType */|| ::paramsID != this.paramsID))
6893       {
6894
6895          int x, y;
6896          Window parent = paramsList.parent;
6897
6898          if(this.functionType != ::functionType || this.instanceType != ::instanceType)
6899             reposition = false;
6900
6901          if(!this.paramsShown || reposition || paramsInsideExp != functionExp || ::instanceType) // Added instanceType here, otherwise instance popups never reposition...
6902                                                                                                           // ( Dummy exp: always ends up with same memory)
6903          {
6904             editBox.GetSelPos(&l1, &y1, &x1, &l2, &y2, &x2, false);
6905             editBox.GetCaretPosition(paramsPosition);
6906             this.paramsPosition.y += editBox.GetCaretSize();
6907          }
6908
6909          FreeType(this.functionType);
6910          FreeType(this.instanceType);
6911
6912          this.functionType = ::functionType;
6913          this.instanceType = ::instanceType;
6914
6915          if(this.functionType) this.functionType.refCount++;
6916          if(this.instanceType) this.instanceType.refCount++;
6917
6918          this.paramsID = ::paramsID;
6919          functionExp = paramsInsideExp;
6920
6921          paramsList.master = this;
6922
6923          paramsList.Create();
6924
6925          x = paramsPosition.x + editBox.absPosition.x - app.desktop.absPosition.x - editBox.scroll.x;
6926          y = paramsPosition.y + editBox.absPosition.y - app.desktop.absPosition.y - editBox.scroll.y;
6927
6928          if(!this.membersAbove && ( this.membersListShown || y + paramsList.size.h > parent.clientSize.h) )
6929          {
6930             y -= editBox.GetCaretSize() + paramsList.clientSize.h;
6931             paramsAbove = true;
6932          }
6933          else
6934             paramsAbove = false;
6935          if(x + paramsList.size.w > parent.clientSize.w)
6936          {
6937             x = parent.clientSize.w - paramsList.size.w;
6938             if(x < 0) x = 0;
6939          }
6940
6941          paramsList.position = { x, y };
6942
6943          // Hack to keep caret shown
6944          {
6945             Point caret;
6946             editBox.GetCaretPosition(caret);
6947             editBox.SetCaret(caret.x, caret.y, editBox.GetCaretSize());
6948          }
6949
6950          this.paramsShown = true;
6951       }
6952       else if((!::functionType && !::instanceType) || reposition)
6953       {
6954          paramsList.Destroy(0);
6955          paramsShown = false;
6956
6957          FreeType(this.functionType);
6958          FreeType(this.instanceType);
6959          this.functionType = null;
6960          this.instanceType = null;
6961          this.paramsID = -1;
6962       }
6963
6964       SetCurrentContext(globalContext);
6965       SetThisClass(null);
6966    }
6967
6968    bool ViewDesigner()
6969    {
6970       if(designer)
6971       {
6972          designer.visible = true;
6973          designer.Activate();
6974       }
6975       return true;
6976    }
6977 };
6978
6979 CodeEditor NewCodeEditor(Window parent, WindowState state, bool modified)
6980 {
6981    CodeEditor document { state = state, parent = parent, modifiedDocument = modified };
6982    document.Create();
6983    return document;
6984 }
6985
6986 static int nofdigits(int v)
6987 {
6988    if(v == MININT) return 10 + 1;
6989    if(v < 0) return nofdigits(-v) + 1;
6990    if(v >= 10000)
6991    {
6992       if(v >= 10000000)
6993       {
6994          if(v >= 100000000)
6995          {
6996             if(v >= 1000000000)
6997                return 10;
6998             return 9;
6999          }
7000          return 8;
7001       }
7002       if(v >= 100000)
7003       {
7004          if(v >= 1000000)
7005             return 7;
7006          return 6;
7007       }
7008       return 5;
7009    }
7010    if(v >= 100)
7011    {
7012       if(v >= 1000)
7013          return 4;
7014       return 3;
7015    }
7016    if(v >= 10)
7017       return 2;
7018    return 1;
7019 }