From 2e977d1ffeeb048fe9c9b54ef15c5bc430f25173 Mon Sep 17 00:00:00 2001 From: Rejean Loyer Date: Wed, 14 Sep 2011 12:06:05 -0400 Subject: [PATCH 1/1] explorer: open all files with the ide --- explorer/src/ExplorerWindow.ec | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/explorer/src/ExplorerWindow.ec b/explorer/src/ExplorerWindow.ec index 6d6ee59..5e41a21 100644 --- a/explorer/src/ExplorerWindow.ec +++ b/explorer/src/ExplorerWindow.ec @@ -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 -- 1.8.3.1