mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
X copying files from 'data' dir is not recursive.. fixed
X move structure of app/application dirs around a bit X make a new 'dist' function for building X save window position (only during session) of sketch run window X shouldn't substitute f's for: "Univers76.vlw.gz"; X need lots of testing--this changes lots of things X fixed commentsCodec which was mangling things o present mode doesn't work for draw() X tested, seems to be fine? X console - convert tabs to spaces o line wrapping (but save info for resize? noo..) X fix to line numbers being off for KjcEngine exception highlights X changed error color slightly for console to fit status error X size() not being called in setup is gonna cause lots of headaches X hack: put exception handler around setup and re-call if necessary X linefeeds were wrong in BApplet
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
import java.awt.*;
|
||||
|
||||
|
||||
public class PdeEngine {
|
||||
PdeEditor editor;
|
||||
Window window;
|
||||
|
||||
public PdeEngine(PdeEditor editor) {
|
||||
this.editor = editor;
|
||||
@@ -7,11 +11,11 @@ public class PdeEngine {
|
||||
|
||||
// implemented by subclasses
|
||||
|
||||
public void start() throws PdeException {
|
||||
public void start(Point windowLocation) throws PdeException {
|
||||
}
|
||||
|
||||
public void front() {
|
||||
}
|
||||
//public void front() {
|
||||
//}
|
||||
|
||||
public void stop() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user