slam4:gui:swt

Différences

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

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
slam4:gui:swt [2013/03/26 03:06] – [4- Implémentation du comportement] jcheronslam4:gui:swt [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 108: Ligne 108:
  btnOption_1.addSelectionListener(sa);  btnOption_1.addSelectionListener(sa);
 </sxh> </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>
 +
 +
 +
 ===== -- Liens ===== ===== -- Liens =====
   * [[http://www.eclipse.org/swt/widgets/|SWT Widgets]]   * [[http://www.eclipse.org/swt/widgets/|SWT Widgets]]
   * [[http://wiki.eclipse.org/index.php/Rich_Client_Platform|Rich Client Platform - Eclipse RCP]]   * [[http://wiki.eclipse.org/index.php/Rich_Client_Platform|Rich Client Platform - Eclipse RCP]]
  • slam4/gui/swt.1364263607.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)