/** Must be called manually to init the name and the icon of the action. */ protected final void init() { putValue(NAME, getName()); String icon = getIcon(); if (icon != null) putValue(SMALL_ICON, JDTheme.II(getIcon(), 16, 16)); }
public AboutDialog() { super(DummyFrame.getDialogParent()); JLabel lbl = new JLabel("JDownloader"); lbl.setFont(lbl.getFont().deriveFont(lbl.getFont().getSize() * 2.0f)); String branch = SubConfiguration.getConfig("WEBUPDATE").getStringProperty(WebUpdater.BRANCHINUSE, null); final String version; if (branch == null) { version = "JDownloader Build " + JDUtilities.getRevision(); } else { version = "JDownloader -" + branch + "- Build " + JDUtilities.getRevision(); } JPanel links = new JPanel(new MigLayout("ins 0", "[]push[]push[]push[]")); try { JButton btn = Factory.createButton( JDL.L(JDL_PREFIX + "license", "Show license"), JDTheme.II("gui.images.premium", 16, 16), new ActionListener() { public void actionPerformed(ActionEvent e) { String license = JDIO.readFileToString( JDUtilities.getResourceFile("licenses/jdownloader.license")); UserIO.getInstance() .requestMessageDialog( UserIO.STYLE_LARGE | UserIO.NO_ICON | UserIO.NO_COUNTDOWN, JDL.L(JDL_PREFIX + "license.title", "JDownloader License"), license); } }); btn.setBorder(null); links.add(btn); links.add( new JLink( JDL.L(JDL_PREFIX + "homepage", "Homepage"), JDTheme.II("gui.images.config.host", 16, 16), new URL("http://www.jdownloader.org/home?lng=en"))); links.add( new JLink( JDL.L(JDL_PREFIX + "forum", "Support board"), JDTheme.II("gui.images.list", 16, 16), new URL("http://board.jdownloader.org"))); links.add( new JLink( JDL.L(JDL_PREFIX + "contributers", "Contributers"), JDTheme.II("gui.images.accounts", 16, 16), new URL("http://jdownloader.org/knowledge/wiki/contributers"))); } catch (MalformedURLException e1) { e1.printStackTrace(); } JButton btn = Factory.createButton( JDL.L(JDL_PREFIX + "copy", "Copy"), JDTheme.II("gui.icons.copy", 16, 16), new ActionListener() { public void actionPerformed(ActionEvent e) { StringBuilder sb = new StringBuilder(); sb.append(version).append("\r\n"); sb.append("Java Vendor: ").append(System.getProperty("java.vendor")).append("\r\n"); sb.append("Java Version: ").append(System.getProperty("java.version")); ClipboardHandler.getClipboard().copyTextToClipboard(sb.toString()); } }); btn.setBorder(null); btn.setVerticalTextPosition(JButton.BOTTOM); btn.setHorizontalTextPosition(JButton.CENTER); this.setLayout(new MigLayout("ins 10, wrap 3", "[]15[]push[right]")); this.add(new JLabel(JDImage.getImageIcon("logo/jd_logo_128_128")), "aligny center, spany 6"); this.add(lbl, "spanx"); this.add(new JLabel("© AppWork UG (haftungsbeschränkt) 2007-2010"), "spanx"); this.add(new JLabel(version), "gaptop 10"); this.add(btn, "aligny center, spany 3"); this.add(new JLabel("JRE Vendor: " + System.getProperty("java.vendor"))); this.add(new JLabel("JRE Version: " + System.getProperty("java.version"))); this.add(new JLabel("Synthetica License Registration Number (#289416475)"), "gaptop 10, spanx"); this.add(links, "gaptop 15, growx, pushx, spanx"); this.pack(); this.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE); this.setTitle(JDL.L(JDL_PREFIX + "title", "About JDownloader")); this.setResizable(false); this.setLocation(Screen.getCenterOfComponent(DummyFrame.getDialogParent(), this)); /* * Fixes Always-on-Top-Bug in windows. Bugdesc: found in svn */ DummyFrame.getDialogParent().setAlwaysOnTop(true); DummyFrame.getDialogParent().setAlwaysOnTop(false); this.setVisible(true); }