资源简介
Eclipse的SWT插件必备jar和激活工具 都已经整理在内,博客里还有配置讲解!Eclipse的SWT插件必备jar和激活工具 都已经整理在内,博客里还有配置讲解!Eclipse的SWT插件必备jar和激活工具 都已经整理在内,博客里还有配置讲解!
代码片段和文件信息
package org.eclipse.swt.snippets;
import org.eclipse.jface.action.MenuManager;
import org.eclipse.jface.action.StatusLineManager;
import org.eclipse.jface.action.ToolBarManager;
import org.eclipse.jface.window.ApplicationWindow;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class ApplicationWidow extends ApplicationWindow {
/**
* Create the application window.
*/
public ApplicationWidow() {
super(null);
createActions();
addToolBar(SWT.FLAT | SWT.WRAP);
addMenuBar();
addStatusLine();
}
/**
* Create contents of the application window.
* @param parent
*/
@Override
protected Control createContents(Composite parent) {
Composite container = new Composite(parent SWT.NONE);
return container;
}
/**
* Create the actions.
*/
private void createActions() {
// Create the actions
}
/**
* Create the menu manager.
* @return the menu manager
*/
@Override
protected MenuManager createMenuManager() {
MenuManager menuManager = new MenuManager(“menu“);
return menuManager;
}
/**
* Create the toolbar manager.
* @return the toolbar manager
*/
@Override
protected ToolBarManager createToolBarManager(int style) {
ToolBarManager toolBarManager = new ToolBarManager(style);
return toolBarManager;
}
/**
* Create the status line manager.
* @return the status line manager
*/
@Override
protected StatusLineManager createStatusLineManager() {
StatusLineManager statusLineManager = new StatusLineManager();
return statusLineManager;
}
/**
* Launch the application.
* @param args
*/
public static void main(String args[]) {
try {
ApplicationWidow window = new ApplicationWidow();
window.setBlockOnOpen(true);
window.open();
Display.getCurrent().dispose();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Configure the shell.
* @param newShell
*/
@Override
protected void configureShell(Shell newShell) {
super.configureShell(newShell);
newShell.setText(“New Application“);
}
/**
* Return the initial size of the window.
*/
@Override
protected Point getInitialSize() {
return new Point(450 300);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 121856 2009-04-27 13:31 openGL相关库文件\dll\glu32.dll
----------- --------- ---------- ----- ----
121856 1
- 上一篇:火车票订票系统
- 下一篇:JAVA并发编程实践pdf-高清晰带目录完整版
相关资源
- hadoop-eclipse-plugin-2.7.7.jar
- eclipse中文java1.8API提示
- hadoop-eclipse-plugin-2.9.0.jar
- 基于SSH框架的在线考试系统 使用boo
- ecplise html编辑器tk.eclipse.plugin.htmledi
- eclipse整合springboot+mybatis项目demo完整
- JAVA实现的BT客户端
- 购物商城jsp源码myeclipse+mysql开发Esho
- 酒店管理系统ssh demo版
- android 音乐播放器
- hadoop-eclipse-plugin-2.4.1.jar windows
- hadoop-eclipse-plugin-2.7.7.jar 官方版本编译
- spring源码及jar包,可直接导入eclipse
- Eclipse Java EE win64位
- qtjambi-4.5.2开发包+qtjambi-eclipse插件.z
- Eclipse JavaEE 2020-03最新版 eclipse-jee-20
- 可视化Java SWTJFace GUI程序设计教程——
- 基于JavaWEB的影视创作论坛的设计与实
- eclipse-3.7.1 windows 32位/64位
- java html php jquery eclipse等各种API
- 家庭财务管理系统
- 基于java/jsp的个人博客系统的设计与实
- 基于jsp/java的新闻发布及管理系统的设
- 官方原版eclipse-inst-win64.exe
- java+mysql+eclipse搞的人事管理系统
- eclipse-java-2019-09-R-win32-x86_64.zip
- eclipse jee helios SR2 64位
- hadoop2.9.2 eclipse插件
- Hadoop-eclipse插件
- Android各类音频播放器源码集合(共
评论
共有 条评论