控制大小位置 : 布局 « SWT-JFace-Eclipse « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » SWT-JFace-Eclipse » 布局屏幕截图 
控制大小位置
控制大小位置

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

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

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

  Button button;

  Text x;
  Text y;
  Text h;
  Text w;

  Button get;
  Button set;

  public ControlSizeLocation() {
    init();

    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() {
    GridLayout gridLayout = new GridLayout(2true);
    shell.setLayout(gridLayout);

    Composite left = new Composite(shell, SWT.NULL);
    left.setLayout(new GridLayout());
    //left.setLayout(new FillLayout());
    left.setLayoutData(new GridData(GridData.FILL_BOTH));
    left.setBackground(display.getSystemColor(SWT.COLOR_GREEN));

    button = new Button(left, SWT.PUSH);
    button.setText("Button");
    button.setLayoutData(new GridData());

    Composite right = new Composite(shell, SWT.NULL);
    right.setLayout(new GridLayout(4true));
    right.setLayoutData(new GridData(GridData.FILL_BOTH));

    Label label = new Label(right, SWT.NULL);
    label.setText("X");

    label = new Label(right, SWT.NULL);
    label.setText("Y");

    label = new Label(right, SWT.NULL);
    label.setText("Width");

    label = new Label(right, SWT.NULL);
    label.setText("Height");

    x = new Text(right, SWT.BORDER);
    y = new Text(right, SWT.BORDER);
    w = new Text(right, SWT.BORDER);
    h = new Text(right, SWT.BORDER);

    SelectionListener selectionListener = new SelectionListener() {
      public void widgetSelected(SelectionEvent e) {
        Button b = (Buttone.widget;
        if (b == get) {
          System.out.println("------------------------------");
          System.out.println("getBounds: " + button.getBounds());
          System.out.println("getLocation: " + button.getLocation());
          System.out.println("getSize: " + button.getSize());
          
        }else if(b == set) {
          int vx = getNumber(x);
          int vy = getNumber(y);
          int vw = getNumber(w);
          int vh = getNumber(h);
          
          if(vx != -&& vy != -1) {
            if(vw != -&& vh != -1) {
              Rectangle rectangle = new Rectangle(vx, vy, vw, vh);
              button.setBounds(rectangle);
              System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
              System.out.println("# setBounds: " + rectangle);
            }else{
              Point point = new Point(vx, vy);
              button.setLocation(point);
              System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
              System.out.println("# setLocation: " + point);
            }
          }else if(vw != -&& vh != -1) {
            Point point = new Point(vw, vh);
            button.setSize(point);
            System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
            System.out.println("# setSize: " + point);
          }
        }

      }

      public void widgetDefaultSelected(SelectionEvent e) {
        // TODO Auto-generated method stub

      }
    };

    get = new Button(right, SWT.PUSH);
    get.setText("Get");
    get.addSelectionListener(selectionListener);

    set = new Button(right, SWT.PUSH);
    set.setText("Set");
    set.addSelectionListener(selectionListener);

  }
  
  /**
   
   @param text
   @return <code>-1</code> if invalid.
   */
  private int getNumber(Text text) {
    if(text == null)
      return -1;
    String value = text.getText();
    if(value == null || value.trim().length() == 0)
      return -1;
    try {
      return Integer.parseInt(value.trim());
    }catch(Exception e) {
      
    }
    return -1;
  }

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



           
       
Related examples in the same category
1. SWT布局的一个实例SWT布局的一个实例
2. SWT GridLayout演示SWT GridLayout演示
3. SWT GridLayoutSWT GridLayout
4. SWT RowLayout例子SWT RowLayout例子
5. SWT FillLayout例子SWT FillLayout例子
6. SWT表格布局例子SWT表格布局例子
7. SWT GridLayout例子SWT GridLayout例子
8. GridLayout布局演示GridLayout布局演示
9. 网格布局跨度网格布局跨度
10. 布局组件布局组件
11. 布局常量布局常量
12. StackLayout实例StackLayout实例
13. BorderLayout实例BorderLayout实例
14. FormLayouts实例FormLayouts实例
15. 简单的FormLayout简单的FormLayout
16. BorderLayout实例BorderLayout实例
17. 水平FillLayout水平FillLayout
18. 垂直FillLayout垂直FillLayout
19. 复杂的FormLayout复杂的FormLayout
20. FormLayout附属FormLayout附属
21. FormLayout实例FormLayout实例
22. GridLayout 2x2GridLayout 2x2
23. 复杂格状布局复杂格状布局
24. 空布局空布局
25. 行布局测试行布局测试
26. 堆栈布局测试堆栈布局测试
27. 水平行布局水平行布局
28. FillLayout实例FillLayout实例
29. FormLayout实例FormLayout实例
30. GridLayout实例GridLayout实例
31. GridLayout示例2GridLayout示例2
32. 布局实例布局实例
33. RowLayout实例RowLayout实例
34. SWT FillLayout实例
35. SWY径向布局
36. 利用径向布局
37. 所有GridLayout的选项
38. 简单GridLayout
39. SWT GridLayout:网格扩展
40. SWT RowLayout实例
41. SWT FillLayout综合面板
42. SWT GridLayout :在一个垂直的工具栏排列控件SWT GridLayout :在一个垂直的工具栏排列控件
43. SWT GridLayout 平行布局控件SWT GridLayout 平行布局控件
44. 从GridLayout排除控件从GridLayout排除控件
45. 网格布局插入控件网格布局插入控件
46. 在GridLayout对齐控件在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:使用表格布局创建一个简单的对话框FormLayout:使用表格布局创建一个简单的对话框
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.