Question

I'm writting a program to encript data. It has a JTextArea to edit text, but I want to choose if I save it encripted or in plain text. For this I created a JDialog that appears when the save button is clicked. It contains two radio buttons: one to save the data encripted and the other to save in plain text. In the middle of them there is a JPasswordField requesting the key of the encription.

My question is if there is a simple way of making the TextField not useable and half transparent, when the option to save encripted is not selected. Or, if there isn't a simple way of doing it, a way to hide the TextArea. I tryed using a ChangeListener on the radio button but it isn't working. Here is my code:

import javax.swing.BoxLayout;
import javax.swing.ButtonGroup;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JRadioButton;
import javax.swing.SwingUtilities;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class StackOverflowVersion extends JFrame {

public static JFrame frame;

public StackOverflowVersion() {
    dialogoCriptografar();
    System.exit(EXIT_ON_CLOSE);
}

public void dialogoCriptografar(){
    final ButtonGroup bGroup = new ButtonGroup();
    JRadioButton[] buttons = new JRadioButton[2];
    final JPasswordField passwordField = new JPasswordField(20);

    // create the raio bunttons
    buttons[0] = new JRadioButton("Encript document before saving");
    buttons[1] = new JRadioButton("Just save it");
    //ad them to the ButtonGroup
    bGroup.add(buttons[0]);
    bGroup.add(buttons[1]);
    // select the option to encript
    buttons[0].setSelected(true);

    //creates a panel with the radio buttons and a JPasswordField
    final JPanel box = new JPanel();
    JLabel descricao = new JLabel("Choose an option to save:");
    box.setLayout(new BoxLayout(box, BoxLayout.Y_AXIS));
    box.add(descricao);
    box.add(buttons[0]);
    box.add(passwordField);
    box.add(buttons[1]);

    // creates the dialog
    final JDialog dialogo = new JDialog(frame, "Storage options", true);
    dialogo.setSize(275,125);
    dialogo.setLocationRelativeTo(frame);
    dialogo.setResizable(false);
    dialogo.add(box);
    dialogo.setVisible(true);

    /* Doesn't work:
    buttons[0].addChangeListener(new ChangeListener(){
        boolean visivel = true;//ele começa visivel
        public void stateChanged(ChangeEvent event){
            if(visivel){
                box.remove(password);
                SwingUtilities.updateComponentTreeUI(dialogo);
                dialogo.revalidate();
                dialogo.repaint();
                visivel = false;
            }
            else{
                box.add(password);
                SwingUtilities.updateComponentTreeUI(dialogo);
                dialogo.revalidate();
                dialogo.repaint();
                SwingUtilities.updateComponentTreeUI(dialogo);
                visivel = true;
            }
        }
    });
    */
}

public static void main(String[] args) {

    SwingUtilities.invokeLater(new Runnable() {

        public void run() {
           frame = new StackOverflowVersion();
           frame.setVisible(true);
        }
    });
}
}
Was it helpful?

Solution

My question is if there is a simple way of making the TextField not useable and half transparent,

Have you tried a simple

textField.setEditable(false);

Or

textField.setEnabled(false);

OTHER TIPS

Observation in your code.

1) Add setVisible at the end after all the UI components' properties, events etc are set.

2) In your case you need a listener for each of the RadioButton.

3) Also I prefer using an ItemListener to a ChangeListener(fires even when mouse is moved over it).

Please check the code below.

import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;

import javax.swing.BoxLayout;
import javax.swing.ButtonGroup;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JRadioButton;
import javax.swing.SwingUtilities;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class Main extends JFrame {

public static JFrame frame;

public Main() {
    dialogoCriptografar();
    System.exit(EXIT_ON_CLOSE);
}

public void dialogoCriptografar(){
    final ButtonGroup bGroup = new ButtonGroup();
    final JRadioButton[] buttons = new JRadioButton[2];
    final JPasswordField passwordField = new JPasswordField(20);

    // create the raio bunttons
    buttons[0] = new JRadioButton("Encript document before saving");
    buttons[1] = new JRadioButton("Just save it");
    //ad them to the ButtonGroup
    bGroup.add(buttons[0]);
    bGroup.add(buttons[1]);
    // select the option to encript
    buttons[0].setSelected(true);

    //creates a panel with the radio buttons and a JPasswordField
    final JPanel box = new JPanel();
    JLabel descricao = new JLabel("Choose an option to save:");
    box.setLayout(new BoxLayout(box, BoxLayout.Y_AXIS));
    box.add(descricao);
    box.add(buttons[0]);
    box.add(passwordField);
    box.add(buttons[1]);

    // creates the dialog
    final JDialog dialogo = new JDialog(frame, "Storage options", true);
    dialogo.setSize(275,125);
    dialogo.setLocationRelativeTo(frame);
    dialogo.setResizable(false);
    dialogo.add(box);


    // Doesn't work:
    buttons[0].addChangeListener(new ChangeListener() {

        @Override
        public void stateChanged(ChangeEvent arg0) {
            // TODO Auto-generated method stub
            if(buttons[0].isSelected()) {
                passwordField.setVisible(true);;
                //SwingUtilities.updateComponentTreeUI(dialogo);
            //  System.out.println("asdasd");
                box.revalidate();
                box.repaint(); 
            }
        }

    });
    buttons[1].addChangeListener(new ChangeListener() {

        @Override
        public void stateChanged(ChangeEvent arg0) {
            // TODO Auto-generated method stub
            //System.out.println("a");
            if(buttons[1].isSelected()) {
                passwordField.setVisible(false);;
                //System.out.println("asdasd");
                //SwingUtilities.updateComponentTreeUI(dialogo);
                box.revalidate();
                box.repaint(); 
            }
        }
    });   //

    dialogo.setVisible(true);
}

public static void main(String[] args) {

    SwingUtilities.invokeLater(new Runnable() {

        public void run() {
           frame = new Main();
           frame.setVisible(true);
        }
    });
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top