| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 | 
| 9 | 10 | 11 | 12 | 13 | 14 | 15 | 
| 16 | 17 | 18 | 19 | 20 | 21 | 22 | 
| 23 | 24 | 25 | 26 | 27 | 28 | 29 | 
| 30 | 
- SWT
 - 김장훈
 - 모던음악만만세
 - 차트쇼쇼쇼
 - 페이스북
 - Wibro
 - 퀄컴
 - "명탐정 코난"
 - 유희열의라디오천국
 - itmusic
 - ETF
 - 위피
 - USIM
 - HSDPA
 - EV-DO Rev. B
 - 그녀가말했다
 - 라디오
 - 민동현의토요명화
 - 김장훈의who
 - 민동현
 - 자바
 - 러시아
 - Java
 - 한국의 기획자들
 - CDMA
 - 공정위
 - 이지형
 - brew
 - 사요
 - VoIP
 
- Today
 
- Total
 
목록SWT (5)
zyint's blog
Many operating systems have the concept of a 'system tray', and it's often nice to be able to ofter a 'tray icon' feature for your application. SWT ships with tray icon support in the form of the org.eclipse.swt.widgets.TrayIcon class. Using a tray icon is fairly simple in SWT: image = new Image(display, BalloonExample.class.getResourceAsStream("tray_icon.gif")); // ... Tray tray = display.getSy..
import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; import org.eclipse.swt.widgets.Text; public class TableClass { public static void main(St..
SWT.BORDER, SWT.CLOSE, SWT.MIN, SWT.MAX, SWT.RESIZE, SWT.TITLE, SWT.NO_TRIM, SWT.SHELL_TRIM, SWT.DIALOG_TRIM, SWT.MODELESS, SWT.PRIMARY_MODAL, SWT.APPLICATION_MODAL, SWT.SYSTEM_MODAL SWT.ON_TOP, SWT.TOOL,
/****************************************************************************** * Copyright (c) 1998, 2004 Jackwind Li Guojie * All right reserved. * * Created on Jan 25, 2004 7:58:06 PM by JACK * $Id$ * * visit: http://www.asprise.com/swt *****************************************************************************/ import org.eclipse.swt.SWT; import org.eclipse.swt.events.MouseEvent; import or..
/* * Create a non-rectangular shell to simulate transparency * * For a list of all SWT example snippets see * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets */ import org.eclipse.swt.SWT; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.Point; ..