66095e3908
de page ont été modifié)
53 lines
1.5 KiB
Java
53 lines
1.5 KiB
Java
package action;
|
|
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.KeyEvent;
|
|
|
|
import javax.swing.AbstractAction;
|
|
import javax.swing.Action;
|
|
import javax.swing.Box;
|
|
import javax.swing.JLabel;
|
|
import javax.swing.JOptionPane;
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JTextField;
|
|
import javax.swing.KeyStroke;
|
|
|
|
import cXML.node;
|
|
|
|
public class actTitre1 extends AbstractAction{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
{
|
|
putValue( Action.NAME, "Titre 1 (CTRL+1)" );
|
|
putValue( Action.SHORT_DESCRIPTION, "Titre 1" );
|
|
putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_1, KeyEvent.CTRL_DOWN_MASK) );
|
|
}
|
|
@Override
|
|
public void actionPerformed(ActionEvent e) {
|
|
node nod = (node) fenetres.create.getSelectNode().getUserObject();
|
|
String titre = "";
|
|
if(nod.getAttributs().get("titre1")!=null) {
|
|
titre = nod.getAttributs().get("titre1");
|
|
}
|
|
|
|
JTextField titreField = new JTextField(30);
|
|
titreField.setText(titre);
|
|
JPanel myPanel = new JPanel();
|
|
myPanel.add(new JLabel("Titre :"));
|
|
myPanel.add(Box.createHorizontalStrut(2)); // a spacer
|
|
myPanel.add(titreField);
|
|
|
|
|
|
int result = JOptionPane.showConfirmDialog(null, myPanel, "Saisissez votre titre 1 ", JOptionPane.OK_CANCEL_OPTION);
|
|
if (result == JOptionPane.OK_OPTION) {
|
|
nod.titre1(titreField.getText());
|
|
fenetres.create.getTextNodeSelect().refreshAffichage(nod);
|
|
}
|
|
|
|
}
|
|
|
|
}
|