slam4:gui:jface

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:jface [2014/03/20 09:37] – créée jcheronslam4:gui:jface [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
 +====== JFace ======
 +
 +===== -- Composants =====
 +
 +==== -- ListViewer ====
 +
 +=== Instanciation ===
 +<sxh java>
 +    lvTest = new ListViewer(compositeParent, SWT.BORDER | SWT.V_SCROLL);
 +    List listTest = lvTest.getList();
 +</sxh>
 +
 +=== Affectation du contenu et définition du ContentProvider ===
 +<sxh java>
 + lvCategories.setContentProvider(new ArrayContentProvider());
 + lvCategories.setInput(getModeles());
 +</sxh>
 +
 <sxh java> <sxh java>
 package net.ex.categorie.main; package net.ex.categorie.main;
Ligne 10: Ligne 28:
  private java.util.List<Categorie> categories;  private java.util.List<Categorie> categories;
  private ListViewer lvCategories;  private ListViewer lvCategories;
 + private Categorie categorieActive;
 + private TableColumnLayout tLayout;
  
  /**  /**
Ligne 56: Ligne 76:
  lvCategories = new ListViewer(compoLeft, SWT.BORDER | SWT.V_SCROLL);  lvCategories = new ListViewer(compoLeft, SWT.BORDER | SWT.V_SCROLL);
  List listCategories = lvCategories.getList();  List listCategories = lvCategories.getList();
 + listCategories.addSelectionListener(new SelectionAdapter() {
 + @Override
 + public void widgetSelected(SelectionEvent e) {
 + StructuredSelection sel = (StructuredSelection) lvCategories.getSelection();
 + categorieActive = (Categorie) sel.getFirstElement();
 + }
 + });
  
  Composite compoRight = new Composite(sashMain, SWT.NONE);  Composite compoRight = new Composite(sashMain, SWT.NONE);
Ligne 63: Ligne 90:
  
  Composite composite = new Composite(sashForm, SWT.NONE);  Composite composite = new Composite(sashForm, SWT.NONE);
- TableColumnLayout tLayout = new TableColumnLayout();+ tLayout = new TableColumnLayout();
  composite.setLayout(tLayout);  composite.setLayout(tLayout);
  
Ligne 84: Ligne 111:
  TableColumn col = new TableColumn(table, SWT.NONE);  TableColumn col = new TableColumn(table, SWT.NONE);
  col.setText(caption);  col.setText(caption);
- ((TableColumnLayout) table.getParent().getLayout()).setColumnData(col, new ColumnWeightData(weight));+ tLayout.setColumnData(col, new ColumnWeightData(10));
  }  }
  
  • slam4/gui/jface.1395304638.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)