SWT FillLayout Sample : Layout « 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 » LayoutScreenshots 
SWT FillLayout Sample
SWT FillLayout Sample


/******************************************************************************
 * Copyright (c) 1998, 2004 Jackwind Li Guojie
 * All right reserved. 
 
 * Created on Jan 28, 2004 10:04:24 PM by JACK
 * $Id$
 
 * visit: http://www.asprise.com/swt
 *****************************************************************************/

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

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

  public FillLayoutSample() {
    FillLayout fillLayout = new FillLayout(SWT.VERTICAL);
    fillLayout.marginHeight = 5;
    fillLayout.marginWidth = 5;
    fillLayout.spacing = 1;
    
    shell.setLayout(fillLayout);
    
    Button button1 = new Button(shell, SWT.PUSH);
    button1.setText("button1");
    
    Button button2 = new Button(shell, SWT.PUSH);
    button2.setText("button number 2");  
    
    Button button3 = new Button(shell, SWT.PUSH);
    button3.setText("3");    

    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 FillLayoutSample();
  }
}


           
       
Related examples in the same category
1. SWT Layout Example in OneSWT Layout Example in One
2. SWT GridLayout DemoSWT GridLayout Demo
3. SWT GridLayoutSWT GridLayout
4. Control Size LocationControl Size Location
5. SWT RowLayout SampleSWT RowLayout Sample
6. SWT Form Layout SampleSWT Form Layout Sample
7. SWT GridLayout SampleSWT GridLayout Sample
8. GridLayout Sample Grab SpaceGridLayout Sample Grab Space
9. Grid Layout SpanGrid Layout Span
10. Layout ComponentsLayout Components
11. Layout TermsLayout Terms
12. StackLayout SampleStackLayout Sample
13. BorderLayout SampleBorderLayout Sample
14. FormLayoutsFormLayouts
15. FormLayout SimpleFormLayout Simple
16. A BorderLayoutA BorderLayout
17. FillLayout HorizontalFillLayout Horizontal
18. FillLayout VerticalFillLayout Vertical
19. FormLayout ComplexFormLayout Complex
20. FormLayout Form AttachmentFormLayout Form Attachment
21. FormLayoutFormLayout
22. GridLayout 2x2GridLayout 2x2
23. Grid Layout ComplexGrid Layout Complex
24. No LayoutNo Layout
25. Row Layout TestRow Layout Test
26. Stack Layout TestStack Layout Test
27. Row Layout HorizontalRow Layout Horizontal
28. FillLayout ExampleFillLayout Example
29. FormLayout ExampleFormLayout Example
30. GridLayout ExampleGridLayout Example
31. GridLayout Example 2GridLayout Example 2
32. Layout ExampleLayout Example
33. RowLayout ExampleRowLayout Example
34. SWT FillLayout
35. SWY Radial Layout
36. Use of Radial Layout
37. GridLayout with All Options
38. Simplest GridLayout
39. SWT GridLayout: GridSpan
40. SWT RowLayout
41. SWT FillLayout Composite
42. SWT GridLayout: align widgets in a vertical columnSWT GridLayout: align widgets in a vertical column
43. SWT GridLayout: align widgets in a horizontal rowSWT GridLayout: align widgets in a horizontal row
44. Exclude a widget from a GridLayoutExclude a widget from a GridLayout
45. Insert widgets into a grid layoutInsert widgets into a grid layout
46. Align widgets in a GridLayoutAlign widgets in a GridLayout
47. FormLayout: create a simple OK and CANCEL dialog using form layoutFormLayout: create a simple OK and CANCEL dialog using form layout
48. FormLayout: center a label and single line text using a form layoutFormLayout: center a label and single line text using a form layout
49. FormLayout: create a simple dialog using form layoutFormLayout: create a simple dialog using form layout
ww_w_.j__a_v_a__2s___._c__o__m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.