<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    hengheng123456789

      BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
      297 Posts :: 68 Stories :: 144 Comments :: 0 Trackbacks

    Swing/AWT 主要是可以在SWT中使用Swing/AWT ,但是是有條件的。

    1、集成簡單的AWT表和標簽。
    ?static class FileTableModel extends AbstractTableModel {??
    ??File[] files;???????
    ??String[] columnsName = {"Name", "Size", "Date Modified"};
    ??
    ??public FileTableModel (File[] files) {
    ???this.files = files;
    ??}
    ??public int getColumnCount () {
    ???return columnsName.length;
    ??}
    ??public Class getColumnClass (int col) {
    ???if (col == 1) return Long.class;
    ???if (col == 2) return Date.class;
    ???return String.class;
    ??}
    ??public int getRowCount () {
    ???return files == null ? 0 : files.length;
    ??}
    ??public Object getValueAt (int row, int col) {
    ???if (col == 0) return files[row].getName();
    ???if (col == 1) return new Long(files[row].length());
    ???if (col == 2) return new Date(files[row].lastModified());
    ???return "";
    ??}
    ??public String getColumnName (int col) {
    ???return columnsName[col];
    ??}
    ?}

    ?public static void main(String[] args) {
    ??final Display display = new Display();
    ??final Shell shell = new Shell(display);
    ??shell.setText("SWT and Swing/AWT Example");

    ??Listener exitListener = new Listener() {
    ???public void handleEvent(Event e) {
    ????MessageBox dialog = new MessageBox(shell, SWT.OK | SWT.CANCEL | SWT.ICON_QUESTION);
    ????dialog.setText("Question");
    ????dialog.setMessage("Exit?");
    ????if (e.type == SWT.Close) e.doit = false;
    ????if (dialog.open() != SWT.OK) return;
    ????shell.dispose();
    ???}
    ??};?
    ??Listener aboutListener = new Listener() {
    ???public void handleEvent(Event e) {
    ????final Shell s = new Shell(shell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
    ????s.setText("About");
    ????GridLayout layout = new GridLayout(1, false);
    ????layout.verticalSpacing = 20;
    ????layout.marginHeight = layout.marginWidth = 10;
    ????s.setLayout(layout);
    ????Label label = new Label(s, SWT.NONE);
    ????label.setText("SWT and AWT Example.");
    ????Button button = new Button(s, SWT.PUSH);
    ????button.setText("OK");
    ????GridData data = new GridData();
    ????data.horizontalAlignment = GridData.CENTER;
    ????button.setLayoutData(data);
    ????button.addListener(SWT.Selection, new Listener() {
    ?????public void handleEvent(Event event) {
    ??????s.dispose();
    ?????}
    ????});
    ????s.pack();
    ????Rectangle parentBounds = shell.getBounds();
    ????Rectangle bounds = s.getBounds();
    ????int x = parentBounds.x + (parentBounds.width - bounds.width) / 2;
    ????int y = parentBounds.y + (parentBounds.height - bounds.height) / 2;
    ????s.setLocation(x, y);
    ????s.open();
    ????while (!s.isDisposed()) {
    ?????if (!display.readAndDispatch()) display.sleep();
    ????}
    ???}
    ??};
    ??shell.addListener(SWT.Close, exitListener);
    ??Menu mb = new Menu(shell, SWT.BAR);
    ??MenuItem fileItem = new MenuItem(mb, SWT.CASCADE);
    ??fileItem.setText("&File");
    ??Menu fileMenu = new Menu(shell, SWT.DROP_DOWN);
    ??fileItem.setMenu(fileMenu);
    ??MenuItem exitItem = new MenuItem(fileMenu, SWT.PUSH);
    ??exitItem.setText("&Exit\tCtrl+X");
    ??exitItem.setAccelerator(SWT.CONTROL + 'X');
    ??exitItem.addListener(SWT.Selection, exitListener);
    ??MenuItem aboutItem = new MenuItem(fileMenu, SWT.PUSH);
    ??aboutItem.setText("&About\tCtrl+A");
    ??aboutItem.setAccelerator(SWT.CONTROL + 'A');
    ??aboutItem.addListener(SWT.Selection, aboutListener);
    ??shell.setMenuBar(mb);

    ??RGB color = shell.getBackground().getRGB();
    ??Label separator1 = new Label(shell, SWT.SEPARATOR | SWT.HORIZONTAL);
    ??Label locationLb = new Label(shell, SWT.NONE);
    ??locationLb.setText("Location:");
    ??Composite locationComp = new Composite(shell, SWT.EMBEDDED);
    ??ToolBar toolBar = new ToolBar(shell, SWT.FLAT);
    ??ToolItem exitToolItem = new ToolItem(toolBar, SWT.PUSH);
    ??exitToolItem.setText("&Exit");
    ??exitToolItem.addListener(SWT.Selection, exitListener);
    ??ToolItem aboutToolItem = new ToolItem(toolBar, SWT.PUSH);
    ??aboutToolItem.setText("&About");
    ??aboutToolItem.addListener(SWT.Selection, aboutListener);
    ??Label separator2 = new Label(shell, SWT.SEPARATOR | SWT.HORIZONTAL);
    ??final Composite comp = new Composite(shell, SWT.NONE);
    ??final Tree fileTree = new Tree(comp, SWT.SINGLE | SWT.BORDER);
    ??Sash sash = new Sash(comp, SWT.VERTICAL);
    ??Composite tableComp = new Composite(comp, SWT.EMBEDDED);?//Composite對象必須為SWT.EMBEDDED才可以裝載awt/swing內容
    ??Label separator3 = new Label(shell, SWT.SEPARATOR | SWT.HORIZONTAL);
    ??Composite statusComp = new Composite(shell, SWT.EMBEDDED);

    ??java.awt.Frame locationFrame = SWT_AWT.new_Frame(locationComp);
    ??final java.awt.TextField locationText = new java.awt.TextField();
    ??locationFrame.add(locationText);

    ??//處理awt表
    ??java.awt.Frame fileTableFrame = SWT_AWT.new_Frame(tableComp);
    ??java.awt.Panel panel = new java.awt.Panel(new java.awt.BorderLayout());
    ??fileTableFrame.add(panel);
    ??final JTable fileTable = new JTable(new FileTableModel(null));
    ??fileTable.setDoubleBuffered(true);
    ??fileTable.setShowGrid(false);
    ??fileTable.createDefaultColumnsFromModel();
    ??JScrollPane scrollPane = new JScrollPane(fileTable);
    ??panel.add(scrollPane);

    ??//處理awt狀態Label
    ??java.awt.Frame statusFrame = SWT_AWT.new_Frame(statusComp);
    ??statusFrame.setBackground(new java.awt.Color(color.red, color.green, color.blue));
    ??final java.awt.Label statusLabel = new java.awt.Label();
    ??statusFrame.add(statusLabel);
    ??statusLabel.setText("Select a file");

    ??sash.addListener(SWT.Selection, new Listener() {
    ???public void handleEvent(Event e) {
    ????if (e.detail == SWT.DRAG) return;
    ????GridData data = (GridData)fileTree.getLayoutData();
    ????Rectangle trim = fileTree.computeTrim(0, 0, 0, 0);
    ????data.widthHint = e.x - trim.width;
    ????comp.layout();
    ???}
    ??});

    ??File[] roots = File.listRoots();
    ??for (int i = 0; i < roots.length; i++) {
    ???File file = roots[i];
    ???TreeItem treeItem = new TreeItem(fileTree, SWT.NONE);
    ???treeItem.setText(file.getAbsolutePath());
    ???treeItem.setData(file);
    ???new TreeItem(treeItem, SWT.NONE);
    ??}
    ??fileTree.addListener(SWT.Expand, new Listener() {
    ???public void handleEvent(Event e) {
    ????TreeItem item = (TreeItem)e.item;
    ????if (item == null) return;
    ????if (item.getItemCount() == 1) {
    ?????TreeItem firstItem = item.getItems()[0];
    ?????if (firstItem.getData() != null) return;
    ?????firstItem.dispose();
    ????} else {
    ?????return;
    ????}
    ????File root = (File)item.getData();
    ????File[] files = root.listFiles();
    ????if (files == null) return;
    ????for (int i = 0; i < files.length; i++) {
    ?????File file = files[i];
    ?????if (file.isDirectory()) {
    ??????TreeItem treeItem = new TreeItem(item, SWT.NONE);
    ??????treeItem.setText(file.getName());
    ??????treeItem.setData(file);
    ??????new TreeItem(treeItem, SWT.NONE);
    ?????}
    ????}
    ???}
    ??});
    ??fileTree.addListener(SWT.Selection, new Listener() {
    ???public void handleEvent(Event e) {
    ????TreeItem item = (TreeItem)e.item;
    ????if (item == null) return;
    ????final File root = (File)item.getData();
    ????EventQueue.invokeLater(new Runnable() {
    ?????public void run() {
    ??????statusLabel.setText(root.getAbsolutePath());
    ??????locationText.setText(root.getAbsolutePath());
    ??????fileTable.setModel(new FileTableModel(root.listFiles()));
    ?????}
    ????});
    ???}
    ??});
    ??
    ??GridLayout layout = new GridLayout(4, false);
    ??layout.marginWidth = layout.marginHeight = 0;
    ??layout.horizontalSpacing = layout.verticalSpacing = 1;
    ??shell.setLayout(layout);
    ??GridData data;??
    ??data = new GridData(GridData.FILL_HORIZONTAL);
    ??data.horizontalSpan = 4;
    ??separator1.setLayoutData(data);
    ??data = new GridData();
    ??data.horizontalSpan = 1;
    ??data.horizontalIndent = 10;
    ??locationLb.setLayoutData(data);
    ??data = new GridData(GridData.FILL_HORIZONTAL);
    ??data.horizontalSpan = 2;
    ??data.heightHint = locationText.getPreferredSize().height;
    ??locationComp.setLayoutData(data);
    ??data = new GridData(GridData.FILL_HORIZONTAL);
    ??data.horizontalSpan = 1;
    ??toolBar.setLayoutData(data);
    ??data = new GridData(GridData.FILL_HORIZONTAL);
    ??data.horizontalSpan = 4;
    ??separator2.setLayoutData(data);
    ??data = new GridData(GridData.FILL_BOTH);
    ??data.horizontalSpan = 4;
    ??comp.setLayoutData(data);
    ??data = new GridData(GridData.FILL_HORIZONTAL);
    ??data.horizontalSpan = 4;
    ??separator3.setLayoutData(data);
    ??data = new GridData(GridData.FILL_HORIZONTAL);
    ??data.horizontalSpan = 4;
    ??data.heightHint = statusLabel.getPreferredSize().height;
    ??statusComp.setLayoutData(data);
    ??
    ??layout = new GridLayout(3, false);
    ??layout.marginWidth = layout.marginHeight = 0;
    ??layout.horizontalSpacing = layout.verticalSpacing = 1;
    ??comp.setLayout(layout);???
    ??data = new GridData(GridData.FILL_VERTICAL);
    ??data.widthHint = 200;
    ??fileTree.setLayoutData(data);??
    ??data = new GridData(GridData.FILL_VERTICAL);
    ??sash.setLayoutData(data);??
    ??data = new GridData(GridData.FILL_BOTH);
    ??tableComp.setLayoutData(data);

    ??shell.open();
    ??while(!shell.isDisposed()) {
    ???if (!display.readAndDispatch()) display.sleep();
    ??}
    ??display.dispose();
    ?}

    posted on 2006-11-07 17:09 哼哼 閱讀(1209) 評論(0)  編輯  收藏 所屬分類: SWT
    主站蜘蛛池模板: 污网站免费在线观看| 中文字幕无码精品亚洲资源网久久| 精品韩国亚洲av无码不卡区 | 一区二区免费国产在线观看| 永久免费视频v片www| 亚洲色精品三区二区一区| 好男人www免费高清视频在线| 亚洲av无码国产综合专区| 88av免费观看| 亚洲天堂2016| 在线看片无码永久免费aⅴ| 特级毛片aaaa级毛片免费| 亚洲Aⅴ无码一区二区二三区软件| 一边摸一边爽一边叫床免费视频| 国产亚洲精品国看不卡| 日韩免费的视频在线观看香蕉| 久久水蜜桃亚洲av无码精品麻豆| 久视频精品免费观看99| 亚洲午夜精品一区二区麻豆| 国产一级一片免费播放| 两个人的视频www免费| 亚洲午夜免费视频| 大香人蕉免费视频75| 一级一级一级毛片免费毛片| 国产AV无码专区亚洲AV毛网站 | 国产亚洲精品岁国产微拍精品| 无码人妻一区二区三区免费n鬼沢 无码人妻一区二区三区免费看 | 国产亚洲美女精品久久久| 日韩在线不卡免费视频一区| 亚洲人成网站看在线播放| 亚洲精品动漫人成3d在线 | 国产精品自在自线免费观看| 久久久久女教师免费一区| 91精品国产亚洲爽啪在线影院| 全免费一级午夜毛片| 中国极品美軳免费观看| 久久亚洲精品专区蓝色区| 亚洲高清偷拍一区二区三区| 男人进去女人爽免费视频国产| 日韩亚洲国产综合高清| 亚洲乱码日产一区三区|