/* * Copyright (c) 2015, Netsyms Technologies * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package com.netsyms.symat.padview; import java.awt.BorderLayout; import java.awt.Image; import java.util.ArrayList; import javax.swing.ImageIcon; /** * * @author Skylar */ public class GUI extends javax.swing.JFrame { public static ArrayList logo = new ArrayList<>(); public static WebView web; public static Controls controls; public static final String VERSION = "1.0"; public static final int VERSIONCODE = 1; public static final String SYMAT = "SyMAT"; public static final String PRODUCT = "Pad Viewer"; /** * Creates new form GUI */ public GUI() { initComponents(); setIconImages(logo); web = new WebView(); controls = new Controls(); add(controls, BorderLayout.NORTH); add(web, BorderLayout.CENTER); web.setVisible(true); controls.setVisible(true); } public static void loadPad(String pad) { web.loadURL(PadUtils.PADS_URL + "/p/" + pad, pad); } /** * 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") // //GEN-BEGIN:initComponents private void initComponents() { jPanel1 = new javax.swing.JPanel(); statusLbl = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setTitle("SyMAT Pad Viewer"); setPreferredSize(new java.awt.Dimension(600, 600)); jPanel1.setPreferredSize(new java.awt.Dimension(400, 20)); jPanel1.setLayout(new java.awt.BorderLayout()); statusLbl.setText("Welcome!"); statusLbl.setToolTipText(""); jPanel1.add(statusLbl, java.awt.BorderLayout.CENTER); getContentPane().add(jPanel1, java.awt.BorderLayout.PAGE_END); pack(); setLocationRelativeTo(null); }// //GEN-END:initComponents /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ // /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(GUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(GUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(GUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(GUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } // // Set icon String[] sizes = {"16", "24", "32", "48", "64", "96", "128", "256", "512"}; for (String s : sizes) { logo.add(new ImageIcon( GUI.class.getResource(s + "x" + s + ".png")).getImage()); } /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new SplashScreen().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables public static javax.swing.JPanel jPanel1; public static javax.swing.JLabel statusLbl; // End of variables declaration//GEN-END:variables }