summaryrefslogtreecommitdiffstats
path: root/dgbuilder/public/red/ui
diff options
context:
space:
mode:
Diffstat (limited to 'dgbuilder/public/red/ui')
-rw-r--r--dgbuilder/public/red/ui/editor.js29
-rw-r--r--dgbuilder/public/red/ui/library.js14
2 files changed, 41 insertions, 2 deletions
diff --git a/dgbuilder/public/red/ui/editor.js b/dgbuilder/public/red/ui/editor.js
index c5f7986e..174af961 100644
--- a/dgbuilder/public/red/ui/editor.js
+++ b/dgbuilder/public/red/ui/editor.js
@@ -660,6 +660,33 @@ RED.editor = (function() {
edit: showEditDialog,
editConfig: showEditConfigNodeDialog,
validateNode: validateNode,
- updateNodeProperties: updateNodeProperties // TODO: only exposed for edit-undo
+ updateNodeProperties: updateNodeProperties, // TODO: only exposed for edit-undo
+ createEditor: function(options) {
+ var editor = ace.edit(options.id);
+ //editor.setTheme("ace/theme/tomorrow");
+ editor.setTheme("ace/theme/eclipse");
+ if (options.mode) {
+ editor.getSession().setMode(options.mode);
+ }
+ if (options.foldStyle) {
+ editor.getSession().setFoldStyle(options.foldStyle);
+ } else {
+ editor.getSession().setFoldStyle('markbeginend');
+ }
+
+
+ if (options.options) {
+ editor.setOptions(options.options);
+ } else {
+ editor.setOptions({
+ enableBasicAutocompletion:false ,
+ enableSnippets:false ,
+ fontSize: "14pt" ,
+ showGutter: false
+ });
+ }
+ editor.$blockScrolling = Infinity;
+ return editor;
+ }
}
})();
diff --git a/dgbuilder/public/red/ui/library.js b/dgbuilder/public/red/ui/library.js
index 0c803bf0..10c99261 100644
--- a/dgbuilder/public/red/ui/library.js
+++ b/dgbuilder/public/red/ui/library.js
@@ -74,7 +74,19 @@ RED.library = (function() {
var libraryData = {};
var selectedLibraryItem = null;
var libraryEditor = null;
-
+ // Orion editor has set/getText
+ // ACE editor has set/getValue
+ // normalise to set/getValue
+ if (options.editor.setText) {
+ // Orion doesn't like having pos passed in, so proxy the call to drop it
+ options.editor.setValue = function(text,pos) {
+ options.editor.setText.call(options.editor,text);
+ }
+ }
+ if (options.editor.getText) {
+ options.editor.getValue = options.editor.getText;
+ }
+
function buildFileListItem(item) {
var li = document.createElement("li");
li.onmouseover = function(e) { $(this).addClass("list-hover"); };