slam4:gui:swt

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
slam4:gui:swt [2013/03/26 01:27] – créée jcheronslam4:gui:swt [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
-====== Interfaces Graphiques en java ====== +====== Standard Widget Toolkit ======
- +
-  * **AWT** : Abstract Window Toolkit utilise les composants natifs de la plate-forme -> limité en composants +
-  * **Swing** : basé sur AWT, enrichi, composants indépendants de la plate-forme, MVC -> Lenteur +
-  * **SWT** : Standard Widget Toolkit, Bibliothèque graphique libre créée par IBM (Eclipse repose sur cette architecture), utilise les composants natifs si possible, implémente le reste en java. +
-  * JFace : Bibliothèque graphique libre s'appuyant sur SWT, et permettant d'implémenter MVC +
-  * **Eclipse RCP** : Rich Client Platform, utilisant SWT, JFace+
  
 ===== -- Création d'une application SWT ===== ===== -- Création d'une application SWT =====
Ligne 13: Ligne 7:
   * Création d'un projet : Choisir **File/New/other/Window Builder/SWT/JFace java Project**   * Création d'un projet : Choisir **File/New/other/Window Builder/SWT/JFace java Project**
   * Choisir **File/New/other/SWT/Application Window**   * Choisir **File/New/other/SWT/Application Window**
 +{{:slam4:gui:newswtproject.png|}}
 +
 +===== -- Structure d'une application =====
 +
 +<sxh java;title:Application SWT>
 +public class MainWindow {
 +
 + protected Shell shell;
 +
 + /**
 + * Launch the application.
 + * @param args
 + */
 + public static void main(String[] args) {
 + try {
 + MainWindow window = new MainWindow();
 + window.open();
 + } catch (Exception e) {
 + e.printStackTrace();
 + }
 + }
 +
 + /**
 + * Open the window.
 + */
 + public void open() {
 + Display display = Display.getDefault();
 + createContents();
 + shell.open();
 + shell.layout();
 + while (!shell.isDisposed()) {
 + if (!display.readAndDispatch()) {
 + display.sleep();
 + }
 + }
 + }
 +
 + /**
 + * Create contents of the window.
 + */
 + protected void createContents() {
 + shell = new Shell();
 + shell.setSize(450, 300);
 + shell.setText("SWT Application");
 +
 + }
 +
 +}
 +</sxh>
 +
 +===== -- Mode Design =====
 +Créer l'interface suivante en mode Design
 +{{:slam4:gui:ideswt.png|}}
 +
 +===== -- Implémentation du comportement =====
 +Nous allons ajouter les comportements suivants :
 +  * Sur la sélection d'une des options, le texte de l'option sélectionnée apparaît dans la zone de texte. Le **activeButton** devient l'option sélectionnée
 +  * Sur le click du bouton Valider, le texte entré dans la zone de texte remplace le texte de l'option sélectionnée (activeButton)
 +==== -- Ajout de listener ====
 +
 +
 +  * Sélectionner L'option 1, faire apparaître le menu contextuel avec le bouton droit de la souris :
 +  * Choisir **add Event Handler/ Selection/ WidgetSelected**
 +
 +{{:slam4:gui:addeventlistener.png|}}
 +
 +
 +Le listener est implémenté via une classe anonyme :
 +<sxh java;title:Event Handler>
 + btnOption.addSelectionListener(new SelectionAdapter() {
 + @Override
 + public void widgetSelected(SelectionEvent e) {
 +
 + }
 + });
 +</sxh>
 +
 +  * Ajouter un membre privé **Button activeButton**
 +  * Implémenter le code suivant :
 +
 +<sxh java>
 +@Override
 + public void widgetSelected(SelectionEvent e) {
 + activeButton = (Button) e.getSource();
 + text.setText(activeButton.getText());
 + }
 +</sxh>
 +
 +==== -- Ajout d'un même listener sur les évènements de plusieurs Widgets ====
 +
 +<sxh java>
 + SelectionAdapter sa = new SelectionAdapter() {
 + @Override
 + public void widgetSelected(SelectionEvent e) {
 + activeButton = (Button) e.getSource();
 + text.setText(activeButton.getText());
 + }
 + };
 + btnOption.addSelectionListener(sa);
 + btnOption_1.addSelectionListener(sa);
 +</sxh>
 +
 +
 +===== --Divers =====
 +
 +==== -- Chargement d'une image ====
 +<sxh java>
 + public static Image loadImage(String path, boolean inJar) {
 + Image newImage = null;
 + try {
 + if (inJar)
 + {
 + newImage = new Image(null, App.class.getClassLoader().getResourceAsStream(path));
 + }
 + else {
 + newImage = new Image(null, path);
 + }
 + } catch (SWTException ex) {
 + ex.printStackTrace();
 + }
 +
 + return newImage;
 + }
 +</sxh>
 +
  
  
  • slam4/gui/swt.1364257669.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)