Sample Combo : Combo « SWT JFace Eclipse « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » SWT JFace Eclipse » ComboScreenshots 
Sample Combo
Sample Combo


/******************************************************************************
 * Copyright (c) 1998, 2004 Jackwind Li Guojie
 * All right reserved. 
 
 * Created on Feb 8, 2004 9:25:39 AM by JACK
 * $Id$
 
 * visit: http://www.asprise.com/swt
 *****************************************************************************/



import java.util.Arrays;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;

public class SampleCombo {
  Display display = new Display();
  Shell shell = new Shell(display);

  public SampleCombo() {
    init();
    
    shell.setLayout(new GridLayout(2false));
    
    (new Label(shell, SWT.NULL)).setText("Select your favorite programming language: ");
    
    //final CCombo combo = new CCombo(shell, SWT.FLAT);
    final Combo combo = new Combo(shell, SWT.NULL);
    
    String[] languages = new String[]{"Java""C""C++""SmallTalk"};
    
    Arrays.sort(languages);
    
    for(int i=0; i<languages.length; i++)
      combo.add(languages[i]);
    
    //combo.add("Perl", 5);
    //combo.setItem(5, "Perl");
    
    combo.addSelectionListener(new SelectionListener() {
      public void widgetSelected(SelectionEvent e) {
        System.out.println("Selected index: " + combo.getSelectionIndex() ", selected item: " + combo.getItem(combo.getSelectionIndex()) ", text content in the text field: " + combo.getText());
      }

      public void widgetDefaultSelected(SelectionEvent e) {
        System.out.println("Default selected index: " + combo.getSelectionIndex() ", selected item: " (combo.getSelectionIndex() == -"<null>" : combo.getItem(combo.getSelectionIndex())) ", text content in the text field: " + combo.getText());
        String text = combo.getText();
        if(combo.indexOf(text0) { // Not in the list yet. 
          combo.add(text);
          // Re-sort
          String[] items = combo.getItems();
          Arrays.sort(items);
          combo.setItems(items);
        }
      }
    });

    shell.pack();
    shell.open();
    //textUser.forceFocus();

    // Set up the event loop.
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        // If no more entries in event queue
        display.sleep();
      }
    }

    display.dispose();
  }
  

  private void init() {

  }

  public static void main(String[] args) {
    new SampleCombo();
  }
}


           
       
Related examples in the same category
1. SWT Combo
2. Text and Label demoText and Label demo
3. DropDown DemoDropDown Demo
4. demonstrates combos (combobox)demonstrates combos (combobox)
5. Combo (ComboBox) ExampleCombo (ComboBox) Example
6. Combo (ComboBox) Example 2Combo (ComboBox) Example 2
7. Create a combo box (non-editable)Create a combo box (non-editable)
w___w___w___.j___av__a_2_s___.__c___o__m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.