Java tutorial
/* * 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 Interfaz; import Utils.TestWebServer; import static Utils.TestWebServer.getString; import com.squareup.okhttp.FormEncodingBuilder; import com.squareup.okhttp.RequestBody; import javax.swing.ImageIcon; import javax.swing.JLabel; import javax.swing.JLayeredPane; import javax.swing.JPanel; /** * * @author ana_j */ public class MenuPila extends javax.swing.JFrame { /** * Creates new form MenuPila */ TestWebServer server = new TestWebServer(); public MenuPila() { initComponents(); /** * ******** Colocar una imagen de fondo ********* */ ((JPanel) getContentPane()).setOpaque(false); ImageIcon uno = new ImageIcon(this.getClass().getResource("/Imagenes/pila.jpg")); JLabel fondo = new JLabel(); fondo.setIcon(uno); getLayeredPane().add(fondo, JLayeredPane.FRAME_CONTENT_LAYER); fondo.setBounds(0, 0, uno.getIconWidth(), uno.getIconHeight()); } /** * 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() { jScrollPane1 = new javax.swing.JScrollPane(); txtSalidaPila = new javax.swing.JTextPane(); btnBack = new javax.swing.JButton(); jLabel1 = new javax.swing.JLabel(); txtNumPila = new javax.swing.JTextField(); btnPush = new javax.swing.JButton(); btnPop = new javax.swing.JButton(); btnGraficarPila = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jScrollPane1.setBackground(new java.awt.Color(0, 0, 0)); jScrollPane1.setForeground(new java.awt.Color(0, 0, 102)); txtSalidaPila.setBackground(new java.awt.Color(0, 0, 0)); txtSalidaPila.setFont(new java.awt.Font("Consolas", 0, 14)); // NOI18N txtSalidaPila.setForeground(new java.awt.Color(0, 51, 153)); jScrollPane1.setViewportView(txtSalidaPila); btnBack.setBackground(new java.awt.Color(255, 204, 204)); btnBack.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/left_arrow.png"))); // NOI18N btnBack.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnBackActionPerformed(evt); } }); jLabel1.setFont(new java.awt.Font("Century Gothic", 1, 16)); // NOI18N jLabel1.setForeground(new java.awt.Color(0, 0, 153)); jLabel1.setText("INGRESE UN DATO NUMRICO"); txtNumPila.setBackground(new java.awt.Color(204, 204, 255)); txtNumPila.setFont(new java.awt.Font("Century Gothic", 0, 14)); // NOI18N btnPush.setFont(new java.awt.Font("Century Gothic", 1, 18)); // NOI18N btnPush.setText("PUSH"); btnPush.setPreferredSize(new java.awt.Dimension(89, 31)); btnPush.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnPushActionPerformed(evt); } }); btnPop.setFont(new java.awt.Font("Century Gothic", 1, 18)); // NOI18N btnPop.setText("POP"); btnPop.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnPopActionPerformed(evt); } }); btnGraficarPila.setBackground(new java.awt.Color(153, 255, 153)); btnGraficarPila.setFont(new java.awt.Font("Century Gothic", 1, 14)); // NOI18N btnGraficarPila.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/graph2.png"))); // NOI18N btnGraficarPila.setText("GRAFICAR"); btnGraficarPila.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnGraficarPilaActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup().addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jScrollPane1) .addGroup(layout.createSequentialGroup() .addComponent(btnBack, javax.swing.GroupLayout.PREFERRED_SIZE, 38, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(btnGraficarPila))) .addContainerGap()) .addGroup(layout.createSequentialGroup().addGap(97, 97, 97).addGroup(layout .createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(txtNumPila, javax.swing.GroupLayout.PREFERRED_SIZE, 221, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGroup(layout.createSequentialGroup().addGap(66, 66, 66) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(btnPop, javax.swing.GroupLayout.PREFERRED_SIZE, 89, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(btnPush, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))) .addContainerGap(98, Short.MAX_VALUE))); layout.setVerticalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addGroup( javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup().addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(btnBack).addComponent(btnGraficarPila)) .addGap(12, 12, 12).addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(txtNumPila, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(27, 27, 27) .addComponent(btnPush, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18).addComponent(btnPop) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 55, Short.MAX_VALUE) .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 124, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap())); pack(); setLocationRelativeTo(null); }// </editor-fold>//GEN-END:initComponents private void btnBackActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnBackActionPerformed // TODO add your handling code here: MenuPrincipal menu = new MenuPrincipal(); menu.setVisible(true); this.setVisible(false); }//GEN-LAST:event_btnBackActionPerformed private void btnGraficarPilaActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnGraficarPilaActionPerformed // TODO add your handling code here: String palabra = ""; RequestBody formBody = new FormEncodingBuilder().add("dato", palabra).build(); String r = getString("graficarPila", formBody); System.out.println(r); txtSalidaPila.setText(r); }//GEN-LAST:event_btnGraficarPilaActionPerformed private void btnPushActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnPushActionPerformed // TODO add your handling code here: String palabra = txtNumPila.getText(); RequestBody formBody = new FormEncodingBuilder().add("dato", palabra).build(); String r = getString("pushPila", formBody); System.out.println(r); txtSalidaPila.setText(r); this.txtNumPila.setText(""); }//GEN-LAST:event_btnPushActionPerformed private void btnPopActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnPopActionPerformed // TODO add your handling code here: String palabra = ""; RequestBody formBody = new FormEncodingBuilder().add("dato", palabra).build(); String r = getString("popPila", formBody); System.out.println(r); txtSalidaPila.setText(r); }//GEN-LAST:event_btnPopActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* 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(MenuPila.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(MenuPila.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(MenuPila.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(MenuPila.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new MenuPila().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton btnBack; private javax.swing.JButton btnGraficarPila; private javax.swing.JButton btnPop; private javax.swing.JButton btnPush; private javax.swing.JLabel jLabel1; private javax.swing.JScrollPane jScrollPane1; private javax.swing.JTextField txtNumPila; private javax.swing.JTextPane txtSalidaPila; // End of variables declaration//GEN-END:variables }