diff --git a/android/theme/resize.gif b/android/theme/resize.gif deleted file mode 100644 index 5ab906a4a..000000000 Binary files a/android/theme/resize.gif and /dev/null differ diff --git a/app/src/processing/app/EditorLineStatus.java b/app/src/processing/app/EditorLineStatus.java index 1069b742a..dc1a842fb 100644 --- a/app/src/processing/app/EditorLineStatus.java +++ b/app/src/processing/app/EditorLineStatus.java @@ -34,8 +34,6 @@ public class EditorLineStatus extends JComponent { // JEditTextArea textarea; int start = -1, stop; - Image resize; - Color foreground; Color background; Font font; @@ -62,10 +60,6 @@ public class EditorLineStatus extends JComponent { font = mode.getFont("linestatus.font"); foreground = mode.getColor("linestatus.color"); high = mode.getInteger("linestatus.height"); - - if (Base.isMacOS()) { - resize = mode.loadImage("theme/resize.gif"); - } } @@ -101,10 +95,6 @@ public class EditorLineStatus extends JComponent { g.setColor(foreground); int baseline = (high + g.getFontMetrics().getAscent()) / 2; g.drawString(text, 6, baseline); - - if (Base.isMacOS()) { - g.drawImage(resize, size.width - 20, 0, this); - } } diff --git a/app/src/processing/app/Mode.java b/app/src/processing/app/Mode.java index 53d5784b3..a106264c1 100644 --- a/app/src/processing/app/Mode.java +++ b/app/src/processing/app/Mode.java @@ -548,9 +548,10 @@ public abstract class Mode { }); tree.setBorder(new EmptyBorder(5, 5, 5, 5)); - JScrollPane treeView = new JScrollPane(tree); - treeView.setPreferredSize(new Dimension(250, 450)); - examplesFrame.add(treeView); + JScrollPane treePane = new JScrollPane(tree); + treePane.setPreferredSize(new Dimension(250, 450)); + treePane.setBorder(new EmptyBorder(0, 0, 0, 0)); + examplesFrame.getContentPane().add(treePane); examplesFrame.pack(); } // Space for the editor plus a li'l gap diff --git a/build/build.xml b/build/build.xml index ff0f5160e..bbeb38d44 100644 --- a/build/build.xml +++ b/build/build.xml @@ -7,11 +7,24 @@ + value="macosx"> + value="windows"> + value="linux"> + + + + + + + + + + + + @@ -44,6 +57,7 @@ + diff --git a/build/macosx/template.app/Contents/Info.plist b/build/macosx/template.app/Contents/Info.plist index bee5a53c6..9fcce45b1 100755 --- a/build/macosx/template.app/Contents/Info.plist +++ b/build/macosx/template.app/Contents/Info.plist @@ -97,7 +97,7 @@ true apple.awt.showGrowBox - false + true com.apple.smallTabs true apple.awt.Antialiasing diff --git a/java/theme/resize.gif b/java/theme/resize.gif deleted file mode 100644 index 630be1e26..000000000 Binary files a/java/theme/resize.gif and /dev/null differ diff --git a/javascript/theme/resize.gif b/javascript/theme/resize.gif deleted file mode 100644 index 630be1e26..000000000 Binary files a/javascript/theme/resize.gif and /dev/null differ diff --git a/todo.txt b/todo.txt index 7d9096813..80503c17b 100644 --- a/todo.txt +++ b/todo.txt @@ -17,6 +17,8 @@ X make examples window respond to ESC X and double-click events to expand/collapse nodes X examples window placed off-screen when PDE window is maximized X http://code.google.com/p/processing/issues/detail?id=669 +X Resize box on OS X is not present in Examples box +X http://code.google.com/p/processing/issues/detail?id=730 cleanup X how is autoformat doing? good now @@ -37,6 +39,7 @@ o prevent people from setting the font size too small in the editor o how do we figure out what "too small" is? X -> everyone thinks this is funny +required for 0198 release _ automatically insert the 'import processing.opengl' when P3D used _ add support for automatically including OpenGL when asking for P3D _ when using P3D and not realizing that it's really OpenGL... @@ -51,8 +54,6 @@ _ http://code.google.com/p/processing/issues/detail?id=688 _ write quicktime uncompressed (w/o qtjava) _ http://www.randelshofer.ch/blog/2010/10/writing-quicktime-movies-in-pure-java/ -_ Resize box on OS X is not present in Examples box -_ http://code.google.com/p/processing/issues/detail?id=730 pnode: look more closely at json and xml compatibility