Skip to content
Snippets Groups Projects
Commit 400c75fa authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Update on crypto conf. dialog window

parent 09ffabfa
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
...@@ -269,16 +269,18 @@ public class JDialogCryptographicConfiguration extends JDialogBase implements Ac ...@@ -269,16 +269,18 @@ public class JDialogCryptographicConfiguration extends JDialogBase implements Ac
} }
private void addEmptyLine(GridBagConstraints gc) {
gc.weighty = 1.0;
gc.weightx = 1.0;
gc.gridwidth = GridBagConstraints.REMAINDER; //end row
gc.fill = GridBagConstraints.BOTH;
gc.gridheight = 1;
add(new JLabel(" "), gc);
}
public class EncryptPanel extends JPanel { public class EncryptPanel extends JPanel {
private void addEmptyLine(GridBagConstraints gc) {
gc.weighty = 1.0;
gc.weightx = 1.0;
gc.gridwidth = GridBagConstraints.REMAINDER; //end row
gc.fill = GridBagConstraints.BOTH;
gc.gridheight = 1;
add(new JLabel(" "), gc);
}
EncryptPanel(JDialogCryptographicConfiguration j){ EncryptPanel(JDialogCryptographicConfiguration j){
GridBagConstraints c1 = new GridBagConstraints(); GridBagConstraints c1 = new GridBagConstraints();
GridBagLayout gridbag1 = new GridBagLayout(); GridBagLayout gridbag1 = new GridBagLayout();
...@@ -338,6 +340,8 @@ public class JDialogCryptographicConfiguration extends JDialogBase implements Ac ...@@ -338,6 +340,8 @@ public class JDialogCryptographicConfiguration extends JDialogBase implements Ac
c1.gridwidth = GridBagConstraints.REMAINDER; //end row c1.gridwidth = GridBagConstraints.REMAINDER; //end row
add(texts[7],c1); add(texts[7],c1);
addEmptyLine(c1);
c1.gridwidth = 1; c1.gridwidth = 1;
add(new JLabel("Nonce"),c1); add(new JLabel("Nonce"),c1);
helps.put(5, new JComboBox<>(nonces)); helps.put(5, new JComboBox<>(nonces));
...@@ -352,6 +356,8 @@ public class JDialogCryptographicConfiguration extends JDialogBase implements Ac ...@@ -352,6 +356,8 @@ public class JDialogCryptographicConfiguration extends JDialogBase implements Ac
texts[5]=new JTextField(values[5], 15); texts[5]=new JTextField(values[5], 15);
add(texts[5], c1); add(texts[5], c1);
addEmptyLine(c1);
c1.gridwidth = 1; c1.gridwidth = 1;
add(new JLabel("Encrypted Key"),c1); add(new JLabel("Encrypted Key"),c1);
helps.put(8, new JComboBox<>(keys)); helps.put(8, new JComboBox<>(keys));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment