ide: tweak compiler config support for specifying output file extensions.
[sdk] / ide / src / project / ProjectView.ec
1 import "ide"
2
3 import "FileSystemIterator"
4
5 class ImportFolderFSI : NormalFileSystemIterator
6 {
7    ProjectView projectView;
8    Array<ProjectNode> stack { };
9
10    bool OnFolder(const char * folderPath)
11    {
12       char name[MAX_LOCATION];
13       ProjectNode parentNode = stack.lastIterator.data;
14       ProjectNode folder;
15       GetLastDirectory(folderPath, name);
16       folder = parentNode.FindSpecial(name, false, true, true);
17       if(!folder)
18          folder = projectView.NewFolder(parentNode, name, false);
19       stack.Add(folder);
20       return true;
21    }
22
23    void OutFolder(const char * folderPath, bool isRoot)
24    {
25       stack.lastIterator.Remove(); //stack.Remove();
26    }
27
28    bool OnFile(const char * filePath)
29    {
30       ProjectNode parentNode = stack.lastIterator.data;
31       if(!projectView.AddFile(parentNode, filePath, parentNode.isInResources, false))
32       {
33          char * msg = PrintString($"This file can't be imported due to a conflict.\n\n", filePath,
34                "\n\nThis occurs with identical file paths and with conflicting file names.\n");
35          MessageBox { master = ide, type = ok, text = "Import File Conflict", contents = msg }.Modal();
36          delete msg;
37       }
38       return true;
39    }
40 }
41
42 static Array<FileFilter> fileFilters
43 { [
44    { $"eC/C/C++ Files (*.ec, *.eh, *.c, *.cpp, *.cc, *.cxx, *.h, *.hpp, *.hh, *.hxx)", "ec, eh, c, cpp, cc, cxx, h, hpp, hh, hxx" },
45    { $"eC/C/C++ Source Files (*.ec, *.c, *.cpp, *.cc, *.cxx)", "ec, eh, c, cpp, cc, cxx" },
46    { $"Header Files for eC/C/C++ (*.eh, *.h, *.hpp, *.hh, *.hxx)", "eh, h, hpp, hh, hxx" },
47    { $"All files", null }
48 ] };
49
50 static Array<FileFilter> resourceFilters
51 { [
52    { $"Image Files (*.jpg, *.jpeg, *.bmp, *.pcx, *.png, *.gif)", "jpg, jpeg, bmp, pcx, png, gif" },
53    { $"3D Studio Model Files (*.3ds)", "3ds" },
54    { $"Translations (*.mo)", "mo" },
55    { $"All files", null }
56 ] };
57
58 static Array<FileFilter> projectFilters
59 { [
60    { $"Project Files (*.epj)", ProjectExtension },
61    { $"Workspace Files (*.ews)", WorkspaceExtension }
62 ] };
63
64 static Array<FileType> projectTypes
65 { [
66    { $"Ecere IDE Project", ProjectExtension },
67    { $"Ecere IDE Workspace", WorkspaceExtension }
68 ] };
69
70 static const char * iconNames[] =
71 {
72    "<:ecere>mimeTypes/file.png",                   /*genFile*/
73    "<:ecere>mimeTypes/textEcereWorkspace.png",     /*ewsFile*/
74    "<:ecere>mimeTypes/textEcereProject.png",       /*epjFile*/
75    "<:ecere>places/folder.png",                    /*folder*/
76    "<:ecere>status/folderOpen.png",                /*openFolder*/
77    "<:ecere>mimeTypes/textEcereSource.png",        /*ecFile*/
78    "<:ecere>mimeTypes/textEcereHeader.png",        /*ehFile*/
79    "<:ecere>mimeTypes/textCSource.png",            /*sFile*/ // TODO: change sFile icon to differentiate from cFile icon
80    "<:ecere>mimeTypes/textCSource.png",            /*cFile*/
81    "<:ecere>mimeTypes/textCHeader.png",            /*hFile*/
82    "<:ecere>mimeTypes/textC++Source.png",          /*cppFile*/
83    "<:ecere>mimeTypes/textC++Header.png",          /*hppFile*/
84    "<:ecere>mimeTypes/text.png",                   /*textFile*/
85    "<:ecere>mimeTypes/textHyperTextMarkup.png",    /*webFile*/
86    "<:ecere>mimeTypes/image.png",                  /*pictureFile*/
87    "<:ecere>status/audioVolumeHigh.png",           /*soundFile*/
88    "<:ecere>mimeTypes/package.png",                /*archiveFile*/
89    "<:ecere>mimeTypes/packageSoftware.png",        /*packageFile*/
90    "<:ecere>mimeTypes/packageOpticalDisc.png",     /*opticalMediaImageFile*/
91    "<:ecere>mimeTypes/file.png",                   /*mFile*/ //TODO: create icon for .m file
92    "<:ecere>mimeTypes/file.png"                    /*mmFile*/ //TODO: create icon for .mm file
93 };
94
95 enum PrepareMakefileMethod { normal, force, forceExists };
96
97 enum CleanType { clean, realClean, cleanTarget };
98 enum BuildType { build, rebuild, relink, run, start, restart, clean, install };
99 enum BuildState
100 {
101    none, buildingMainProject, buildingSecondaryProject, compilingFile;
102
103    property bool { get { return this != none; } }
104    //property bool actualBuild { get { return this == buildingMainProject || this == buildingSecondaryProject;  } }
105 };
106
107 class ProjectView : Window
108 {
109    isDocument = true;
110    //hasMinimize = true;
111    hasClose = true;
112    borderStyle = sizable;
113    hasHorzScroll = true;
114    hasVertScroll = true;
115    background = white;
116    size = { 300 };
117    anchor = Anchor { left = 0, top = 0, bottom = 0 };
118    menu = Menu { };
119
120    //hasMinimize = true;
121    saveDialog = projectFileDialog;
122
123    DataRow resourceRow;
124    BuildState buildInProgress;
125    BitmapResource icons[NodeIcons];
126    Project project;
127    Workspace workspace;
128    property Workspace workspace
129    {
130       set
131       {
132          if(workspace)
133          {
134             for(prj : workspace.projects)
135             {
136                DeleteNode(prj.topNode);
137             }
138             workspace.projects.Free();
139             ide.debugger.CleanUp();
140          }
141          workspace = value;
142          if(workspace)
143          {
144             fileDialog.currentDirectory = workspace.workspaceDir;
145             resourceFileDialog.currentDirectory = workspace.workspaceDir;
146             for(prj : workspace.projects)
147                AddNode(prj.topNode, null);
148             ide.statusBar.text = $"Generating Makefile & Dependencies...";
149             app.UpdateDisplay();
150             for(prj : workspace.projects)
151                prj.ModifiedAllConfigs(true, false, false, false);
152             ide.statusBar.text = $"Initializing Debugger"; app.UpdateDisplay();
153             ide.statusBar.text = null;
154             app.UpdateDisplay();
155          }
156       }
157       get { return workspace; }
158    }
159
160    bool drawingInProjectSettingsDialog;
161    bool drawingInProjectSettingsDialogHeader;
162    ProjectSettings projectSettingsDialog;
163
164    bool stopBuild;
165    PopupMenu popupMenu;
166
167    ProjectView()
168    {
169       NodeIcons c;
170       for(c = 0; c < NodeIcons::enumSize; c++)
171       {
172          icons[c] = BitmapResource { iconNames[c], alphaBlend = true };
173          AddResource(icons[c]);
174       }
175       fileList.AddField(DataField { dataType = class(ProjectNode), freeData = false, userData = this });
176    }
177
178    ~ProjectView()
179    {
180       DebugStop();
181       ide.DestroyTemporaryProjectDir();
182       if(project)
183       {
184          workspace.Free();
185          delete workspace;
186       }
187    }
188
189    ListBox fileList
190    {
191       multiSelect = true, fullRowSelect = false, hasVertScroll = true, hasHorzScroll = true;
192       borderStyle = deep, parent = this, collapseControl = true, treeBranches = true;
193       anchor = Anchor { left = 0, right = 0, top = 0 , bottom = 0 };
194
195       background = projectViewBackground;
196       foreground = projectViewText;
197       selectionColor = selectionColor, selectionText = selectionText;
198       stippleColor = skyBlue;
199
200       bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool direct)
201       {
202          if(!active) Update(null);
203          return ListBox::OnActivate(active, previous, goOnWithActivation, direct);
204       }
205
206       bool NotifyDoubleClick(ListBox listBox, int x, int y, Modifiers mods)
207       {
208          // Prevent the double click from reactivating the project view (returns false if we opened something)
209          return !OpenSelectedNodes(mods.ctrl && mods.shift);
210       }
211
212       bool NotifyRightClick(ListBox listBox, int x, int y, Modifiers mods)
213       {
214          DataRow row = listBox.currentRow;
215          if(row)
216          {
217             bool showDebuggingMenuItems = mods.ctrl && mods.shift;
218             bool showInstallMenuItem = mods.ctrl && mods.shift;
219             ProjectNode node = (ProjectNode)(intptr)row.tag;
220 #ifdef IDE_SHOW_INSTALL_MENU_BUTTON
221             showInstallMenuItem = true;
222 #endif
223             if(node.type == NodeTypes::project || node.type == resources || node.type == file || node.type == folder)
224             {
225                bool na = buildInProgress; // N/A - buildMenuUnavailable
226                Menu pop { };
227
228                if(node.type == NodeTypes::project)
229                {
230                   MenuItem mi;
231                                                                                                                                              mi = ide.projectBuildItem;
232                   MenuItem { pop, $"Build"              , b, f7     , NotifySelect = ProjectBuild      , bitmap = mi.bitmap }.disabled = na; mi = ide.projectLinkItem;
233                   MenuItem { pop, $"Relink"             , l         , NotifySelect = ProjectLink       , bitmap = mi.bitmap }.disabled = na; mi = ide.projectRebuildItem;
234                   MenuItem { pop, $"Rebuild"            , r, shiftF7, NotifySelect = ProjectRebuild    , bitmap = mi.bitmap }.disabled = na; mi = ide.projectCleanTargetItem;
235                   MenuItem { pop, $"Clean Target"       , g         , NotifySelect = ProjectCleanTarget, bitmap = mi.bitmap }.disabled = na; mi = ide.projectCleanItem;
236                   MenuItem { pop, $"Clean"              , c         , NotifySelect = ProjectClean      , bitmap = mi.bitmap }.disabled = na; mi = ide.projectRealCleanItem;
237                   MenuItem { pop, $"Real Clean"                     , NotifySelect = ProjectRealClean  , bitmap = mi.bitmap }.disabled = na; mi = ide.projectRegenerateItem;
238                   MenuItem { pop, $"Regenerate Makefile", m         , NotifySelect = ProjectRegenerate , bitmap = mi.bitmap }.disabled = na;
239                   if(showInstallMenuItem)
240                   {
241                      mi = ide.projectInstallItem;
242                      MenuItem { pop, $"Install"            , t         , NotifySelect = ProjectInstall    , bitmap = mi.bitmap }.disabled = na;
243                   }
244                   if(showDebuggingMenuItems && node.ContainsFilesWithExtension("ec", node.project.config))
245                   {
246                      MenuDivider { pop };
247                      MenuItem { pop, $"Debug Generate Symbols", l, NotifySelect = FileDebugGenerateSymbols }.disabled = na;
248                      MenuItem { pop, $"Debug Precompile", l, NotifySelect = FileDebugPrecompile }.disabled = na;
249                      MenuItem { pop, $"Debug Compile", l, NotifySelect = FileDebugCompile }.disabled = na;
250                   }
251                   MenuDivider { pop };
252                   MenuItem { pop, $"New File...", l, Key { l, ctrl = true }, NotifySelect = ProjectNewFile };
253                   MenuItem { pop, $"New Folder...", n, Key { f, ctrl = true }, NotifySelect = ProjectNewFolder };
254                   MenuItem { pop, $"Import Folder...", i, NotifySelect = ProjectImportFolder };
255                   MenuItem { pop, $"Add Files to Project...", f, NotifySelect = ProjectAddFiles };
256                   MenuDivider { pop };
257                   MenuItem { pop, $"Add New Form...", o, NotifySelect = ProjectAddNewForm };
258                   // MenuItem { pop, "Add New Behavior Graph...", g, NotifySelect = ProjectAddNewGraph };
259                   MenuDivider { pop };
260                   if(node != ((Project)workspace.projects.first).topNode)
261                   {
262                      MenuItem { pop, $"Remove project from workspace", r, NotifySelect = ProjectRemove }.disabled = na;
263                      MenuDivider { pop };
264                   }
265                   MenuItem { pop, $"Settings...", s, Key { f7, alt = true } , NotifySelect = MenuSettings };
266                   MenuDivider { pop };
267                   MenuItem { pop, $"Browse Folder", w, NotifySelect = MenuBrowseFolder };
268                   MenuDivider { pop };
269                   MenuItem { pop, $"Save", v, Key { s, ctrl = true }, NotifySelect = ProjectSave }.disabled = !node.modified;
270                   MenuDivider { pop };
271                   MenuItem { pop, $"Properties...", p, Key { enter, alt = true }, NotifySelect = FileProperties };
272                }
273                else if(node.type == resources)
274                {
275                   MenuItem { pop, $"New File...", l, Key { l, ctrl = true }, NotifySelect = ProjectNewFile };
276                   MenuItem { pop, $"New Folder...", n, Key { f, ctrl = true }, NotifySelect = ProjectNewFolder };
277                   MenuItem { pop, $"Import Folder...", i, NotifySelect = ProjectImportFolder };
278                   MenuItem { pop, $"Add Resources to Project...", f, NotifySelect = ResourcesAddFiles };
279                   MenuItem { pop, $"Browse Folder", w, NotifySelect = MenuBrowseFolder };
280                   MenuDivider { pop };
281                   MenuItem { pop, $"Settings...", s, Key { f7, alt = true } , NotifySelect = MenuSettings };
282                   MenuItem { pop, $"Properties...", p, Key { enter, alt = true }, NotifySelect = FileProperties };
283                }
284                else if(node.type == file)
285                {
286                   MenuItem { pop, $"Open", o, NotifySelect = FileOpenFile };
287                   MenuDivider { pop };
288                   MenuItem { pop, $"Clean", l, NotifySelect = FileClean, bitmap = ide.projectCleanItem.bitmap }.disabled = na;
289                   MenuItem { pop, $"Compile", c, Key { f7, ctrl = true}, NotifySelect = FileCompile, bitmap = ide.projectBuildItem.bitmap }.disabled = na;
290                   if(showDebuggingMenuItems)
291                   {
292                      char extension[MAX_EXTENSION];
293                      GetExtension(node.name, extension);
294                      if(!strcmpi(extension, "ec"))
295                      {
296                         MenuDivider { pop };
297                         MenuItem { pop, $"Debug Precompile", l, NotifySelect = FileDebugPrecompile }.disabled = na;
298                         MenuItem { pop, $"Debug Compile", l, NotifySelect = FileDebugCompile }.disabled = na;
299                      }
300                   }
301                   MenuDivider { pop };
302                   MenuItem { pop, $"Remove", r, NotifySelect = FileRemoveFile };
303                   MenuDivider { pop };
304                   MenuItem { pop, $"Browse Folder", w, NotifySelect = MenuBrowseFolder };
305                   MenuDivider { pop };
306                   MenuItem { pop, $"Settings...", s, Key { f7, alt = true } , NotifySelect = MenuSettings };
307                   MenuItem { pop, $"Properties..", p, Key { enter, alt = true }, NotifySelect = FileProperties };
308                }
309                else if(node.type == folder)
310                {
311                   bool isInResources = node.isInResources;
312
313                   MenuItem { pop, $"New File...", l, Key { l, ctrl = true }, NotifySelect = ProjectNewFile };
314                   MenuItem { pop, $"New Folder...", n, Key { f, ctrl = true }, NotifySelect = ProjectNewFolder };
315                   MenuItem { pop, $"Import Folder...", i, NotifySelect = ProjectImportFolder };
316                   if(isInResources)
317                   {
318                      MenuItem { pop, $"Add Resources to Folder...", f, NotifySelect = ResourcesAddFiles };
319                   }
320                   else
321                   {
322                      MenuItem { pop, $"Add Files to Folder...", f, NotifySelect = ProjectAddFiles };
323                   }
324                   if(!isInResources)
325                   {
326                      MenuDivider { pop };
327                      MenuItem { pop, $"Add New Form...", o, NotifySelect = ProjectAddNewForm };
328                      // MenuItem { pop, $"Add New Behavior Graph...", g, NotifySelect = ProjectAddNewGraph };
329                   }
330                   MenuDivider { pop };
331                   MenuItem { pop, $"Clean", l, NotifySelect = FileClean, bitmap = ide.projectCleanItem.bitmap }.disabled = na;
332                   MenuItem { pop, $"Compile", c, Key { f7, ctrl = true}, NotifySelect = FileCompile, bitmap = ide.projectBuildItem.bitmap }.disabled = na;
333                   MenuDivider { pop };
334                   MenuItem { pop, $"Remove", r, NotifySelect = FileRemoveFile };
335                   MenuDivider { pop };
336                   MenuItem { pop, $"Browse Folder", w, NotifySelect = MenuBrowseFolder };
337                   MenuDivider { pop };
338                   MenuItem { pop, $"Settings...", s, Key { f7, alt = true } , NotifySelect = MenuSettings };
339                   MenuItem { pop, $"Properties...", p, Key { enter, alt = true }, NotifySelect = FileProperties };
340                }
341
342                popupMenu =
343                {
344                   master = this, menu = pop;
345                   position = {
346                      x + clientStart.x + absPosition.x - app.desktop.position.x,
347                      y + clientStart.y + absPosition.y - app.desktop.position.y };
348
349                   void NotifyDestroyed(Window window, DialogResult result)
350                   {
351                      popupMenu = null;
352                   }
353                };
354                popupMenu.Create();
355                ide.AdjustPopupBuildMenus();
356             }
357          }
358          return true;
359       }
360
361       bool NotifyKeyHit(ListBox listBox, DataRow row, Key key, unichar ch)
362       {
363          if(key == altUp || key == altDown)
364          {
365             SelectNextProject(key == altUp);
366             return false;
367          }
368          return true;
369       }
370
371       bool NotifyKeyDown(ListBox listBox, DataRow row, Key key, unichar ch)
372       {
373          if(row)
374          {
375             ProjectNode node = (ProjectNode)(intptr)row.tag;
376             switch(key)
377             {
378                case altEnter: case Key { keyPadEnter, alt = true }:
379                {
380                   NodeProperties { parent = parent, master = this,
381                      position = { position.x + 100, position.y + 100 }, node = node }.Create();
382                   return false;
383                }
384                case enter: case keyPadEnter:
385                {
386                   ProjectNode resNode;
387                   for(resNode = node.parent; resNode; resNode = resNode.parent)
388                      if(resNode.type == resources)
389                         break;
390                   if(node.type == project || (node.type == folder && !resNode))
391                   {
392                      AddFiles(false);
393                      return false;
394                   }
395                   else if(node.type == resources || node.type == folder)
396                   {
397                      AddFiles(true);
398                      return false;
399                   }
400                   break;
401                }
402                case ctrlI:
403                {
404                   if(node.type == project || node.type == folder || node.type == resources)
405                   {
406                      ImportFolder(node);
407                      return false;
408                   }
409                   break;
410                }
411                case ctrlF:
412                {
413                   if(node.type == project || node.type == folder || node.type == resources)
414                   {
415                      NewFolder(node, null, true);
416                      return false;
417                   }
418                   break;
419                }
420                case ctrlF7:
421                {
422                   if(node.type == file)
423                   {
424                      FileCompile(null, (Modifiers)key);
425                      return false;
426                   }
427                   break;
428                }
429                case Key { space, false, true }:
430                case Key { space, true, true }:
431                case Key { space, true }:
432                case space:
433                {
434                   if(node.type == NodeTypes::project)
435                   {
436                      Project prj = null;
437                      for(p : workspace.projects)
438                      {
439                         if(p.topNode == node)
440                         {
441                            prj = p;
442                            break;
443                         }
444                      }
445                      prj.RotateActiveConfig(!key.shift, key.ctrl);
446                      if(prj == project)
447                         ide.AdjustMenus();
448                      return false;
449                   }
450                   break;
451                }
452             }
453          }
454          switch(key)
455          {
456             case Key { enter, true, true }:        OpenSelectedNodes(true);   break;
457             case Key { keyPadEnter, true, true }:  OpenSelectedNodes(true);   break;
458             case enter: case keyPadEnter:          OpenSelectedNodes(false);  break;
459             case del:                              RemoveSelectedNodes();     break;
460             case escape:
461             {
462                Window activeClient = ide.activeClient;
463                if(activeClient)
464                   activeClient.Activate();
465                else
466                   ide.RepositionWindows(true);
467                break;
468             }
469          }
470          return true;
471       }
472
473       bool NotifyCollapse(ListBox listBox, DataRow row, bool collapsed)
474       {
475          ProjectNode node = (ProjectNode)(intptr)row.tag;
476          if(node.type == folder)
477             node.icon = collapsed ? folder : openFolder;
478          return true;
479       }
480    };
481
482    FileDialog importFileDialog { autoCreate = false, type = selectDir, text = $"Import Folder" };
483    FileDialog projectFileDialog
484    {
485       autoCreate = false, filters = projectFilters.array, sizeFilters = projectFilters.count * sizeof(FileFilter);
486       types = projectTypes.array, sizeTypes = projectTypes.count * sizeof(FileType);
487    };
488    FileDialog fileDialog
489    {
490       autoCreate = false, mayNotExist = true, filters = fileFilters.array, sizeFilters = fileFilters.count * sizeof(FileFilter);
491    };
492    FileDialog resourceFileDialog
493    {
494       autoCreate = false, mayNotExist = true, filters = resourceFilters.array, sizeFilters = resourceFilters.count * sizeof(FileFilter);
495    };
496
497    Menu fileMenu { menu, $"File", f };
498    MenuItem { fileMenu, $"Save", s, Key { s, ctrl = true }, NotifySelect = MenuFileSave };
499    // MenuItem { fileMenu, "Save As...", a, NotifySelect = MenuFileSaveAs };
500
501    bool OnClose(bool parentClosing)
502    {
503       if(!parentClosing && visible)
504       {
505          visible = false;
506          return false;
507       }
508       if(buildInProgress)
509          return false;
510
511       if(modifiedDocument)
512       {
513          DialogResult dialogRes;
514          char msg[2048];
515          bool first = true;
516          strcpy(msg, $"You have modified projects.\nSave changes to ");
517          for(p : ide.workspace.projects)
518          {
519             if(p.topNode.modified)
520             {
521                if(!first) strcat(msg, ", ");
522                strcat(msg, p.name);
523                first = false;
524             }
525          }
526          strcat(msg, "?");
527
528          dialogRes = MessageBox { master = master, type = yesNoCancel, text = parent.caption ? parent.caption : rootWindow.caption, contents = msg }.Modal();
529
530          if(dialogRes == yes)
531          {
532             // TOFIX: Precomp error if brackets are taken out
533             return (DialogResult)MenuFileSave(null, 0) != cancel;
534          }
535          else if(dialogRes == cancel)
536             return false;
537          modifiedDocument = false;
538       }
539       return true;
540    }
541
542    void OnDestroy(void)
543    {
544       //if(ide.findInFilesDialog && ide.findInFilesDialog.created && ide.findInFilesDialog.mode != directory)
545       //   ide.findInFilesDialog.SearchStop();
546
547       ide.outputView.buildBox.Clear();
548       ide.outputView.debugBox.Clear();
549       //ide.outputView.findBox.Clear();
550       ide.callStackView.Clear();
551       ide.watchesView.Clear();
552       ide.threadsView.Clear();
553       ide.breakpointsView.Clear();
554       ide.outputView.ShowClearSelectTab(find); // why this?
555    }
556
557    bool OnSaveFile(const char * fileName)
558    {
559       for(prj : ide.workspace.projects)
560       {
561          if(prj.topNode.modified)
562          {
563             prj.StopMonitoring();
564             if(prj.Save(prj.filePath))
565                prj.topNode.modified = false;
566             prj.StartMonitoring();
567          }
568       }
569       modifiedDocument = false;
570       Update(null);
571       return true;
572    }
573
574    bool IsModuleInProject(const char * filePath)
575    {
576       char moduleName[MAX_FILENAME]; //, modulePath[MAX_LOCATION];
577       GetLastDirectory(filePath, moduleName);
578       return project.topNode.Find(moduleName, false) != null;
579    }
580
581    ProjectNode GetNodeForCompilationFromWindow(Window document, bool nonExcludedFirst, bool * isExcluded, bool * isCObject)
582    {
583       ProjectNode node = null;
584       if(nonExcludedFirst)
585          node = GetNodeFromWindow(document, null, false, false, isExcluded);
586       if(!node)
587          node = GetNodeFromWindow(document, null, true, false, isExcluded);
588       if(!node && nonExcludedFirst)
589       {
590          node = GetNodeFromWindow(document, null, false, true, isExcluded);
591          if(isCObject && node) *isCObject = true;
592       }
593       if(!node)
594       {
595          node = GetNodeFromWindow(document, null, true, true, isExcluded);
596          if(isCObject && node) *isCObject = true;
597       }
598       return node;
599    }
600
601    ProjectNode GetNodeFromWindow(Window document, Project project, bool allNodes, bool isCObject, bool * isNodeExcluded)
602    {
603       ProjectNode node = null;
604       if(document.fileName)
605       {
606          bool excluded = false;
607          char winFileName[MAX_LOCATION];
608          char * documentFileName = GetSlashPathBuffer(winFileName, document.fileName);
609          Project prj;
610          ProjectNode n;
611          if(isCObject)
612          {
613             char name[MAX_FILENAME];
614             GetLastDirectory(documentFileName, name);
615             ChangeExtension(name, "ec", name);
616             for(p : ide.workspace.projects)
617             {
618                prj = project ? project : p;
619                if((n = prj.topNode.Find(name, false)))
620                {
621                   if(allNodes || !(excluded = n.GetIsExcluded(prj.config)))
622                   {
623                      node = n;
624                      break;
625                   }
626                }
627                if(project) break;
628             }
629          }
630          else
631          {
632             for(p : ide.workspace.projects)
633             {
634                prj = project ? project : p;
635                if((n = prj.topNode.FindByFullPath(documentFileName, false)))
636                {
637                   if(allNodes || !(excluded = n.GetIsExcluded(prj.config)))
638                   {
639                      node = n;
640                      break;
641                   }
642                }
643                if(project) break;
644             }
645          }
646          if(node && isNodeExcluded)
647             *isNodeExcluded = excluded;
648       }
649       return node;
650    }
651
652    //                          ((( UTILITY FUNCTIONS )))
653    //
654    //  ************************************************************************
655    //  *** These methods below are part of a sequence of events, and as     ***
656    //  *** such they must be passed the current compiler and project config ***
657    //  ************************************************************************
658    bool DisplayCompiler(CompilerConfig compiler, bool cleanLog)
659    {
660       ide.outputView.buildBox.Logf($"%s Compiler\n", compiler ? compiler.name : $"{problem with compiler selection}");
661       return true;
662    }
663
664    bool ProjectPrepareForToolchain(Project project, PrepareMakefileMethod method, bool cleanLog, bool displayCompiler,
665       CompilerConfig compiler, ProjectConfig config)
666    {
667       ShowOutputBuildLog(cleanLog);
668
669       if(displayCompiler)
670          DisplayCompiler(compiler, false);
671
672       ProjectPrepareCompiler(project, compiler, false);
673       ProjectPrepareMakefile(project, method, compiler, config);
674       return true;
675    }
676
677    bool ProjectPrepareCompiler(Project project, CompilerConfig compiler, bool silent)
678    {
679       if((!project.GenerateCrossPlatformMk(app.includeFile) ||
680             !project.GenerateCompilerCf(compiler, project.topNode.ContainsFilesWithExtension("ec", project.config))) && !silent)
681          ide.outputView.buildBox.Logf($"Error generating compiler configuration (Is the project/config directory writable?)\n");
682       return true;
683    }
684
685    // Note: Compiler is only passed in to for VisualStudio support
686    bool ProjectPrepareMakefile(Project project, PrepareMakefileMethod method, CompilerConfig compiler, ProjectConfig config)
687    {
688       if(compiler.type.isVC)
689       {
690          // I'm guessing we'll want to support generating VS files on Linux as well...
691          ide.statusBar.text = $"Generating Visual Studio Solution...";
692          app.UpdateDisplay();
693          //GenerateVSSolutionFile(project, compiler);
694          ide.statusBar.text = $"Generating Visual Studio Project...";
695          app.UpdateDisplay();
696          //GenerateVCProjectFile(project, compiler, bitDepth);
697          ide.statusBar.text = null;
698          app.UpdateDisplay();
699          return true;
700       }
701       else
702       {
703          char makefilePath[MAX_LOCATION];
704          char makefileName[MAX_LOCATION];
705          bool exists;
706          LogBox logBox = ide.outputView.buildBox;
707
708          strcpy(makefilePath, project.topNode.path);
709          project.CatMakeFileName(makefileName, config);
710          PathCatSlash(makefilePath, makefileName);
711
712          exists = FileExists(makefilePath);
713          if(method == force ||
714            (method == forceExists && exists) ||
715            (method == normal && (!exists || (config && config.makingModified))))
716          {
717             const char * reason;
718             const char * action;
719             ide.statusBar.text = $"Generating Makefile & Dependencies..."; // Dependencies?
720             app.UpdateDisplay();
721
722             if((method == normal && !exists) || (method == force && !exists))
723                action = $"Generating ";
724             else if(method == force)
725                action = $"Regenerating ";
726             else if(method == normal || method == forceExists)
727                action = $"Updating ";
728             else
729                action = "";
730             if(!exists)
731                reason = $"Makefile doesn't exist. ";
732             else if(project.topNode.modified)
733                reason = $"Project has been modified. ";
734             else
735                reason = "";
736
737             //logBox.Logf("%s\n", makefileName);
738             logBox.Logf($"%s - %s%smakefile for %s config...\n", makefileName, reason, action, GetConfigName(config));
739
740             if(!project.GenerateMakefile(null, false, null, config, compiler.ldCommand))
741                ide.outputView.buildBox.Logf($"Error generating makefile (Is the project directory writable?)\n");
742
743             ide.statusBar.text = null;
744             app.UpdateDisplay();
745             return true;
746          }
747       }
748       return false;
749    }
750
751    bool BuildInterrim(Project prj, BuildType buildType, CompilerConfig compiler, ProjectConfig config, int bitDepth, bool justPrint, bool raw)
752    {
753       if(ProjectPrepareForToolchain(prj, normal, true, true, compiler, config))
754       {
755          ide.outputView.buildBox.Logf($"Building project %s using the %s configuration...\n", prj.name, GetConfigName(config));
756          return Build(prj, buildType, compiler, config, bitDepth, justPrint, raw);
757       }
758       return false;
759    }
760
761    bool DebugStopForMake(Project prj, BuildType buildType, CompilerConfig compiler, ProjectConfig config)
762    {
763       bool result = false;
764       // TOFIX: DebugStop is being abused and backfiring on us.
765       //        It's supposed to be the 'Debug/Stop' item, not unloading executable or anything else
766
767       //        configIsInDebugSession seems to be used for two OPPOSITE things:
768       //        If we're debugging another config, we need to unload the executable!
769       //        In building, we want to stop if we're debugging the 'same' executable
770       if(buildType != run) ///* && prj == project*/ && prj.configIsInDebugSession)
771       {
772          if(buildType == start || buildType == restart)
773          {
774             if(ide.debugger && ide.debugger.isPrepared)
775                result = DebugStop();
776          }
777          else
778          {
779             if(ide.project == prj && ide.debugger && ide.debugger.prjConfig == config && ide.debugger.isPrepared)
780                result = DebugStop();
781          }
782       }
783       app.ProcessInput(true);
784       ShowOutputBuildLog(false);
785       return result;
786    }
787
788    bool Build(Project prj, BuildType buildType, CompilerConfig compiler, ProjectConfig config, int bitDepth, bool justPrint, bool raw)
789    {
790       bool result = true;
791       Window document;
792
793       stopBuild = false;
794       for(document = master.firstChild; document; document = document.next)
795       {
796          if(document.modifiedDocument)
797          {
798             ProjectNode node = GetNodeFromWindow(document, prj, true, false, null);
799             if(node && !document.MenuFileSave(null, 0))
800             {
801                result = false;
802                break;
803             }
804          }
805       }
806       if(result)
807       {
808          DirExpression targetDir = prj.GetTargetDir(compiler, config, bitDepth);
809
810          DebugStopForMake(prj, buildType, compiler, config);
811
812          // TODO: Disabled until problems fixed... is it fixed?
813          if(buildType == rebuild || (config && config.compilingModified))
814             prj.Clean(compiler, config, bitDepth, clean, justPrint, raw);
815          else
816          {
817             if(buildType == relink || (config && config.linkingModified))
818                prj.Clean(compiler, config, bitDepth, cleanTarget, false, raw);
819             if(config && config.symbolGenModified)
820             {
821                DirExpression objDir = prj.GetObjDir(compiler, config, bitDepth);
822                char fileName[MAX_LOCATION];
823                char moduleName[MAX_FILENAME];
824                strcpy(fileName, prj.topNode.path);
825                PathCatSlash(fileName, objDir.dir);
826                ReplaceSpaces(moduleName, prj.moduleName);
827                strcat(moduleName, ".main.ec");
828                PathCatSlash(fileName, moduleName);
829                if(FileExists(fileName))
830                   DeleteFile(fileName);
831                ChangeExtension(fileName, "c", fileName);
832                if(FileExists(fileName))
833                   DeleteFile(fileName);
834                ChangeExtension(fileName, "o", fileName);
835                if(FileExists(fileName))
836                   DeleteFile(fileName);
837
838                delete objDir;
839             }
840          }
841          buildInProgress = prj == project ? buildingMainProject : buildingSecondaryProject;
842          ide.AdjustBuildMenus();
843          ide.AdjustDebugMenus();
844
845          result = prj.Build(buildType, null, compiler, config, bitDepth, justPrint, raw, normal);
846
847          if(config)
848          {
849             config.compilingModified = false;
850             if(!stopBuild)
851                config.linkingModified = false;
852
853             config.symbolGenModified = false;
854          }
855          buildInProgress = none;
856          ide.AdjustBuildMenus();
857          ide.AdjustDebugMenus();
858
859          ide.workspace.modified = true;
860
861          delete targetDir;
862       }
863       return result;
864    }
865
866    //                          ((( USER ACTIONS )))
867    //
868    //  ************************************************************************
869    //  *** Methods below should atomically start a process, and as such     ***
870    //  *** they can query compiler and config directly from ide and project ***
871    //  *** but ONLY ONCE!!!                                                 ***
872    //  ************************************************************************
873
874    bool ProjectBuild(MenuItem selection, Modifiers mods)
875    {
876       if(buildInProgress == none)
877       {
878          Project prj = project;
879          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
880          int bitDepth = ide.workspace.bitDepth;
881          ProjectConfig config;
882          if(selection || !ide.activeClient)
883          {
884             DataRow row = fileList.currentRow;
885             ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
886             if(node) prj = node.project;
887          }
888          else
889          {
890             ProjectNode node = GetNodeForCompilationFromWindow(ide.activeClient, true, null, null);
891             if(node)
892                prj = node.project;
893          }
894          config = prj.config;
895          if(/*prj != project || */!prj.GetConfigIsInDebugSession(config) || !ide.DontTerminateDebugSession($"Project Build"))
896          {
897             BuildInterrim(prj, build, compiler, config, bitDepth, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
898          }
899          delete compiler;
900       }
901       else
902          stopBuild = true;
903       return true;
904    }
905
906    bool ProjectInstall(MenuItem selection, Modifiers mods)
907    {
908       Project prj = project;
909       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
910       int bitDepth = ide.workspace.bitDepth;
911       ProjectConfig config;
912       if(selection || !ide.activeClient)
913       {
914          DataRow row = fileList.currentRow;
915          ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
916          if(node) prj = node.project;
917       }
918       else
919       {
920          ProjectNode node = GetNodeFromWindow(ide.activeClient, null, true, false, null);
921          if(node)
922             prj = node.project;
923       }
924       config = prj.config;
925       if(!prj.GetConfigIsInDebugSession(config) ||
926             (!ide.DontTerminateDebugSession($"Project Install") && DebugStopForMake(prj, relink, compiler, config)))
927       {
928          BuildInterrim(prj, build, compiler, config, bitDepth, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
929          if(ProjectPrepareForToolchain(prj, normal, false, false, compiler, config))
930          {
931             ide.outputView.buildBox.Logf($"\nInstalling project %s using the %s configuration...\n", prj.name, GetConfigName(config));
932             Build(prj, install, compiler, config, bitDepth, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
933          }
934       }
935       delete compiler;
936       return true;
937    }
938
939    bool ProjectLink(MenuItem selection, Modifiers mods)
940    {
941       Project prj = project;
942       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
943       int bitDepth = ide.workspace.bitDepth;
944       ProjectConfig config;
945       if(selection || !ide.activeClient)
946       {
947          DataRow row = fileList.currentRow;
948          ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
949          if(node) prj = node.project;
950       }
951       else
952       {
953          ProjectNode node = GetNodeFromWindow(ide.activeClient, null, true, false, null);
954          if(node)
955             prj = node.project;
956       }
957       config = prj.config;
958       if(!prj.GetConfigIsInDebugSession(config) ||
959             (!ide.DontTerminateDebugSession($"Project Link") && DebugStopForMake(prj, relink, compiler, config)))
960       {
961          if(ProjectPrepareForToolchain(prj, normal, true, true, compiler, config))
962          {
963             ide.outputView.buildBox.Logf($"Relinking project %s using the %s configuration...\n", prj.name, GetConfigName(config));
964             if(config)
965                config.linkingModified = true;
966             Build(prj, relink, compiler, config, bitDepth, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
967          }
968       }
969       delete compiler;
970       return true;
971    }
972
973    bool ProjectRebuild(MenuItem selection, Modifiers mods)
974    {
975       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
976       int bitDepth = ide.workspace.bitDepth;
977       Project prj = project;
978       ProjectConfig config;
979       if(selection || !ide.activeClient)
980       {
981          DataRow row = fileList.currentRow;
982          ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
983          if(node) prj = node.project;
984       }
985       else
986       {
987          ProjectNode node = GetNodeFromWindow(ide.activeClient, null, true, false, null);
988          if(node)
989             prj = node.project;
990       }
991       config = prj.config;
992       if(!prj.GetConfigIsInDebugSession(config) ||
993             (!ide.DontTerminateDebugSession($"Project Rebuild") && DebugStopForMake(prj, rebuild, compiler, config)))
994       {
995          if(ProjectPrepareForToolchain(prj, normal, true, true, compiler, config))
996          {
997             ide.outputView.buildBox.Logf($"Rebuilding project %s using the %s configuration...\n", prj.name, GetConfigName(config));
998             /*if(config)
999             {
1000                config.compilingModified = true;
1001                config.makingModified = true;
1002             }*/ // -- should this still be used depite the new solution of BuildType?
1003             Build(prj, rebuild, compiler, config, bitDepth, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
1004          }
1005       }
1006       delete compiler;
1007       return true;
1008    }
1009
1010    bool ProjectCleanTarget(MenuItem selection, Modifiers mods)
1011    {
1012       CleanProject($"Project Clean Target", $"Cleaning project %s target using the %s configuration...\n", selection, cleanTarget, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
1013       return true;
1014    }
1015
1016    bool ProjectClean(MenuItem selection, Modifiers mods)
1017    {
1018       CleanProject($"Project Clean", $"Cleaning project %s using the %s configuration...\n", selection, clean, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
1019       return true;
1020    }
1021
1022    bool ProjectRealClean(MenuItem selection, Modifiers mods)
1023    {
1024       CleanProject($"Project Real Clean", $"Removing intermediate objects directory for project %s using the %s configuration...\n", selection, realClean, mods.ctrl && mods.shift, mods.ctrl && !mods.shift);
1025       return true;
1026    }
1027
1028    void CleanProject(const char * terminateDebugSessionMessage, const char * cleaningMessageLogFormat, MenuItem selection, CleanType cleanType, bool justPrint, bool raw)
1029    {
1030       Project prj = project;
1031       Array<Project> projects { };
1032       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1033       int bitDepth = ide.workspace.bitDepth;
1034       if(selection)
1035       {
1036          OldLink item;
1037          OldList selectedRows;
1038          fileList.GetMultiSelection(selectedRows);
1039          for(item = selectedRows.first; item; item = item.next)
1040          {
1041             DataRow row = item.data;
1042             ProjectNode node = (ProjectNode)(intptr)row.tag;
1043             if(node.type == project)
1044                projects.Add(node.project);
1045          }
1046          selectedRows.Free(null);
1047       }
1048       if(selection || !ide.activeClient)
1049       {
1050          DataRow row = fileList.currentRow;
1051          ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1052          if(node) prj = node.project;
1053          if(projects.count == 0)
1054             projects.Add(prj);
1055       }
1056       else
1057       {
1058          // TODO: a file can belong to more than one project, ask which one to clean
1059          ProjectNode node = GetNodeFromWindow(ide.activeClient, null, true, false, null);
1060          if(node) prj = node.project;
1061          if(projects.count == 0)
1062             projects.Add(prj);
1063       }
1064       for(prj : projects)
1065       {
1066          ProjectConfig config = prj.config;
1067          if(!prj.GetConfigIsInDebugSession(config) ||
1068                (!ide.DontTerminateDebugSession(terminateDebugSessionMessage) && DebugStopForMake(prj, clean, compiler, config)))
1069          {
1070             if(ProjectPrepareForToolchain(prj, normal, true, true, compiler, config))
1071             {
1072                ide.outputView.buildBox.Logf(cleaningMessageLogFormat, prj.name, GetConfigName(config));
1073
1074                buildInProgress = prj == project ? buildingMainProject : buildingSecondaryProject;
1075                ide.AdjustBuildMenus();
1076                ide.AdjustDebugMenus();
1077
1078                prj.Clean(compiler, config, bitDepth, cleanType, justPrint, raw);
1079                buildInProgress = none;
1080                ide.AdjustBuildMenus();
1081                ide.AdjustDebugMenus();
1082             }
1083          }
1084       }
1085       delete compiler;
1086       delete projects;
1087    }
1088
1089    bool ProjectRegenerate(MenuItem selection, Modifiers mods)
1090    {
1091       Project prj = project;
1092       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1093       ShowOutputBuildLog(true);
1094       if(selection || !ide.activeClient)
1095       {
1096          DataRow row = fileList.currentRow;
1097          ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1098          if(node)
1099             prj = node.project;
1100       }
1101       else
1102       {
1103          ProjectNode node = GetNodeFromWindow(ide.activeClient, null, true, false, null);
1104          if(node)
1105             prj = node.project;
1106       }
1107
1108       DisplayCompiler(compiler, false);
1109       ProjectPrepareCompiler(project, compiler, false);
1110       ProjectPrepareMakefile(prj, force, compiler, prj.config);
1111       delete compiler;
1112       return true;
1113    }
1114
1115    bool Compile(Project project, List<ProjectNode> nodes, bool justPrint, bool raw, SingleFileCompileMode mode)
1116    {
1117       bool result = true;
1118       Window document;
1119       ProjectConfig config = project.config;
1120
1121       stopBuild = false;
1122
1123       for(document = ide.firstChild; document; document = document.next)
1124       {
1125          if(document.modifiedDocument)
1126          {
1127             ProjectNode n = GetNodeFromWindow(document, project, true, mode == cObject ? true : false, null);
1128             for(node : nodes)
1129             {
1130                if(n && n.IsInNode(node) && !document.MenuFileSave(null, 0))
1131                {
1132                   ide.outputView.buildBox.Logf($"Unable to save %s file.\n", node.name);
1133                   result = false;
1134                   break;
1135                }
1136             }
1137          }
1138       }
1139
1140       if(result)
1141       {
1142          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1143          int bitDepth = ide.workspace.bitDepth;
1144          result = false;
1145          if(ProjectPrepareForToolchain(project, normal, true, true, compiler, config))
1146          {
1147             if(config)
1148                ide.outputView.buildBox.Logf($"%s specific file(s) in project %s using the %s configuration...\n",
1149                      (mode == normal || mode == cObject) ? $"Compiling" : $"Debug compiling", project.name, config.name);
1150             else
1151                ide.outputView.buildBox.Logf($"%s specific file(s) in project %s...\n",
1152                      (mode == normal || mode == cObject) ? $"Compiling" : $"Debug compiling", project.name);
1153
1154             buildInProgress = compilingFile;
1155             ide.AdjustBuildMenus();
1156             result = project.Compile(nodes, compiler, config, bitDepth, justPrint, raw, mode);
1157             buildInProgress = none;
1158             ide.AdjustBuildMenus();
1159          }
1160          delete compiler;
1161       }
1162       return result;
1163    }
1164
1165    bool Clean(Project project, List<ProjectNode> nodes, bool justPrint)
1166    {
1167       bool result = true;
1168       Window document;
1169       ProjectConfig config = project.config;
1170
1171       stopBuild = false;
1172
1173       for(document = ide.firstChild; document; document = document.next)
1174       {
1175          if(document.modifiedDocument)
1176          {
1177             ProjectNode n = GetNodeFromWindow(document, project, true, false, null);
1178             for(node : nodes)
1179             {
1180                if(n && n.IsInNode(node) && !document.MenuFileSave(null, 0))
1181                {
1182                   ide.outputView.buildBox.Logf($"Unable to save %s file.\n", node.name);
1183                   result = false;
1184                   break;
1185                }
1186             }
1187          }
1188       }
1189
1190       if(result)
1191       {
1192          CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1193          int bitDepth = ide.workspace.bitDepth;
1194          result = false;
1195          if(ProjectPrepareForToolchain(project, normal, true, true, compiler, config))
1196          {
1197             Map<String, NameCollisionInfo> namesInfo { };
1198             project.topNode.GenMakefileGetNameCollisionInfo(namesInfo, config);
1199             for(node : nodes)
1200             {
1201                if(node.GetIsExcluded(config))
1202                   ide.outputView.buildBox.Logf($"File %s is excluded from current build configuration.\n", node.name);
1203                else
1204                {
1205                   if(config)
1206                      ide.outputView.buildBox.Logf($"Deleting intermediate objects for %s %s in project %s using the %s configuration...\n",
1207                            node.type == file ? $"single file" : $"folder", node.name, project.name, config.name);
1208                   else
1209                      ide.outputView.buildBox.Logf($"Deleting intermediate objects for %s %s in project %s...\n",
1210                            node.type == file ? $"single file" : $"folder", node.name, project.name);
1211
1212                   node.DeleteIntermediateFiles(compiler, config, bitDepth, namesInfo, false);
1213                   result = true;
1214                }
1215             }
1216             namesInfo.Free();
1217             delete namesInfo;
1218          }
1219          delete compiler;
1220       }
1221       return result;
1222    }
1223
1224    bool ProjectNewFile(MenuItem selection, Modifiers mods)
1225    {
1226       DataRow row = fileList.currentRow;
1227       if(row)
1228       {
1229          char fileName[1024];
1230          char filePath[MAX_LOCATION];
1231          ProjectNode parentNode = (ProjectNode)(intptr)row.tag;
1232          ProjectNode n, fileNode;
1233          parentNode.GetFileSysMatchingPath(filePath);
1234          MakePathRelative(filePath, parentNode.project.topNode.path, filePath);
1235          for(n = parentNode; n && n != parentNode.project.resNode; n = n.parent);
1236          sprintf(fileName, $"Untitled %d", documentID);
1237          fileNode = AddFile(parentNode, fileName, n != null, true);
1238          fileNode.path = CopyUnixPath(filePath);
1239          if(fileNode)
1240          {
1241             NodeProperties nodeProperties
1242             {
1243                parent, this;
1244                position = { position.x + 100, position.y + 100 };
1245                mode = newFile;
1246                node = fileNode;
1247             };
1248             nodeProperties.Create(); // not modal?
1249          }
1250       }
1251       return true;
1252    }
1253
1254    bool ProjectNewFolder(MenuItem selection, Modifiers mods)
1255    {
1256       DataRow row = fileList.currentRow;
1257       if(row)
1258       {
1259          ProjectNode parentNode = (ProjectNode)(intptr)row.tag;
1260          NewFolder(parentNode, null, true);
1261       }
1262       return true;
1263    }
1264
1265    bool ResourcesAddFiles(MenuItem selection, Modifiers mods)
1266    {
1267       AddFiles(true);
1268       return true;
1269    }
1270
1271    bool ProjectAddFiles(MenuItem selection, Modifiers mods)
1272    {
1273       AddFiles(false);
1274       return true;
1275    }
1276
1277    bool ProjectImportFolder(MenuItem selection, Modifiers mods)
1278    {
1279       DataRow row = fileList.currentRow;
1280       if(row)
1281       {
1282          ProjectNode toNode = (ProjectNode)(intptr)row.tag;
1283          ImportFolder(toNode);
1284       }
1285       return true;
1286    }
1287
1288    bool ProjectAddNewForm(MenuItem selection, Modifiers mods)
1289    {
1290       CodeEditor codeEditor = CreateNew("Form", "form", "Window", null);
1291       codeEditor.EnsureUpToDate();
1292       ide.RepositionWindows(false);
1293       return true;
1294    }
1295
1296    bool ProjectAddNewGraph(MenuItem selection, Modifiers mods)
1297    {
1298       CodeEditor codeEditor = CreateNew("Graph", "graph", "Block", null);
1299       if(codeEditor)
1300          codeEditor.EnsureUpToDate();
1301       return true;
1302    }
1303
1304    bool ProjectRemove(MenuItem selection, Modifiers mods)
1305    {
1306       DataRow row = fileList.currentRow;
1307       if(row)
1308       {
1309          ProjectNode node = (ProjectNode)(intptr)row.tag;
1310          if(node.type == project)
1311             RemoveSelectedNodes();
1312       }
1313       return true;
1314    }
1315
1316    bool ProjectUpdateMakefileForAllConfigs(Project project)
1317    {
1318       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1319
1320       // This call really does not belong here:
1321       ide.UpdateToolBarActiveConfigs(false);
1322       for(config : project.configurations)
1323          ProjectPrepareMakefile(project, forceExists, compiler, config);
1324
1325       ide.Update(null);
1326       delete compiler;
1327       return true;
1328    }
1329
1330    bool MenuSettings(MenuItem selection, Modifiers mods)
1331    {
1332       ProjectNode node = GetSelectedNode(true);
1333       Project prj = node ? node.project : project;
1334       projectSettingsDialog = ProjectSettings { master = parent, project = prj, projectNode = node };
1335       incref projectSettingsDialog;
1336       projectSettingsDialog.Modal();
1337       delete projectSettingsDialog;
1338       ide.UpdateToolBarActiveConfigs(false);
1339       Update(null);
1340       ide.AdjustMenus();
1341       return true;
1342    }
1343
1344    bool FileProperties(MenuItem selection, Modifiers mods)
1345    {
1346       DataRow row = fileList.currentRow;
1347       if(row)
1348       {
1349          ProjectNode node = (ProjectNode)(intptr)row.tag;
1350          NodeProperties { parent = parent, master = this, node = node,
1351                position = { position.x + 100, position.y + 100 } }.Create();
1352       }
1353       return true;
1354    }
1355
1356    bool FileOpenFile(MenuItem selection, Modifiers mods)
1357    {
1358       OpenSelectedNodes(mods.ctrl && mods.shift);
1359       return true;
1360    }
1361
1362    bool FileRemoveFile(MenuItem selection, Modifiers mods)
1363    {
1364       RemoveSelectedNodes();
1365       return true;
1366    }
1367
1368    bool FileCompile(MenuItem selection, Modifiers mods)
1369    {
1370       OldLink item;
1371       OldList selectedRows;
1372       Project project = null;
1373       List<ProjectNode> nodes { };
1374       fileList.GetMultiSelection(selectedRows);
1375       for(item = selectedRows.first; item; item = item.next)
1376       {
1377          DataRow row = item.data;
1378          ProjectNode node = (ProjectNode)(intptr)row.tag;
1379          if(!project)
1380             project = node.project;
1381          else if(node.project != project)
1382          {
1383             project = null;
1384             break;
1385          }
1386          nodes.Add(node);
1387       }
1388       selectedRows.Free(null);
1389       if(project)
1390          Compile(project, nodes, mods.ctrl && mods.shift, mods.ctrl && !mods.shift, normal);
1391       else
1392          ide.outputView.buildBox.Logf($"Please select files from a single project.\n");
1393       delete nodes;
1394       return true;
1395    }
1396
1397    bool FileClean(MenuItem selection, Modifiers mods)
1398    {
1399       OldLink item;
1400       OldList selectedRows;
1401       Project project = null;
1402       List<ProjectNode> nodes { };
1403       fileList.GetMultiSelection(selectedRows);
1404       for(item = selectedRows.first; item; item = item.next)
1405       {
1406          DataRow row = item.data;
1407          ProjectNode node = (ProjectNode)(intptr)row.tag;
1408          if(!project)
1409             project = node.project;
1410          else if(node.project != project)
1411          {
1412             project = null;
1413             break;
1414          }
1415          nodes.Add(node);
1416       }
1417       selectedRows.Free(null);
1418       if(project)
1419          Clean(project, nodes, mods.ctrl && mods.shift);
1420       else
1421          ide.outputView.buildBox.Logf($"Please select files from a single project.\n");
1422       delete nodes;
1423       return true;
1424    }
1425
1426    bool FileDebugPrecompile(MenuItem selection, Modifiers mods)
1427    {
1428       DataRow row = fileList.currentRow;
1429       ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1430       if(node)
1431       {
1432          List<ProjectNode> nodes { };
1433          nodes.Add(node);
1434          if(node.type == project)
1435             ProjectBuild(selection, mods);
1436          ide.Update(null);
1437          if(!stopBuild)
1438             Compile(node.project, nodes, mods.ctrl && mods.shift, mods.ctrl && !mods.shift, debugPrecompile);
1439          delete nodes;
1440       }
1441       return true;
1442    }
1443
1444    bool FileDebugCompile(MenuItem selection, Modifiers mods)
1445    {
1446       DataRow row = fileList.currentRow;
1447       ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1448       if(node)
1449       {
1450          List<ProjectNode> nodes { };
1451          nodes.Add(node);
1452          if(node.type == project)
1453             ProjectBuild(selection, mods);
1454          else
1455             Compile(node.project, nodes, mods.ctrl && mods.shift, mods.ctrl && !mods.shift, normal);
1456          if(!stopBuild)
1457             Compile(node.project, nodes, mods.ctrl && mods.shift, mods.ctrl && !mods.shift, debugCompile);
1458          delete nodes;
1459       }
1460       return true;
1461    }
1462
1463    bool FileDebugGenerateSymbols(MenuItem selection, Modifiers mods)
1464    {
1465       DataRow row = fileList.currentRow;
1466       ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1467       if(node)
1468       {
1469          List<ProjectNode> nodes { };
1470          nodes.Add(node);
1471          if(node.type == project)
1472             ProjectBuild(selection, mods);
1473          else
1474             Compile(node.project, nodes, mods.ctrl && mods.shift, mods.ctrl && !mods.shift, normal);
1475          if(!stopBuild)
1476             Compile(node.project, nodes, mods.ctrl && mods.shift, mods.ctrl && !mods.shift, debugGenerateSymbols);
1477          delete nodes;
1478       }
1479       return true;
1480    }
1481
1482    Project GetSelectedProject(bool useSelection)
1483    {
1484       Project prj = project;
1485       if(useSelection)
1486       {
1487          DataRow row = fileList.currentRow;
1488          ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1489          if(node)
1490             prj = node.project;
1491       }
1492       return prj;
1493    }
1494
1495    void SelectNextProject(bool backwards)
1496    {
1497       DataRow row = fileList.currentRow;
1498       if(!row)
1499          row = backwards ? fileList.lastRow : fileList.firstRow;
1500
1501       if(row)
1502       {
1503          DataRow currentRow = row;
1504          ProjectNode node = (ProjectNode)(intptr)row.tag;
1505          if(node.type != project)
1506             row = node.project.topNode.row;
1507          else if(backwards)
1508             row = row.previous ? row.previous : fileList.lastRow;
1509          if(!backwards)
1510             row = row.next ? row.next : fileList.firstRow;
1511          if(row && row != currentRow)
1512          {
1513             fileList.SelectRow(row);
1514             fileList.currentRow = row;
1515          }
1516       }
1517    }
1518
1519    ProjectNode GetSelectedNode(bool useSelection)
1520    {
1521       ProjectNode node = null;
1522       if(useSelection)
1523       {
1524          DataRow row = fileList.currentRow;
1525          if(row)
1526             node = (ProjectNode)(intptr)row.tag;
1527       }
1528       return node;
1529    }
1530
1531    bool MenuBrowseFolder(MenuItem selection, Modifiers mods)
1532    {
1533       char folder[MAX_LOCATION];
1534       Project prj;
1535       ProjectNode node = GetSelectedNode(true);
1536       if(!node)
1537          node = project.topNode;
1538       prj = node.project;
1539
1540       strcpy(folder, prj.topNode.path);
1541       if(node != prj.topNode)
1542          PathCatSlash(folder, node.path);
1543       ShellOpen(folder);
1544       return true;
1545    }
1546
1547    bool Run(MenuItem selection, Modifiers mods)
1548    {
1549       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1550       ProjectConfig config = project.config;
1551       int bitDepth = ide.workspace.bitDepth;
1552       bool shellOpen = compiler.hasDocumentOutput;
1553       String args = new char[maxPathLen];
1554       args[0] = '\0';
1555       if(ide.workspace.commandLineArgs)
1556          //ide.debugger.GetCommandLineArgs(args);
1557          strcpy(args, ide.workspace.commandLineArgs);
1558       if(ide.debugger.isActive)
1559          project.Run(args, compiler, config, bitDepth, shellOpen);
1560       /*else if(config.targetType == sharedLibrary || config.targetType == staticLibrary)
1561          MessageBox { master = ide, type = ok, text = "Run", contents = "Shared and static libraries cannot be run like executables." }.Modal();*/
1562       else if(BuildInterrim(project, run, compiler, config, bitDepth, false, false))
1563          project.Run(args, compiler, config, bitDepth, shellOpen);
1564       delete args;
1565       delete compiler;
1566       return true;
1567    }
1568
1569    bool DebugStart()
1570    {
1571       bool result = false;
1572       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1573       ProjectConfig config = project.config;
1574       int bitDepth = ide.workspace.bitDepth;
1575       bool useValgrind = ide.workspace.useValgrind;
1576       TargetTypes targetType = project.GetTargetType(config);
1577       if(targetType == sharedLibrary || targetType == staticLibrary)
1578          MessageBox { master = ide, type = ok, text = $"Run", contents = $"Shared and static libraries cannot be run like executables." }.Modal();
1579       else if(project.GetCompress(config))
1580          MessageBox { master = ide, text = $"Starting Debug", contents = $"Debugging compressed applications is not supported\n" }.Modal();
1581       else if(project.GetDebug(config) ||
1582          MessageBox { master = ide, type = okCancel, text = $"Starting Debug", contents = $"Attempting to debug non-debug configuration\nProceed anyways?" }.Modal() == ok)
1583       {
1584          if(/*!IsProjectModified() ||*/ BuildInterrim(project, start, compiler, config, bitDepth, false, false))
1585          {
1586             if(compiler.type.isVC)
1587             {
1588                //bool result = false;
1589                char oldwd[MAX_LOCATION];
1590                PathBackup pathBackup { };
1591                char command[MAX_LOCATION];
1592
1593                ide.SetPath(false, compiler, config, bitDepth);
1594
1595                GetWorkingDir(oldwd, sizeof(oldwd));
1596                ChangeWorkingDir(project.topNode.path);
1597
1598                sprintf(command, "%s /useenv %s.sln /projectconfig \"%s|Win32\" /command \"%s\"" , "devenv", project.name, config.name, "Debug.Start");
1599                Execute(command);
1600                ChangeWorkingDir(oldwd);
1601
1602                delete pathBackup;
1603             }
1604             else if(compiler.hasDocumentOutput)
1605             {
1606                project.Run("", compiler, config, bitDepth, true);
1607             }
1608             else
1609             {
1610                ide.debugger.Start(compiler, config, bitDepth, useValgrind);
1611                result = true;
1612             }
1613          }
1614       }
1615       delete compiler;
1616       return result;
1617    }
1618
1619    void GoToError(const char * line, const bool noParsing, const char * objectFileExt)
1620    {
1621       char * colon;
1622
1623       while(isspace(*line)) line++;
1624       colon = strstr(line, ":");
1625
1626       {
1627          int lineNumber = 0;
1628          int col = 1;
1629          bool lookForLineNumber = true;
1630
1631          // deal with linking error
1632          if(colon && colon[1] == ' ')
1633          {
1634             colon = strstr(colon + 1, ":");
1635             if(colon && !colon[1])
1636             {
1637                colon = strstr(line, ":");
1638                lookForLineNumber = false;
1639             }
1640             else if(colon && !isdigit(colon[1]))
1641             {
1642                line = colon + 1;
1643                colon = strstr(line, ":");
1644             }
1645          }
1646          // Don't be mistaken by the drive letter colon
1647          if(colon && (colon[1] == '/' || colon[1] == '\\'))
1648             colon = strstr(colon + 1, ":");
1649          if(colon && lookForLineNumber)
1650          {
1651             char * comma;
1652 #if 0 // MSVS Errors -- todo fix this later
1653             char * par = RSearchString(line, "(", colon - line, true, false);
1654             if(par && strstr(par, ")"))
1655                colon = par;
1656             else if((colon+1)[0] == ' ')
1657             {
1658                // NOTE: This is the same thing as saying 'colon = line'
1659                for( ; colon != line; colon--)
1660                   /*if(*colon == '(')
1661                      break*/;
1662             }
1663 #endif
1664             lineNumber = atoi(colon + 1);
1665             /*
1666             comma = strchr(colon, ',');
1667             if(comma)
1668                col = atoi(comma+1);
1669             */
1670             comma = strchr(colon+1, ':');
1671             if(comma)
1672                col = atoi(comma+1);
1673          }
1674
1675          {
1676             char moduleName[MAX_LOCATION], filePath[MAX_LOCATION] = "";
1677             char ext[MAX_EXTENSION] = "";
1678             ProjectNode node = null;
1679             if(colon)
1680             {
1681                const char * inFileIncludedFrom = strstr(line, stringInFileIncludedFrom);
1682                const char * from = strstr(line, "from ");
1683                const char * start = inFileIncludedFrom ? inFileIncludedFrom + strlen(stringInFileIncludedFrom) : from ? from + strlen("from ") : line;
1684                int len;
1685                if(colon < start)
1686                   start = line;
1687                len = Min((int)(colon - start), MAX_LOCATION-1);
1688                // Cut module name
1689                strncpy(moduleName, start, len);
1690                moduleName[len] = '\0';
1691             }
1692             else
1693                strcpy(moduleName, line);
1694
1695             if(!colon)
1696             {
1697                char * msg;
1698                if((msg = strstr(moduleName, " - ")))
1699                {
1700                   bool found = false;
1701                   msg[0] = '\0';
1702                   for(prj : ide.workspace.projects)
1703                   {
1704                      strcpy(filePath, prj.topNode.path);
1705                      PathCatSlash(filePath, moduleName);
1706                      if(FileExists(filePath).isFile)
1707                      {
1708                         found = true;
1709                         break;
1710                      }
1711                   }
1712                   if(!found)
1713                   {
1714                      msg[0] = ' ';
1715                      filePath[0] = '\0';
1716                   }
1717                }
1718                else if((msg = strstr(moduleName, "...")) && (colon = strchr(moduleName, ' ')) && (++colon)[0])
1719                {
1720                   bool found = false;
1721                   msg[0] = '\0';
1722                   for(prj : ide.workspace.projects)
1723                   {
1724                      if((node = prj.resNode.Find(colon, true)))
1725                      {
1726                         strcpy(filePath, prj.topNode.path);
1727                         PathCatSlash(filePath, node.path);
1728                         PathCatSlash(filePath, node.name);
1729
1730                         found = true;
1731                         break;
1732                      }
1733                   }
1734                   if(!found)
1735                   {
1736                      msg[0] = '.';
1737                      filePath[0] = '\0';
1738                   }
1739                }
1740                colon = null;
1741             }
1742             // Remove stuff in brackets
1743             /*
1744             bracket = strstr(moduleName, "(");
1745             if(bracket) *bracket = '\0';
1746             */
1747             MakeSlashPath(moduleName);
1748             GetExtension(moduleName, ext);
1749
1750             if(!colon && !filePath[0])
1751             {
1752                // Check if it's one of our modules
1753                node = project.topNode.Find(moduleName, false);
1754                if(node)
1755                {
1756                   strcpy(filePath, node.path);
1757                   PathCatSlash(filePath, node.name);
1758                }
1759                else
1760                {
1761                   char ext[MAX_EXTENSION];
1762                   GetExtension(moduleName, ext);
1763                   {
1764                      DotMain dotMain = DotMain::FromFileName(moduleName);
1765                      IntermediateFileType type = IntermediateFileType::FromExtension(ext);
1766                      ProjectConfig config = null;
1767                      if(type)
1768                      {
1769                         for(prj : ide.workspace.projects; prj.lastBuildConfigName)
1770                         {
1771                            if((config = prj.GetConfig(prj.lastBuildConfigName)))
1772                               node = prj.FindNodeByObjectFileName(moduleName, type, dotMain, config, objectFileExt);
1773                            if(node)
1774                               break;
1775                         }
1776                      }
1777                      if(node)
1778                      {
1779                         char name[MAX_FILENAME];
1780                         Project project = node.project;
1781                         CompilerConfig compiler = ideSettings.GetCompilerConfig(project.lastBuildCompilerName);
1782                         if(compiler)
1783                         {
1784                            int bitDepth = ide.workspace.bitDepth;
1785                            const char * objectFileExt = compiler ? compiler.objectFileExt : objectDefaultFileExt;
1786                            DirExpression objDir = project.GetObjDir(compiler, config, bitDepth);
1787                            strcpy(filePath, project.topNode.path);
1788                            PathCatSlash(filePath, objDir.dir);
1789                            node.GetObjectFileName(name, project.configsNameCollisions[config ? config.name : ""], type, dotMain, objectFileExt);
1790                            PathCatSlash(filePath, name);
1791                            delete objDir;
1792                         }
1793                         delete compiler;
1794                      }
1795                   }
1796                }
1797                if(!node)
1798                   filePath[0] = '\0';
1799             }
1800             if(!strcmp(ext, "a") || !strcmp(ext, "o") || !strcmp(ext, "lib") ||
1801                   !strcmp(ext, "dll") || !strcmp(ext, "exe") || !strcmp(ext, "mo"))
1802                moduleName[0] = 0;    // Avoid opening binary files
1803             if(moduleName[0])
1804             {
1805                CodeEditor codeEditor = null;
1806
1807                if(ide.GoToCodeSelectFile(moduleName, null, project, null, filePath, objectFileExt))
1808                {
1809                   codeEditor = (CodeEditor)ide.OpenFile(filePath, false, true, null, no, normal, noParsing);
1810                }
1811
1812                if(!codeEditor)
1813                {
1814                   if(!filePath[0])
1815                   {
1816                      strcpy(filePath, project.topNode.path);
1817                      PathCatSlash(filePath, moduleName);
1818                   }
1819
1820                   codeEditor = (CodeEditor)ide.OpenFile(filePath, false, true, null, no, normal, noParsing);
1821                   if(!codeEditor && !strcmp(ext, "c"))
1822                   {
1823                      char ecName[MAX_LOCATION];
1824                      ChangeExtension(filePath, "ec", ecName);
1825                      codeEditor = (CodeEditor)ide.OpenFile(ecName, false, true, null, no, normal, noParsing);
1826                   }
1827                   if(!codeEditor)
1828                   {
1829                      char path[MAX_LOCATION];
1830                      // TOFIX: Improve on this, don't use only filename, make a function
1831                      if(ide && ide.workspace)
1832                      {
1833                         for(prj : ide.workspace.projects)
1834                         {
1835                            ProjectNode node;
1836                            MakePathRelative(filePath, prj.topNode.path, path);
1837
1838                            if((node = prj.topNode.FindWithPath(path, false)))
1839                            {
1840                               strcpy(filePath, prj.topNode.path);
1841                               PathCatSlash(filePath, node.path);
1842                               PathCatSlash(filePath, node.name);
1843                               codeEditor = (CodeEditor)ide.OpenFile(filePath, false, true, null, no, normal, noParsing);
1844                               if(codeEditor)
1845                                  break;
1846                            }
1847                         }
1848                         if(!codeEditor && (strchr(moduleName, '/') || strchr(moduleName, '\\')))
1849                         {
1850                            for(prj : ide.workspace.projects)
1851                            {
1852                               ProjectNode node;
1853                               if((node = prj.topNode.FindWithPath(moduleName, false)))
1854                               {
1855                                  strcpy(filePath, prj.topNode.path);
1856                                  PathCatSlash(filePath, node.path);
1857                                  PathCatSlash(filePath, node.name);
1858                                  codeEditor = (CodeEditor)ide.OpenFile(filePath, false, true, null, no, normal, noParsing);
1859                                  if(codeEditor)
1860                                     break;
1861                               }
1862                            }
1863                         }
1864                         if(!codeEditor)
1865                         {
1866                            GetLastDirectory(moduleName, moduleName);
1867                            for(prj : ide.workspace.projects)
1868                            {
1869                               ProjectNode node;
1870                               if((node = prj.topNode.Find(moduleName, false)))
1871                               {
1872                                  strcpy(filePath, prj.topNode.path);
1873                                  PathCatSlash(filePath, node.path);
1874                                  PathCatSlash(filePath, node.name);
1875                                  codeEditor = (CodeEditor)ide.OpenFile(filePath, false, true, null, no, normal, noParsing);
1876                                  if(codeEditor)
1877                                     break;
1878                               }
1879                            }
1880                         }
1881                      }
1882                   }
1883                }
1884                if(codeEditor && lineNumber)
1885                {
1886                   EditBox editBox = codeEditor.editBox;
1887                   if(editBox.GoToLineNum(lineNumber - 1))
1888                      editBox.GoToPosition(editBox.line, lineNumber - 1, col ? (col - 1) : 0);
1889                }
1890             }
1891          }
1892       }
1893    }
1894
1895    bool OpenNode(ProjectNode node, bool noParsing)
1896    {
1897       char filePath[MAX_LOCATION];
1898       char ext[MAX_EXTENSION];
1899       node.GetFullFilePath(filePath);
1900       GetExtension(filePath, ext);
1901       if(binaryDocExt.Find(ext))
1902       {
1903          ShellOpen(filePath);
1904          return true;
1905       }
1906       else
1907          return ide.OpenFile(filePath, false, true/*false Why was it opening hidden?*/, null, something, normal, noParsing) ? true : false;
1908    }
1909
1910    void AddNode(ProjectNode node, DataRow addTo)
1911    {
1912       DataRow row = addTo ? addTo.AddRow() : fileList.AddRow();
1913
1914       row.tag = (int64)(intptr)node;
1915       node.row = row;
1916
1917       if(node.type == resources)
1918          resourceRow = row;
1919
1920       row.SetData(null, node);
1921
1922       if(node.files && node.files.first && node.parent &&
1923             !(!node.parent.parent &&
1924                (!strcmpi(node.name, "notes") || !strcmpi(node.name, "sources") ||
1925                   !strcmpi(node.name, "src") || !strcmpi(node.name, "tools"))))
1926          row.collapsed = true;
1927       else if(node.type == folder)
1928          node.icon = openFolder;
1929
1930       if(node.files)
1931       {
1932          for(child : node.files)
1933             AddNode(child, row);
1934       }
1935    }
1936
1937    void DeleteNode(ProjectNode projectNode)
1938    {
1939       if(projectNode.files)
1940       {
1941          ProjectNode child;
1942          while((child = projectNode.files.first))
1943             DeleteNode(child);
1944       }
1945       fileList.DeleteRow(projectNode.row);
1946       projectNode.Delete();
1947    }
1948
1949    bool ProjectSave(MenuItem selection, Modifiers mods)
1950    {
1951       DataRow row = fileList.currentRow;
1952       ProjectNode node = row ? (ProjectNode)(intptr)row.tag : null;
1953       Project prj = node ? node.project : null;
1954       if(prj)
1955       {
1956          prj.StopMonitoring();
1957          if(prj.Save(prj.filePath))
1958          {
1959             Project modPrj = null;
1960             prj.topNode.modified = false;
1961             for(p : ide.workspace.projects)
1962             {
1963                if(p.topNode.modified)
1964                {
1965                   modPrj = p;
1966                   break;
1967                }
1968             }
1969             if(!modPrj)
1970                modifiedDocument = false;
1971             Update(null);
1972          }
1973          prj.StartMonitoring();
1974       }
1975       return true;
1976    }
1977
1978    bool ShowOutputBuildLog(bool cleanLog)
1979    {
1980       OutputView output = ide.outputView;
1981       if(cleanLog)
1982          output.ShowClearSelectTab(build);
1983       else
1984       {
1985          output.SelectTab(build);
1986          output.Show();
1987       }
1988       return true;
1989    }
1990
1991    bool DebugRestart()
1992    {
1993       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
1994       ProjectConfig config = project.config;
1995       int bitDepth = ide.workspace.bitDepth;
1996       bool useValgrind = ide.workspace.useValgrind;
1997
1998       bool result = false;
1999       if(/*!IsProjectModified() ||*/ BuildInterrim(project, restart, compiler, config, bitDepth, false, false))
2000       {
2001          // For Restart, compiler and config will only be used if for
2002          // whatever reason (if at all possible) the Debugger is in a
2003          // 'terminated' or 'none' state
2004          ide.debugger.Restart(compiler, config, bitDepth, useValgrind);
2005          result = true;
2006       }
2007
2008       delete compiler;
2009       return result;
2010    }
2011
2012    bool DebugResume()
2013    {
2014       ide.debugger.Resume();
2015       return true;
2016    }
2017
2018    bool DebugBreak()
2019    {
2020       ide.debugger.Break();
2021       return true;
2022    }
2023
2024    bool DebugStop()
2025    {
2026       ide.debugger.Stop();
2027       return true;
2028    }
2029
2030    bool DebugStepInto()
2031    {
2032       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
2033       ProjectConfig config = project.config;
2034       int bitDepth = ide.workspace.bitDepth;
2035       bool useValgrind = ide.workspace.useValgrind;
2036
2037       if((ide.debugger.isActive) || (!buildInProgress && BuildInterrim(project, start, compiler, config, bitDepth, false, false)))
2038          ide.debugger.StepInto(compiler, config, bitDepth, useValgrind);
2039       delete compiler;
2040       return true;
2041    }
2042
2043    bool DebugStepOver(bool skip)
2044    {
2045       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
2046       ProjectConfig config = project.config;
2047       int bitDepth = ide.workspace.bitDepth;
2048       bool useValgrind = ide.workspace.useValgrind;
2049
2050       if((ide.debugger.isActive) || (!buildInProgress && BuildInterrim(project, start, compiler, config, bitDepth, false, false)))
2051          ide.debugger.StepOver(compiler, config, bitDepth, useValgrind, skip);
2052
2053       delete compiler;
2054       return true;
2055    }
2056
2057    bool DebugStepUntil(bool skip)
2058    {
2059       CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.activeCompiler);
2060       ProjectConfig config = project.config;
2061       int bitDepth = ide.workspace.bitDepth;
2062       bool useValgrind = ide.workspace.useValgrind;
2063
2064       if((ide.debugger.isActive) || (!buildInProgress && BuildInterrim(project, start, compiler, config, bitDepth, false, false)))
2065          ide.debugger.StepUntil(compiler, config, bitDepth, useValgrind, skip);
2066
2067       delete compiler;
2068       return true;
2069    }
2070
2071    bool DebugStepOut(bool skip)
2072    {
2073       ide.debugger.StepOut(skip);
2074       return true;
2075    }
2076
2077    void ImportFolder(ProjectNode toNode)
2078    {
2079       if(toNode)
2080       {
2081          char path[MAX_LOCATION];
2082          char currentDir[MAX_LOCATION];
2083          ProjectNode node = toNode;
2084          FileDialog fileDialog = importFileDialog;
2085          fileDialog.master = parent;
2086          while(node)
2087          {
2088             node.GetFullFilePath(path);
2089             while(path[0])
2090             {
2091                StripLastDirectory(path, path);
2092                if(FileExists(path).isDirectory) break;
2093             }
2094             if(path[0] || node == toNode.project.topNode)
2095                node = null;
2096             else
2097                node = toNode.project.topNode;
2098          }
2099          MakeSystemPath(path);
2100          StripLastDirectory(path, currentDir);
2101          fileDialog.currentDirectory = currentDir[0] ? currentDir : path;
2102          fileDialog.filePath = path;
2103          if(fileDialog.Modal() == ok)
2104          {
2105             ImportFolderFSI fsi { projectView = this };
2106             fsi.stack.Add(toNode);
2107             fsi.Iterate(fileDialog.filePath);
2108             delete fsi;
2109          }
2110       }
2111    }
2112
2113    ProjectNode NewFolder(ProjectNode parentNode, char * name, bool showProperties)
2114    {
2115       if(parentNode)
2116       {
2117          ProjectNode folderNode;
2118          Project prj = parentNode.project;
2119          int c;
2120          ProjectNode after = null;
2121          for(node : parentNode.files)
2122          {
2123             if(node.type != folder)
2124                break;
2125             after = node;
2126          }
2127
2128          if(name && name[0])
2129             folderNode = parentNode.Add(prj, name, after, folder, folder, true);
2130          else
2131          {
2132             for(c = 0; c < 100; c++)
2133             {
2134                char string[16];
2135                sprintf(string, c ? "New Folder (%d)" : "New Folder", c);
2136                if((folderNode = parentNode.Add(prj, string, after, folder, folder, true)))
2137                   break;
2138             }
2139          }
2140
2141          if(folderNode)
2142          {
2143             NodeProperties nodeProperties;
2144             if(!showProperties)
2145             {
2146                modifiedDocument = true;
2147                prj.topNode.modified = true;
2148             }
2149             Update(null);
2150             folderNode.row = parentNode.row.AddRowAfter(after ? after.row : null);
2151             folderNode.row.tag = (int64)(intptr)folderNode;
2152
2153             folderNode.row.SetData(null, folderNode);
2154             fileList.currentRow = folderNode.row;
2155
2156             if(showProperties)
2157             {
2158                nodeProperties = NodeProperties
2159                {
2160                   parent, this, mode = newFolder, node = folderNode;
2161                   position = { position.x + 100, position.y + 100 };
2162                };
2163                nodeProperties.Create();   // Modal?
2164             }
2165             return folderNode;
2166          }
2167       }
2168       return null;
2169    }
2170
2171    void AddFiles(bool resources)
2172    {
2173       FileDialog fileDialog = (!resources) ? this.fileDialog : resourceFileDialog;
2174       fileDialog.type = multiOpen;
2175       fileDialog.text = !resources ? $"Add Files to Project" : $"Add Resources to Project";
2176       fileDialog.master = parent;
2177
2178       if(fileDialog.Modal() == ok)
2179       {
2180          int c;
2181          DataRow row = fileList.currentRow;
2182          ProjectNode parentNode = (ProjectNode)(intptr)row.tag;
2183          bool addFailed = false;
2184          int numSelections = fileDialog.numSelections;
2185          const char * const * multiFilePaths = fileDialog.multiFilePaths;
2186
2187          Array<String> nameConflictFiles { };
2188
2189          for(c = 0; c < numSelections; c++)
2190          {
2191             const char * filePath = multiFilePaths[c];
2192             FileAttribs exists = FileExists(filePath);
2193             bool addThisFile = true;
2194
2195             if(exists.isDirectory)
2196                addThisFile = false;
2197             else if(!exists)
2198             {
2199                if(MessageBox { master = ide, type = yesNo, text = filePath,
2200                      contents = $"File doesn't exist. Create?" }.Modal() == yes)
2201                {
2202                   File f = FileOpen(filePath, write);
2203                   if(f)
2204                   {
2205                      addThisFile = true;
2206                      delete f;
2207                   }
2208                   else
2209                   {
2210                      MessageBox { master = ide, type = ok, text = filePath,
2211                            contents = $"Couldn't create file."}.Modal();
2212                      addThisFile = false;
2213                   }
2214                }
2215             }
2216
2217             if(addThisFile)
2218             {
2219                /*addFailed = */if(!AddFile(parentNode, filePath, resources, false))//;
2220                {
2221                   nameConflictFiles.Add(CopyString(filePath));
2222                   addFailed = true;
2223                }
2224             }
2225          }
2226          if(addFailed)
2227          {
2228             int len = 0;
2229             const char * part1 = $"The following file";
2230             const char * opt1 = $" was ";
2231             const char * opt2 = $"s were ";
2232             const char * part2 = $"not added because of identical file name conflict within the project.\n\n";
2233             char * message;
2234             len += strlen(part1);
2235             len += strlen(part2);
2236             len += nameConflictFiles.count > 1 ? strlen(opt2) : strlen(opt1);
2237             for(s : nameConflictFiles)
2238                len += strlen(s) + 1;
2239             message = new char[len + 1];
2240             strcpy(message, part1);
2241             strcat(message, nameConflictFiles.count > 1 ? opt2 : opt1);
2242             strcat(message, part2);
2243             for(s : nameConflictFiles)
2244             {
2245                strcat(message, s);
2246                strcat(message, "\n");
2247             }
2248             MessageBox { master = ide, type = ok, text = $"Name Conflict",
2249                   contents = message }.Modal();
2250             delete message;
2251          }
2252          nameConflictFiles.Free();
2253          delete nameConflictFiles;
2254       }
2255    }
2256
2257    ProjectNode AddFile(ProjectNode parentNode, const char * filePath, bool resources, bool isTemporary)
2258    {
2259       ProjectNode result = null;
2260       ProjectNode after = null;
2261       for(node : parentNode.files)
2262       {
2263          if(node.type != folder && node.type != file && node.type)
2264             break;
2265          after = node;
2266       }
2267
2268       result = parentNode.Add(parentNode.project, filePath, after, file, NodeIcons::SelectFileIcon(filePath), !resources);
2269
2270       if(result)
2271       {
2272          if(!isTemporary)
2273          {
2274             modifiedDocument = true;
2275             parentNode.project.topNode.modified = true;
2276             parentNode.project.ModifiedAllConfigs(true, false, true, true);
2277          }
2278          Update(null);
2279          result.row = parentNode.row.AddRowAfter(after ? after.row : null);
2280          result.row.tag = (int64)(intptr)result;
2281          result.row.SetData(null, result);
2282       }
2283       return result;
2284    }
2285
2286    CodeEditor CreateNew(const char * upper, const char * lower, const char * base, char * className)
2287    {
2288       CodeEditor codeEditor = null;
2289       ProjectNode projectNode;
2290       ProjectNode after = null;
2291       DataRow row = fileList.currentRow;
2292       ProjectNode parentNode;
2293       int c;
2294
2295       if(!row) row = project.topNode.row;
2296
2297       parentNode = (ProjectNode)(intptr)row.tag;
2298
2299       for(node : parentNode.files)
2300       {
2301          if(node.type != folder && node.type != file && node.type)
2302             break;
2303          after = node;
2304       }
2305       for(c = 1; c < 100; c++)
2306       {
2307          char string[16];
2308          sprintf(string, "%s%d.ec", lower, c);
2309          if((projectNode = parentNode.Add(project, string, after, file, genFile, true)))
2310             break;
2311       }
2312       if(projectNode)
2313       {
2314          char name[256];
2315          char filePath[MAX_LOCATION];
2316
2317          modifiedDocument = true;
2318          project.topNode.modified = true;
2319          Update(null);
2320          project.ModifiedAllConfigs(true, false, false, true);
2321          projectNode.row = parentNode.row.AddRowAfter(after ? after.row : null);
2322          projectNode.row.tag = (int64)(intptr)projectNode;
2323
2324          projectNode.row.SetData(null, projectNode);
2325          fileList.currentRow = projectNode.row;
2326
2327          strcpy(filePath, project.topNode.path);
2328          PathCat(filePath, projectNode.path);
2329          PathCat(filePath, projectNode.name);
2330
2331          codeEditor = (CodeEditor)ide.FindWindow(filePath);
2332          if(!codeEditor)
2333          {
2334             Class baseClass = eSystem_FindClass(__thisModule, base);
2335             subclass(ClassDesignerBase) designerClass = eClass_GetDesigner(baseClass);
2336             if(designerClass)
2337             {
2338                codeEditor = (CodeEditor)ide.OpenFile(filePath, false, false, null, whatever, normal, false);
2339                strcpy(name, projectNode.name);
2340                sprintf(name, "%s%d", upper, c);
2341                if(className)
2342                   strcpy(className, name);
2343
2344                designerClass.CreateNew(codeEditor.editBox, codeEditor.clientSize, name, base);
2345
2346                //codeEditor.modifiedDocument = false;
2347                //codeEditor.designer.modifiedDocument = false;
2348
2349                //Code_EnsureUpToDate(codeEditor);
2350             }
2351          }
2352          else // TODO: fix no symbols generated when ommiting {} for following else
2353          {
2354             codeEditor = (CodeEditor)ide.OpenFile(filePath, false, false, null, whatever, normal, false);
2355          }
2356          ide.sheet.visible = true;
2357          ide.sheet.Activate();
2358          if(codeEditor)
2359          {
2360             codeEditor.ViewDesigner();
2361             codeEditor.codeModified = true;
2362          }
2363       }
2364       //visible = false;
2365       return codeEditor;
2366    }
2367
2368    // Returns true if we opened something
2369    bool OpenSelectedNodes(bool noParsing)
2370    {
2371       bool result = false;
2372       OldList selection;
2373       OldLink item;
2374
2375       fileList.GetMultiSelection(selection);
2376       for(item = selection.first; item; item = item.next)
2377       {
2378          DataRow row = item.data;
2379          ProjectNode node = (ProjectNode)(intptr)row.tag;
2380          if(node.type == file)
2381          {
2382             OpenNode(node, noParsing);
2383             result = true;
2384          }
2385       }
2386       selection.Free(null);
2387       ide.RepositionWindows(false);
2388       return result;
2389    }
2390
2391    void RemoveSelectedNodes()
2392    {
2393       OldList selection;
2394       OldLink item, next;
2395
2396       fileList.GetMultiSelection(selection);
2397
2398       // Remove children of parents we're deleting
2399       for(item = selection.first; item; item = next)
2400       {
2401          OldLink i;
2402          DataRow row = item.data;
2403          ProjectNode n, node = (ProjectNode)(intptr)row.tag;
2404          bool remove = false;
2405
2406          next = item.next;
2407          for(i = selection.first; i && !remove; i = i.next)
2408          {
2409             ProjectNode iNode = (ProjectNode)(intptr)((DataRow)i.data).tag;
2410             for(n = node.parent; n; n = n.parent)
2411             {
2412                if(iNode == n)
2413                {
2414                   remove = true;
2415                   break;
2416                }
2417             }
2418          }
2419          if(remove)
2420             selection.Delete(item);
2421       }
2422
2423       for(item = selection.first; item; item = item.next)
2424       {
2425          DataRow row = item.data;
2426          ProjectNode node = (ProjectNode)(intptr)row.tag;
2427          ProjectNode resNode;
2428          for(resNode = node.parent; resNode; resNode = resNode.parent)
2429             if(resNode.type == resources)
2430                break;
2431          if(node.type == file)
2432          {
2433             Project prj = node.project;
2434             DeleteNode(node);
2435             modifiedDocument = true;
2436             prj.topNode.modified = true;
2437             Update(null);
2438             prj.ModifiedAllConfigs(true, false, true, true);
2439          }
2440          else if(node.type == folder)
2441          {
2442             char message[1024];
2443             sprintf(message, $"Are you sure you want to remove the folder \"%s\"\n"
2444                   "and all of its contents from the project?", node.name);
2445             if(MessageBox { master = ide, type = yesNo, text = $"Delete Folder", contents = message }.Modal() == yes)
2446             {
2447                Project prj = node.project;
2448                if(node.containsFile)
2449                   prj.ModifiedAllConfigs(true, false, true, true);
2450                DeleteNode(node);
2451                modifiedDocument = true;
2452                prj.topNode.modified = true;
2453             }
2454          }
2455          else if(node.type == project && node != project.topNode && !buildInProgress)
2456          {
2457             char message[1024];
2458             Project prj = null;
2459             for(p : workspace.projects)
2460             {
2461                if(p.topNode == node)
2462                {
2463                   prj = p;
2464                   break;
2465                }
2466             }
2467             sprintf(message, $"Are you sure you want to remove the \"%s\" project\n" "from this workspace?", node.name);
2468             if(MessageBox { master = ide, type = yesNo, text = $"Remove Project", contents = message }.Modal() == yes)
2469             {
2470                // THIS GOES FIRST!
2471                DeleteNode(node);
2472                if(prj)
2473                   workspace.RemoveProject(prj);
2474                //modifiedDocument = true; // when project view is a workspace view
2475             }
2476          }
2477       }
2478       selection.Free(null);
2479    }
2480 }