2017-01-05 19:20:44 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016, 7u83 <7u83@mail.ru>
|
|
|
|
* 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 gui;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author 7u83 <7u83@mail.ru>
|
|
|
|
*/
|
|
|
|
public class ControlPanel extends javax.swing.JPanel {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates new form ControlPanel
|
|
|
|
*/
|
|
|
|
public ControlPanel() {
|
|
|
|
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">//GEN-BEGIN:initComponents
|
|
|
|
private void initComponents() {
|
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
jButton1 = new javax.swing.JButton();
|
|
|
|
jButton2 = new javax.swing.JButton();
|
|
|
|
jTextField1 = new javax.swing.JTextField();
|
|
|
|
jLabel1 = new javax.swing.JLabel();
|
|
|
|
jLabel2 = new javax.swing.JLabel();
|
|
|
|
jTextField2 = new javax.swing.JTextField();
|
|
|
|
|
|
|
|
jButton1.setText("Byu");
|
|
|
|
jButton1.addActionListener(new java.awt.event.ActionListener() {
|
|
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
|
jButton1ActionPerformed(evt);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
jButton2.setText("Sell");
|
|
|
|
|
|
|
|
jTextField1.setText("325");
|
|
|
|
jTextField1.addActionListener(new java.awt.event.ActionListener() {
|
2017-01-05 19:20:44 +01:00
|
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
2017-01-08 13:16:00 +01:00
|
|
|
jTextField1ActionPerformed(evt);
|
2017-01-05 19:20:44 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
jLabel1.setText("Shares:");
|
2017-01-05 19:20:44 +01:00
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
jLabel2.setText("Limit:");
|
2017-01-05 19:20:44 +01:00
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
jTextField2.setText("127.00");
|
|
|
|
jTextField2.addActionListener(new java.awt.event.ActionListener() {
|
2017-01-05 19:20:44 +01:00
|
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
2017-01-08 13:16:00 +01:00
|
|
|
jTextField2ActionPerformed(evt);
|
2017-01-05 19:20:44 +01:00
|
|
|
}
|
|
|
|
});
|
2017-01-08 13:16:00 +01:00
|
|
|
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
|
|
this.setLayout(layout);
|
|
|
|
layout.setHorizontalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
|
|
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 50, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addComponent(jTextField2)
|
|
|
|
.addComponent(jTextField1)))
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addContainerGap(37, Short.MAX_VALUE)
|
|
|
|
.addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE)))
|
|
|
|
.addContainerGap())
|
|
|
|
);
|
|
|
|
layout.setVerticalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addContainerGap()
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
|
|
|
.addComponent(jTextField1)
|
|
|
|
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
|
|
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, 27, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
|
|
.addComponent(jButton1)
|
|
|
|
.addComponent(jButton2))
|
|
|
|
.addContainerGap(358, Short.MAX_VALUE))
|
|
|
|
);
|
2017-01-05 19:20:44 +01:00
|
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
|
|
|
|
// TODO add your handling code here:
|
|
|
|
}//GEN-LAST:event_jButton1ActionPerformed
|
|
|
|
|
|
|
|
private void jTextField2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField2ActionPerformed
|
|
|
|
// TODO add your handling code here:
|
|
|
|
}//GEN-LAST:event_jTextField2ActionPerformed
|
2017-01-05 19:20:44 +01:00
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField1ActionPerformed
|
|
|
|
// TODO add your handling code here:
|
|
|
|
}//GEN-LAST:event_jTextField1ActionPerformed
|
2017-01-05 19:20:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
2017-01-08 13:16:00 +01:00
|
|
|
private javax.swing.JButton jButton1;
|
|
|
|
private javax.swing.JButton jButton2;
|
|
|
|
private javax.swing.JLabel jLabel1;
|
|
|
|
private javax.swing.JLabel jLabel2;
|
|
|
|
private javax.swing.JTextField jTextField1;
|
|
|
|
private javax.swing.JTextField jTextField2;
|
2017-01-05 19:20:44 +01:00
|
|
|
// End of variables declaration//GEN-END:variables
|
|
|
|
}
|