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