diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 76917e9cf..9d4b6df1e 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -694,6 +694,7 @@ public abstract class Editor extends JFrame implements RunnerListener { }); menu.add(item); + /* menu.addSeparator(); item = Base.newJMenuItem("Delete Selected Lines", 'D'); @@ -721,6 +722,7 @@ public abstract class Editor extends JFrame implements RunnerListener { } }); menu.add(item); + */ menu.addSeparator(); @@ -1508,11 +1510,12 @@ public abstract class Editor extends JFrame implements RunnerListener { textarea.selectAll(); } - /** - * @param moveUp - * true to swap the selected lines with the line above, false to swap - * with the line beneath - */ +// /** +// * @param moveUp +// * true to swap the selected lines with the line above, false to swap +// * with the line beneath +// */ + /* public void handleMoveLines(boolean moveUp) { startCompoundEdit(); @@ -1577,7 +1580,10 @@ public abstract class Editor extends JFrame implements RunnerListener { textarea.select(newSelectionStart, newSelectionEnd); stopCompoundEdit(); } + */ + + /* public void handleDeleteLines() { int startLine = textarea.getSelectionStartLine(); int stopLine = textarea.getSelectionStopLine(); @@ -1590,6 +1596,8 @@ public abstract class Editor extends JFrame implements RunnerListener { textarea.select(start, end); textarea.setSelectedText(""); } + */ + public void handleAutoFormat() { final String source = getText(); diff --git a/core/todo.txt b/core/todo.txt index f7578c689..71d2c71c4 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -6,6 +6,8 @@ X http://code.google.com/p/processing/issues/detail?id=808 X update wiki re: PNode... also include notes about the changes X add note about textMode(SCREEN) to the wiki +_ moviemaker built into core to write uncompressed frames? or PNG? + _ change how beginRecord() works.. passing around PApplet vs PGraphics is gross _ have to pass PApplet just to make the rendering work to both renderers _ should instead be a renderer that splits things out diff --git a/todo.txt b/todo.txt index 52dd259af..fe6065cf3 100644 --- a/todo.txt +++ b/todo.txt @@ -6,10 +6,17 @@ X http://code.google.com/p/processing/issues/detail?id=771 X code to quit if multiple instances are running from peter X another problem with missing shearX/Y() in JAVA2D X http://code.google.com/p/processing/issues/detail?id=784 +X implement movie maker tool +X http://code.google.com/p/processing/issues/detail?id=836 + +_ add movie maker tool to the build scripts _ don't show library conflict warning until someone tries to build code _ too many people seem to think this is an error +_ bad tool brings down the environment +_ http://code.google.com/p/processing/issues/detail?id=798 + _ work on code to quit if multiple instances are running _ need to bring the other instance to front _ and/or open a new window