|
|
import java.awt.event.MouseAdapter; | import java.awt.event.MouseAdapter; |
import java.awt.event.MouseEvent; | import java.awt.event.MouseEvent; |
import javax.swing.JWindow; | import javax.swing.JWindow; |
import javax.swing.UIManager; |
|
import javax.swing.UnsupportedLookAndFeelException; |
|
| |
/** | /** |
* | * |
|
|
public static void main(String args[]) { | public static void main(String args[]) { |
final MainSplash splash = new MainSplash("/icons/splash.jpg"); | final MainSplash splash = new MainSplash("/icons/splash.jpg"); |
| |
/* Set look and feel */ |
SystemDependent.setLookAndFeel(); |
try { |
|
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); |
|
} catch ( ClassNotFoundException e ) { |
|
} catch ( InstantiationException e ) { |
|
} catch (IllegalAccessException e) { |
|
} catch (UnsupportedLookAndFeelException e) { |
|
} |
|
| |
new Jubler(); | new Jubler(); |
SystemDependent.initApplication(); | SystemDependent.initApplication(); |