explorer: open all files with the ide
[ede] / explorer / src / ExplorerWindow.ec
index 6d6ee59..5e41a21 100644 (file)
@@ -282,6 +282,18 @@ class ExplorerWindow : Window
       locationBox = addressBar;
       navigateFolders = true;
       borderStyle = none;
+
+      bool NotifyNodeOpen(FileSystemBox box, FileSystemNode node)
+      {
+         if(node.type.isFile)
+         {
+            char command[MAX_LOCATION];
+            char * t = node.path;
+            sprintf(command, "ide %s", node.path);
+            ShellOpen(command);
+         }
+         return true;
+      }
    };
 
    /*ExplorerSearch search