remove extra items from the Edit menu--they are too power user for the PDE audience

This commit is contained in:
benfry
2011-09-06 22:28:17 +00:00
parent cbba300fff
commit 28b6b816d3
3 changed files with 22 additions and 5 deletions
+13 -5
View File
@@ -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();
+2
View File
@@ -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
+7
View File
@@ -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