pde applet / application -> pdebase, and all the mess that entails..

remove lots of dead code from dbn
This commit is contained in:
benfry
2002-07-02 14:24:16 +00:00
parent bcc68b4ea1
commit 96d4cc98d7
9 changed files with 404 additions and 527 deletions

View File

@@ -41,18 +41,18 @@ public class PdeEditorStatus extends Panel implements ActionListener {
if (bgColor == null) {
bgColor = new Color[3];
bgColor[0] = PdeApplet.getColor("editor.status.notice.bgcolor",
bgColor[0] = PdeBase.getColor("editor.status.notice.bgcolor",
new Color(102, 102, 102));
bgColor[1] = PdeApplet.getColor("editor.status.error.bgcolor",
bgColor[1] = PdeBase.getColor("editor.status.error.bgcolor",
new Color(102, 26, 0));
bgColor[2] = PdeApplet.getColor("editor.status.prompt.bgcolor",
bgColor[2] = PdeBase.getColor("editor.status.prompt.bgcolor",
new Color(204, 153, 0));
fgColor = new Color[3];
fgColor[0] = PdeApplet.getColor("editor.status.notice.fgcolor",
fgColor[0] = PdeBase.getColor("editor.status.notice.fgcolor",
new Color(255, 255, 255));
fgColor[1] = PdeApplet.getColor("editor.status.error.fgcolor",
fgColor[1] = PdeBase.getColor("editor.status.error.fgcolor",
new Color(255, 255, 255));
fgColor[2] = PdeApplet.getColor("editor.status.prompt.fgcolor",
fgColor[2] = PdeBase.getColor("editor.status.prompt.fgcolor",
new Color(0, 0, 0));
}
}
@@ -153,7 +153,7 @@ public class PdeEditorStatus extends Panel implements ActionListener {
Graphics g = offscreen.getGraphics();
if (font == null) {
font = PdeApplet.getFont("editor.status.font",
font = PdeBase.getFont("editor.status.font",
new Font("SansSerif", Font.PLAIN, 10));
//font = new Font("SansSerif", Font.PLAIN, 10);
g.setFont(font);