/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package UI; import java.awt.Color; import java.awt.Dimension; import java.awt.Point; import java.awt.Toolkit; import java.util.logging.Level; import java.util.logging.Logger; import javafx.scene.Parent; /** * * @author Josh */ public final class Loading extends javax.swing.JFrame { /** * Creates new form Loading */ public Loading() { initComponents(); } // public void llenarPB(){ // Interfaz i = new Interfaz(); // int total = i.getDocCant(); // final Thread t; // System.out.println(total); // // t = new Thread(new Runnable() { // @Override // public void run() { // jProgressBar1.setStringPainted(true); // jProgressBar1.setBorderPainted(true); // jProgressBar1.setBackground(Color.CYAN); // int x =1; // while(x <= 100){ // jProgressBar1.setValue(x); // jTextArea1.append("Progreso " + x + "%...\n"); // // try { // Thread.sleep(250); // } catch (InterruptedException ex) { // Logger.getLogger(test.class.getName()).log(Level.SEVERE, null, ex); // } // x++; // } // } // }); // t.start(); // // } /** * 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() { loading = new javax.swing.JLabel(); cargando = new javax.swing.JLabel(); jLabel1 = new javax.swing.JLabel(); reading = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setBackground(new java.awt.Color(255, 51, 51)); setUndecorated(true); setOpacity(0.6F); loading.setBackground(new java.awt.Color(204, 204, 204)); loading.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Images/loading-22.gif"))); // NOI18N cargando.setFont(new java.awt.Font("Arial", 1, 12)); // NOI18N cargando.setText("Cargando..."); jLabel1.setBackground(new java.awt.Color(0, 0, 0)); jLabel1.setFont(new java.awt.Font("Arial", 1, 24)); // NOI18N jLabel1.setText("Por favor,"); reading.setFont(new java.awt.Font("Arial", 1, 14)); // NOI18N jLabel2.setFont(new java.awt.Font("Arial", 1, 18)); // NOI18N jLabel2.setText(" espere..."); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(reading, javax.swing.GroupLayout.PREFERRED_SIZE, 17, javax.swing.GroupLayout.PREFERRED_SIZE) .addGroup(layout.createSequentialGroup() .addGap(213, 213, 213) .addComponent(loading) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(18, 18, 18) .addComponent(cargando)) .addGroup(layout.createSequentialGroup() .addGap(84, 84, 84) .addComponent(jLabel2)) .addGroup(layout.createSequentialGroup() .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jLabel1))))) .addContainerGap(171, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(6, 6, 6) .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jLabel2) .addGap(12, 12, 12) .addComponent(cargando)) .addComponent(loading, javax.swing.GroupLayout.PREFERRED_SIZE, 106, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(reading, javax.swing.GroupLayout.PREFERRED_SIZE, 17, javax.swing.GroupLayout.PREFERRED_SIZE)) ); pack(); }// //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(Loading.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(Loading.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(Loading.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(Loading.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } // /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new Loading().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel cargando; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JLabel loading; private javax.swing.JLabel reading; // End of variables declaration//GEN-END:variables }