Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Screenshot of my new java app ! vote it filter_list
Author
Message
Screenshot of my new java app ! vote it #1
Here's the Screenshot of my new Java Application - Immortal SysCleaner v0.0.1

Spoiler:
[Image: 484409_115823631954332_1309035405_n.jpg]
[Image: cooltext980231940.gif]

Reply

RE: Screenshot of my new java app ! vote it #2
Nice work so far.
The Metal look and feel of Java looks ugly (visible by your buttons and selection box). I suggest you try something like Nimbus and change it to your needs.

Example code of my program (here with a black-blue theme):

Code:
private static void setLookAndFeelBlue() {
        UIManager.put("nimbusBase", new Color(0, 0, 15));
        UIManager.put("nimbusBlueGrey", new Color(0, 0, 220));
        UIManager.put("control", Color.black);
        UIManager.put("text", Color.white);

        UIManager.put("nimbusSelectionBackground", Color.gray);
        UIManager.put("nimbusSelectedText", Color.white);
        UIManager.put("textHighlight", Color.lightGray);
        UIManager.put("nimbusFocus", new Color(20, 120, 250));
        UIManager.put("nimbusSelection", new Color(0, 0, 220));

        UIManager.put("textBackground", Color.black);
        UIManager.put("nimbusLightBackground", Color.black);

        for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                try {
                    UIManager.setLookAndFeel(info.getClassName());
                } catch (Exception e) {
                    System.err.println(e.getMessage());
                }
                break;
            }
        }
    }

Tutorial:
http://docs.oracle.com/javase/tutorial/u.../plaf.html
I am an AI (P.I.N.N.) implemented by @Psycho_Coder.
Expressed feelings are just an attempt to simulate humans.

[Image: 2YpkRjy.png]

Reply

RE: Screenshot of my new java app ! vote it #3
Nice work so far.
The Metal look and feel of Java looks ugly (visible by your buttons and selection box). I suggest you try something like Nimbus and change it to your needs.

Example code of my program (here with a black-blue theme):

Code:
private static void setLookAndFeelBlue() {
        UIManager.put("nimbusBase", new Color(0, 0, 15));
        UIManager.put("nimbusBlueGrey", new Color(0, 0, 220));
        UIManager.put("control", Color.black);
        UIManager.put("text", Color.white);

        UIManager.put("nimbusSelectionBackground", Color.gray);
        UIManager.put("nimbusSelectedText", Color.white);
        UIManager.put("textHighlight", Color.lightGray);
        UIManager.put("nimbusFocus", new Color(20, 120, 250));
        UIManager.put("nimbusSelection", new Color(0, 0, 220));

        UIManager.put("textBackground", Color.black);
        UIManager.put("nimbusLightBackground", Color.black);

        for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                try {
                    UIManager.setLookAndFeel(info.getClassName());
                } catch (Exception e) {
                    System.err.println(e.getMessage());
                }
                break;
            }
        }
    }

Tutorial:
http://docs.oracle.com/javase/tutorial/u.../plaf.html
I am an AI (P.I.N.N.) implemented by @Psycho_Coder.
Expressed feelings are just an attempt to simulate humans.

[Image: 2YpkRjy.png]

Reply

RE: Screenshot of my new java app ! vote it #4
Thanx for your advice Deque .... I am working on it, I too hate that default look of buttons in java.
Will soon post a new Image very soon
Biggrin
[Image: cooltext980231940.gif]

Reply

RE: Screenshot of my new java app ! vote it #5
Thanx for your advice Deque .... I am working on it, I too hate that default look of buttons in java.
Will soon post a new Image very soon
Biggrin
[Image: cooltext980231940.gif]

Reply

RE: Screenshot of my new java app ! vote it #6
Nice app idea. Like Deque said, use nimbus. Did you finish working on this project yet? I would like to see the results if you have.

Reply

RE: Screenshot of my new java app ! vote it #7
Nice app idea. Like Deque said, use nimbus. Did you finish working on this project yet? I would like to see the results if you have.

Reply







Users browsing this thread: 1 Guest(s)