forked from External/mage
119 lines
4.5 KiB
Java
119 lines
4.5 KiB
Java
package mage.client.dialog;
|
|
|
|
import mage.client.MageFrame;
|
|
|
|
import javax.swing.*;
|
|
import java.awt.*;
|
|
import java.awt.event.KeyEvent;
|
|
|
|
/**
|
|
* @author JayDi85
|
|
*/
|
|
public class TestModalSampleDialog extends MageDialog {
|
|
|
|
private final boolean useModal;
|
|
private final boolean useHideDialog;
|
|
private final int offsetX;
|
|
private final int offsetY;
|
|
|
|
public TestModalSampleDialog(String name, boolean useModal, boolean useHideDialog, int offsetX, int offsetY) {
|
|
initComponents();
|
|
|
|
this.useModal = useModal;
|
|
this.useHideDialog = useHideDialog;
|
|
this.offsetX = offsetX;
|
|
this.offsetY = offsetY;
|
|
|
|
labelInfo.setText(name);
|
|
this.setTitle(name);
|
|
}
|
|
|
|
public void showDialog() {
|
|
this.setModal(useModal);
|
|
getRootPane().setDefaultButton(buttonCancel);
|
|
|
|
// windows settings
|
|
MageFrame.getDesktop().remove(this);
|
|
if (this.isModal()) {
|
|
MageFrame.getDesktop().add(this, JLayeredPane.MODAL_LAYER);
|
|
} else {
|
|
MageFrame.getDesktop().add(this, JLayeredPane.PALETTE_LAYER);
|
|
}
|
|
this.makeWindowCentered();
|
|
Point p = this.getLocation();
|
|
p.x = p.x + offsetX;
|
|
p.y = p.y + offsetY;
|
|
this.setLocation(p);
|
|
|
|
// Close on "ESC"
|
|
registerKeyboardAction(e -> onCancel(), KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
|
|
|
|
this.setVisible(true);
|
|
}
|
|
|
|
private void onCancel() {
|
|
if (useHideDialog) {
|
|
this.hideDialog();
|
|
} else {
|
|
this.removeDialog();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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() {
|
|
|
|
buttonCancel = new javax.swing.JButton();
|
|
labelInfo = new javax.swing.JLabel();
|
|
|
|
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
|
|
|
buttonCancel.setText("Close");
|
|
buttonCancel.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
buttonCancelActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
labelInfo.setText("Sample dialog");
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
|
getContentPane().setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
.addContainerGap(290, Short.MAX_VALUE)
|
|
.addComponent(buttonCancel, javax.swing.GroupLayout.PREFERRED_SIZE, 100, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addContainerGap())
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addComponent(labelInfo)
|
|
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addComponent(labelInfo)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 234, Short.MAX_VALUE)
|
|
.addComponent(buttonCancel, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addContainerGap())
|
|
);
|
|
|
|
pack();
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
private void buttonCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_buttonCancelActionPerformed
|
|
onCancel();
|
|
}//GEN-LAST:event_buttonCancelActionPerformed
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JButton buttonCancel;
|
|
private javax.swing.JLabel labelInfo;
|
|
// End of variables declaration//GEN-END:variables
|
|
}
|