OS discrimination
This commit is contained in:
parent
ae94b52a00
commit
7f955daf4b
BIN
TileMolester.jar
BIN
TileMolester.jar
Binary file not shown.
|
@ -6,8 +6,9 @@
|
||||||
<property key="viewToolBar" value="true"/>
|
<property key="viewToolBar" value="true"/>
|
||||||
<property key="maxRecentFiles" value="10"/>
|
<property key="maxRecentFiles" value="10"/>
|
||||||
<property key="recentFile" value="/home/ivan/Escritorio/Otros/Apps/TM200"/>
|
<property key="recentFile" value="/home/ivan/Escritorio/Otros/Apps/TM200"/>
|
||||||
<property key="lastPath" value=""/>
|
<property key="recentFile" value="/home/ivan/Escritorio/Otros/DK94/DK94.gb"/>
|
||||||
<property key="MenuBG" value="#151b1c"/>
|
<property key="lastPath" value="/home/ivan/Escritorio/Otros/DK94"/>
|
||||||
<property key="WindowBG" value="#222b2e"/>
|
<property key="MenuBG" value="#ff0000"/>
|
||||||
<property key="AsideBG" value="#2d383b"/>
|
<property key="WindowBG" value="#0000ff"/>
|
||||||
|
<property key="AsideBG" value="#00ff00"/>
|
||||||
</settings>
|
</settings>
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
|
|
||||||
import tm.ui.TMUI;
|
import tm.ui.TMUI;
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.SystemColor;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,15 +34,14 @@ import tm.ui.TMUI;
|
||||||
|
|
||||||
public class TileMolester {
|
public class TileMolester {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
private static String OS = System.getProperty("os.name").toLowerCase();
|
boolean isLinux = TMUI.isLinux;
|
||||||
public static Boolean isLinux = OS.indexOf("nix") >= 0 || OS.indexOf("nux") >= 0 || OS.indexOf("aix") > 0;
|
boolean isWindows = TMUI.isWindows;
|
||||||
public static Boolean isWindows = OS.indexOf("win") >= 0;
|
|
||||||
|
|
||||||
public TileMolester() {
|
public TileMolester() {
|
||||||
try {
|
try {
|
||||||
|
@ -50,16 +50,49 @@ public class TileMolester {
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
new TMUI();
|
new TMUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Starts up the program.
|
* Starts up the program.
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
Color[] sysColor = new Color[]{
|
||||||
|
SystemColor.activeCaption,
|
||||||
|
SystemColor.activeCaptionBorder,
|
||||||
|
SystemColor.activeCaptionText,
|
||||||
|
SystemColor.control,
|
||||||
|
SystemColor.controlDkShadow,
|
||||||
|
SystemColor.controlHighlight,
|
||||||
|
SystemColor.controlLtHighlight,
|
||||||
|
SystemColor.controlShadow,
|
||||||
|
SystemColor.controlText,
|
||||||
|
SystemColor.desktop,
|
||||||
|
SystemColor.inactiveCaption,
|
||||||
|
SystemColor.inactiveCaptionBorder,
|
||||||
|
SystemColor.inactiveCaptionText,
|
||||||
|
SystemColor.info,
|
||||||
|
SystemColor.infoText,
|
||||||
|
SystemColor.menu,
|
||||||
|
SystemColor.menuText,
|
||||||
|
SystemColor.scrollbar,
|
||||||
|
SystemColor.text,
|
||||||
|
SystemColor.textHighlight,
|
||||||
|
SystemColor.textHighlightText,
|
||||||
|
SystemColor.textInactiveText,
|
||||||
|
SystemColor.textText,
|
||||||
|
SystemColor.window,
|
||||||
|
SystemColor.windowBorder,
|
||||||
|
SystemColor.windowText};
|
||||||
|
|
||||||
|
for(Color c: sysColor){
|
||||||
|
System.out.println(c);
|
||||||
|
}
|
||||||
|
|
||||||
new TileMolester();
|
new TileMolester();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.awt.event.*;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import javax.swing.border.*;
|
import javax.swing.border.*;
|
||||||
import javax.swing.filechooser.FileFilter;
|
import javax.swing.filechooser.FileFilter;
|
||||||
|
import javax.swing.plaf.ButtonUI;
|
||||||
|
import javax.swing.plaf.ComponentUI;
|
||||||
|
import javax.swing.plaf.ToolBarUI;
|
||||||
|
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
import java.util.Hashtable;
|
import java.util.Hashtable;
|
||||||
|
@ -59,6 +63,10 @@ import org.xml.sax.SAXParseException;
|
||||||
|
|
||||||
public class TMUI extends JFrame {
|
public class TMUI extends JFrame {
|
||||||
|
|
||||||
|
private static String OS = System.getProperty("os.name").toLowerCase();
|
||||||
|
public static boolean isLinux = OS.indexOf("nix") >= 0 || OS.indexOf("nux") >= 0 || OS.indexOf("aix") > 0;
|
||||||
|
public static boolean isWindows = OS.indexOf("win") >= 0;
|
||||||
|
|
||||||
// tool types
|
// tool types
|
||||||
public static final int SELECT_TOOL = 1;
|
public static final int SELECT_TOOL = 1;
|
||||||
public static final int ZOOM_TOOL = 2;
|
public static final int ZOOM_TOOL = 2;
|
||||||
|
@ -282,9 +290,12 @@ public class TMUI extends JFrame {
|
||||||
private boolean viewToolBar=true;
|
private boolean viewToolBar=true;
|
||||||
|
|
||||||
private String lastPath = "";
|
private String lastPath = "";
|
||||||
public static Color MenuBG = Color.decode("#151b1c");
|
//public static Color MenuBG = Color.decode("#151b1c");
|
||||||
public static Color WindowBG = Color.decode("#222b2e");
|
//public static Color WindowBG = Color.decode("#222b2e");
|
||||||
public static Color AsideBG = Color.decode("#2d383b");
|
//public static Color AsideBG = Color.decode("#2d383b");
|
||||||
|
public static Color MenuBG = SystemColor.menu;
|
||||||
|
public static Color WindowBG = SystemColor.window;
|
||||||
|
public static Color AsideBG = SystemColor.desktop;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -773,12 +784,67 @@ public class TMUI extends JFrame {
|
||||||
else if (key.equals("AsideBG")) {
|
else if (key.equals("AsideBG")) {
|
||||||
AsideBG = Color.decode(value);
|
AsideBG = Color.decode(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Begin long bunch of code for setting up menus, panels etc...
|
// Begin long bunch of code for setting up menus, panels etc...
|
||||||
|
|
||||||
|
static class CButtonUI extends ButtonUI {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* private static final CButtonUI buttonUI = new CButtonUI();
|
||||||
|
*
|
||||||
|
* ModifButtonUI() { }
|
||||||
|
*/
|
||||||
|
|
||||||
|
public static ComponentUI createUI(JComponent c) {
|
||||||
|
return new CButtonUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void paint(Graphics g, JComponent c) {
|
||||||
|
final Color color1 = new Color(230, 255, 255, 0);
|
||||||
|
final Color color2 = new Color(255, 230, 255, 64);
|
||||||
|
final Color alphaColor = new Color(200, 200, 230, 64);
|
||||||
|
final Color color3 = new Color(alphaColor.getRed(), alphaColor.getGreen(), alphaColor.getBlue(), 0);
|
||||||
|
final Color color4 = new Color(alphaColor.getRed(), alphaColor.getGreen(), alphaColor.getBlue(), 64);
|
||||||
|
super.paint(g, c);
|
||||||
|
Graphics2D g2D = (Graphics2D) g;
|
||||||
|
GradientPaint gradient1 = new GradientPaint(0.0F, (float) c.getHeight() / (float) 2, color1, 0.0F, 0.0F,
|
||||||
|
color2);
|
||||||
|
Rectangle rec1 = new Rectangle(0, 0, c.getWidth(), c.getHeight() / 2);
|
||||||
|
g2D.setPaint(gradient1);
|
||||||
|
g2D.fill(rec1);
|
||||||
|
GradientPaint gradient2 = new GradientPaint(0.0F, (float) c.getHeight() / (float) 2, color3, 0.0F,
|
||||||
|
c.getHeight(), color4);
|
||||||
|
Rectangle rec2 = new Rectangle(0, c.getHeight() / 2, c.getWidth(), c.getHeight());
|
||||||
|
g2D.setPaint(gradient2);
|
||||||
|
g2D.fill(rec2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
@Override
|
||||||
|
public void paintButtonPressed(Graphics g, AbstractButton b) {
|
||||||
|
paintText(g, b, b.getBounds(), b.getText());
|
||||||
|
g.setColor(Color.red.brighter());
|
||||||
|
g.fillRect(0, 0, b.getSize().width, b.getSize().height);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
public void paintBorder(Graphics g) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
@Override
|
||||||
|
protected void paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect,
|
||||||
|
Rectangle iconRect) {
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Sets up the toolbar.
|
* Sets up the toolbar.
|
||||||
|
@ -787,6 +853,10 @@ public class TMUI extends JFrame {
|
||||||
|
|
||||||
private void initToolBar() {
|
private void initToolBar() {
|
||||||
// New
|
// New
|
||||||
|
//newButton.setUI(new CButtonUI());
|
||||||
|
//newButton.setContentAreaFilled(false);
|
||||||
|
newButton.repaint();
|
||||||
|
|
||||||
newButton.setToolTipText(newMenuItem.getText());
|
newButton.setToolTipText(newMenuItem.getText());
|
||||||
newButton.setFocusable(false);
|
newButton.setFocusable(false);
|
||||||
newButton.addActionListener(
|
newButton.addActionListener(
|
||||||
|
@ -3806,13 +3876,16 @@ public void doAboutCommand()
|
||||||
**/
|
**/
|
||||||
|
|
||||||
private class ToolButton extends JButton {
|
private class ToolButton extends JButton {
|
||||||
|
|
||||||
Insets insets=null;
|
Insets insets=null;
|
||||||
|
|
||||||
public ToolButton(String text) {
|
public ToolButton(String text) {
|
||||||
super(text);
|
super(text);
|
||||||
insets = new Insets(2,2,2,2);
|
insets = new Insets(2,2,2,2);
|
||||||
}
|
}
|
||||||
public ToolButton(ImageIcon icon) {
|
public ToolButton(ImageIcon icon) {
|
||||||
super(icon);
|
super(icon);
|
||||||
|
setBackground(MenuBG);
|
||||||
insets = new Insets(2,2,2,2);
|
insets = new Insets(2,2,2,2);
|
||||||
}
|
}
|
||||||
public Insets getInsets() {
|
public Insets getInsets() {
|
||||||
|
@ -3835,6 +3908,7 @@ public void doAboutCommand()
|
||||||
}
|
}
|
||||||
public ToolToggleButton(ImageIcon icon) {
|
public ToolToggleButton(ImageIcon icon) {
|
||||||
super(icon);
|
super(icon);
|
||||||
|
setBackground(Color.MAGENTA);
|
||||||
insets = new Insets(2,2,2,2);
|
insets = new Insets(2,2,2,2);
|
||||||
}
|
}
|
||||||
public Insets getInsets() {
|
public Insets getInsets() {
|
||||||
|
|
|
@ -46,6 +46,8 @@ public class TMView extends JInternalFrame implements ChangeListener {
|
||||||
Color MenuBG = TMUI.MenuBG;
|
Color MenuBG = TMUI.MenuBG;
|
||||||
Color WindowBG = TMUI.WindowBG;
|
Color WindowBG = TMUI.WindowBG;
|
||||||
Color AsideBG = TMUI.AsideBG;
|
Color AsideBG = TMUI.AsideBG;
|
||||||
|
boolean isLinux = TMUI.isLinux;
|
||||||
|
boolean isWindows = TMUI.isWindows;
|
||||||
|
|
||||||
private static int frameCount = 0;
|
private static int frameCount = 0;
|
||||||
private JPanel contentPane = new JPanel();
|
private JPanel contentPane = new JPanel();
|
||||||
|
@ -129,10 +131,14 @@ public class TMView extends JInternalFrame implements ChangeListener {
|
||||||
slider.setInverted(true);
|
slider.setInverted(true);
|
||||||
contentPane.add(slider);
|
contentPane.add(slider);
|
||||||
slider.setForeground(AsideBG);
|
slider.setForeground(AsideBG);
|
||||||
//slider.setLocation(0, 0);
|
|
||||||
//slider.setSize(24, 384);
|
if(isLinux){
|
||||||
slider.setLocation(4, -14);
|
slider.setLocation(4, -14);
|
||||||
slider.setSize(32, 424);
|
slider.setSize(32, 424);
|
||||||
|
}else{
|
||||||
|
slider.setLocation(0, 0);
|
||||||
|
slider.setSize(24, 384);
|
||||||
|
}
|
||||||
slider.addChangeListener(this);
|
slider.addChangeListener(this);
|
||||||
|
|
||||||
// the scrollpane
|
// the scrollpane
|
||||||
|
|
Loading…
Reference in a new issue