Sunteți pe pagina 1din 4

/*

* 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 Oso_app;

/**
*
* @author USER
*/
public class MenuUtama extends javax.swing.JFrame {

/**
* Creates new form MenuUtama
*/
public MenuUtama() {
initComponents();
}

/**
* 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">

private void initComponents() {

jMenuBar1 = new javax.swing.JMenuBar();


jMenu1 = new javax.swing.JMenu();
mnLogout = new javax.swing.JMenuItem();
mnKeluar = new javax.swing.JMenuItem();
jMenu2 = new javax.swing.JMenu();
mnProduk = new javax.swing.JMenuItem();
mnPegawai = new javax.swing.JMenuItem();
mnSupplier = new javax.swing.JMenuItem();
mnKategori = new javax.swing.JMenuItem();
mnPesanan = new javax.swing.JMenu();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

jMenu1.setText("File");

mnLogout.setText("LogOut");
mnLogout.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnLogoutActionPerformed(evt);
}
});
jMenu1.add(mnLogout);

mnKeluar.setText("Keluar");
mnKeluar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnKeluarActionPerformed(evt);
}
});
jMenu1.add(mnKeluar);

jMenuBar1.add(jMenu1);

jMenu2.setText("Master");

mnProduk.setText("Produk");
mnProduk.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnProdukActionPerformed(evt);
}
});
jMenu2.add(mnProduk);

mnPegawai.setText("Pegawai");
mnPegawai.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnPegawaiActionPerformed(evt);
}
});
jMenu2.add(mnPegawai);

mnSupplier.setText("Supplier");
jMenu2.add(mnSupplier);

mnKategori.setText("Kategori");
mnKategori.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnKategoriActionPerformed(evt);
}
});
jMenu2.add(mnKategori);

jMenuBar1.add(jMenu2);

mnPesanan.setText("Pesanan");
mnPesanan.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnPesananActionPerformed(evt);
}
});
jMenuBar1.add(mnPesanan);

setJMenuBar(jMenuBar1);

javax.swing.GroupLayout layout = new


javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 279, Short.MAX_VALUE)
);

pack();
}// </editor-fold>
private void mnLogoutActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


this.dispose();
From_login login = new From_login();
login.setLocationRelativeTo(null);
login.setVisible(true);
}

private void mnKategoriActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


Form_kategori kategori = new Form_kategori();
kategori.setLocationRelativeTo(null);
kategori.setVisible(true);
}

private void mnKeluarActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


System.exit(0);
}

private void mnProdukActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


From_produk produk = new From_produk();
produk.setLocationRelativeTo(null);
produk.setVisible(true);
}

private void mnPegawaiActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


Form_Pegawai pegawai = new Form_Pegawai();
pegawai.setLocationRelativeTo(null);
pegawai.setVisible(true);
}

private void mnPesananActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


Form_Pesanan pesanan = new Form_Pesanan();
pesanan.setLocationRelativeTo(null);
pesanan.setVisible(true);
}

/**
* @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(MenuUtama.class.getName()).log(java.util.logging
.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {

java.util.logging.Logger.getLogger(MenuUtama.class.getName()).log(java.util.logging
.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {

java.util.logging.Logger.getLogger(MenuUtama.class.getName()).log(java.util.logging
.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {

java.util.logging.Logger.getLogger(MenuUtama.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 MenuUtama().setVisible(true);
}
});
}

// Variables declaration - do not modify


private javax.swing.JMenu jMenu1;
private javax.swing.JMenu jMenu2;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JMenuItem mnKategori;
private javax.swing.JMenuItem mnKeluar;
private javax.swing.JMenuItem mnLogout;
private javax.swing.JMenuItem mnPegawai;
private javax.swing.JMenu mnPesanan;
private javax.swing.JMenuItem mnProduk;
private javax.swing.JMenuItem mnSupplier;
// End of variables declaration
}

S-ar putea să vă placă și