/* * Copyright (C) 2015 Shashank Tulsyan <shashaank at neembuu.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package neembuu.uploader.versioning; import neembuu.uploader.external.CheckMajorUpdate; import java.awt.Desktop; import java.awt.Toolkit; import java.io.IOException; import java.net.URISyntaxException; import java.util.Date; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.SwingUtilities; import javax.swing.event.HyperlinkEvent; import javax.swing.event.HyperlinkListener; import neembuu.uploader.NeembuuUploader; import neembuu.uploader.utils.NULogger; /** * Will appear to show user some random messages from us. * The frequency of the messages will be very less, probably * only sunday. */ public class Notification extends javax.swing.JFrame { /** Creates new form NotifyUpdate */ public Notification(long notificationdate) { NULogger.getLogger().info("Displaying Update Notification"); //First initialize the components initComponents(); Date noteDate = new Date(notificationdate+24*60*60*1000); setTitle("Notification (This will not appear after "+noteDate+")"); //Set the component relative to the main window setLocationRelativeTo(NeembuuUploader.getInstance()); //Set the labels with the local language htmlPane.addHyperlinkListener(new HyperlinkListener() { @Override public void hyperlinkUpdate(HyperlinkEvent e) { if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) { if (Desktop.isDesktopSupported()) { try { Desktop.getDesktop().browse(e.getURL().toURI()); } catch (IOException e1) { e1.printStackTrace(); } catch (URISyntaxException e1) { e1.printStackTrace(); } } } } }); NULogger.getLogger().log(Level.INFO, "{0}Setting Editor Pane", Notification.class.getName()); //Set the editor pane to display the newfeatures.html page. try { htmlPane.setPage("http://neembuuuploader.sourceforge.net/notification.html"); } catch (IOException ex) { Logger.getLogger(Notification.class.getName()).log(Level.SEVERE, null, ex); } //Pack to fit the size of the new language neatly. pack(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { closeButton = new javax.swing.JButton(); jScrollPane1 = new javax.swing.JScrollPane(); htmlPane = new javax.swing.JEditorPane(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle("Notification"); setIconImage(Toolkit.getDefaultToolkit().getImage((getClass().getResource("/neembuuuploader/resources/Icon.png")))); closeButton.setText("Close"); closeButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { closeButtonActionPerformed(evt); } }); htmlPane.setEditable(false); jScrollPane1.setViewportView(htmlPane); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 633, Short.MAX_VALUE) .addGroup(layout.createSequentialGroup() .addContainerGap(570, Short.MAX_VALUE) .addComponent(closeButton))) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 528, Short.MAX_VALUE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(closeButton) .addContainerGap()) ); pack(); }// </editor-fold>//GEN-END:initComponents /** * Closes the window * @param evt */ private void closeButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_closeButtonActionPerformed dispose(); }//GEN-LAST:event_closeButtonActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton closeButton; private javax.swing.JEditorPane htmlPane; private javax.swing.JScrollPane jScrollPane1; // End of variables declaration//GEN-END:variables }