当前位置: 首页>>代码示例>>Java>>正文


Java Shell.addDisposeListener方法代码示例

本文整理汇总了Java中org.eclipse.swt.widgets.Shell.addDisposeListener方法的典型用法代码示例。如果您正苦于以下问题:Java Shell.addDisposeListener方法的具体用法?Java Shell.addDisposeListener怎么用?Java Shell.addDisposeListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.swt.widgets.Shell的用法示例。


在下文中一共展示了Shell.addDisposeListener方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: open

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
/**
 * Setup the Disk window and display (open) it.
 */
public void open() {
	shell = new Shell(parentShell, SWT.SHELL_TRIM);
	shell.setLayout(new FillLayout());
	shell.setImage(imageManager.get(ImageManager.ICON_DISK));
	setStandardWindowTitle();
	shell.addDisposeListener(new DisposeListener() {
			public void widgetDisposed(DisposeEvent event) {
				dispose(event);
			}
		});
		
	CTabFolder tabFolder = new CTabFolder(shell, SWT.BOTTOM);
	new DiskExplorerTab(tabFolder, disks, imageManager, this);
	diskMapTabs = new DiskMapTab[disks.length];
	for (int i=0; i<disks.length; i++) {
		if (disks[i].supportsDiskMap()) {
			diskMapTabs[i] = new DiskMapTab(tabFolder, disks[i]);
		}
	}
	diskInfoTab = new DiskInfoTab(tabFolder, disks);
	tabFolder.setSelection(tabFolder.getItems()[0]);
	
	
	shell.open();
}
 
开发者ID:AppleCommander,项目名称:AppleCommander,代码行数:29,代码来源:DiskWindow.java

示例2: open

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
@Override
public void open() {
	UIFunctionsSWT uiFunctions = UIFunctionsManagerSWT.getUIFunctionsSWT();
	if (uiFunctions != null) {
		Boolean bringToFront = (Boolean)getData( "bringToFront" );
		if ( bringToFront == null || bringToFront ){
			Shell mainShell = uiFunctions.getMainShell();
			if (mainShell != null && mainShell.getMinimized()) {
				uiFunctions.bringToFront();
			}
		}
	}

	Shell firstShellWithStyle = Utils.findFirstShellWithStyle(SWT.APPLICATION_MODAL);
	if (firstShellWithStyle != null && firstShellWithStyle != this) {
		// ok, there's a window with application_modal set, which on OSX will mean
		// that if we open our window, it will be on top, but users won't be able
		// to interact with it.  So, wait until the modal window goes away..
		firstShellWithStyle.addDisposeListener(new DisposeListener() {
			@Override
			public void widgetDisposed(DisposeEvent e) {
				// wait for dispose to complete, then run open again to check for
				// any new application modal shells to wait for
				Utils.execSWTThreadLater(0, new AERunnable() {
					@Override
					public void runSupport() {
						AEShell.this.open();
					}
				});
			}
		});
		firstShellWithStyle.setVisible(true);
		firstShellWithStyle.forceActive();
	} else {
		if (!isDisposed()) {
			super.open();
		}
	}
}
 
开发者ID:BiglySoftware,项目名称:BiglyBT,代码行数:40,代码来源:ShellFactory.java

示例3: initComponents

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
/**
 * Init all components
 */
protected void initComponents() {

    /* Build a new shell that holds the application */
    shell = new Shell(display);
    shell.setLayout(LayoutShop.createGridLayout(1, 3, 2, 3));
    shell.setText(i18n.getTranslation("APP_NAME"));
    /* On Mac do not set Shell Image since it will change the Dock Image */
    if (isWindows())
        shell.setImages(PaintShop.appIcon);
    /* Save favorites before quit */
    shell.addDisposeListener(e -> onDispose());
    /* Listen for close event to set isClosing flag */
    shell.addListener(SWT.Close, event -> onClose(event));
    /* Listen for iconify event */
    shell.addListener(SWT.Iconify, event -> onIconify());
    /* Listen for deactivate event */
    shell.addListener(SWT.Deactivate, event -> onDeactivate());

    if (GUI.isLinux()) {
        System.setProperty("SWT_GTK3", "0");
    }

    createEventManager();
    /* Fake ToolTip */
    fakeToolTip = new FakeToolTip();
    appMenu = createAppMenu();
    /* Sync controls with event manager */
}
 
开发者ID:openaudible,项目名称:openaudible,代码行数:32,代码来源:GUI.java

示例4: openFilesMiniView

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
private void openFilesMiniView(DownloadManager dm, TableCell cell) {
	Shell shell = ShellFactory.createShell(Utils.findAnyShell(), SWT.SHELL_TRIM);

	FillLayout fillLayout = new FillLayout();
	fillLayout.marginHeight = 2;
	fillLayout.marginWidth = 2;
	shell.setLayout(fillLayout);

	Rectangle bounds = ((TableCellSWT) cell).getBoundsOnDisplay();
	bounds.y += bounds.height;
	bounds.width = 630;
	bounds.height = (16 * dm.getNumFileInfos()) + 60;
	Rectangle realBounds = shell.computeTrim(0, 0, bounds.width, bounds.height);
	realBounds.width -= realBounds.x;
	realBounds.height -= realBounds.y;
	realBounds.x = bounds.x;
	realBounds.y = bounds.y;
	if (bounds.height > 500) {
		bounds.height = 500;
	}
	shell.setBounds(realBounds);
	shell.setAlpha(230);

	Utils.verifyShellRect(shell, true);


	final FilesView view = new FilesView(false);
	view.dataSourceChanged(dm);

	view.initialize(shell);

	Composite composite = view.getComposite();
	//composite.setLayoutData(null);
	//shell.setLayout(new FillLayout());

	view.viewActivated();
	view.refresh();

	final UIUpdatable viewUpdater = new UIUpdatable() {
		@Override
		public void updateUI() {
			view.refresh();
		}

		@Override
		public String getUpdateUIName() {
			return view.getFullTitle();
		}
	};
	UIUpdaterSWT.getInstance().addUpdater(viewUpdater);

	shell.addDisposeListener(new DisposeListener() {
		@Override
		public void widgetDisposed(DisposeEvent e) {
			UIUpdaterSWT.getInstance().removeUpdater(viewUpdater);
			view.delete();
		}
	});

	shell.layout(true, true);


	shell.setText(dm.getDisplayName());

	shell.open();
}
 
开发者ID:BiglySoftware,项目名称:BiglyBT,代码行数:67,代码来源:ColumnFileCount.java


注:本文中的org.eclipse.swt.widgets.Shell.addDisposeListener方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。