SWT
Author
Zhou Renjian
Create@
2004-02-14 03:30

Eclipse: JFace/SWT
本记录所在类别:
- Eclipse - 2004-08-14 09:05
Things about Eclipse, mainly about R3.0 ...
- Java - 2004-01-31 23:12
To learn about java ...
本记录相关记录:
- linux下面的swt运行的窗口什么都没有 - 2005-01-03 00:27
发信人: SawPad (SawPad), 信区: Eclipse 标? 题: Re: linux下面的swt会有这种现象 ? 发信站: 饮水思源 (2005年01月02日20:55:29 星期天), 站内信件 搞定了,'open()以后layout(true)一下就好了? :) 【 在 enykee (不放过成功概率即使是0.00001的尝试机会) 的大作中提到: 】 : 好像这要求每个wid ...
- Re: 请问java swing如何做出透明的窗口 - 2004-11-21 20:55
发信人: Duke (一年了唉), 信区: Java???????????????????????????????????????????????????????????????????????????????????? 标? 题: Re: 请问java swing如何做出透明的窗口????????????????????????????????????????????????????????? ...
- Implement the convenience of system trayitem - 2004-09-05 03:07
?public static boolean isWindowIconfied = false; ?public static int deactiveTime = 0; ?public static void main(String[] args) { ??Display display = new Display (); ??final Shell shell = new Shell (dis ...
- (Manning) Eclipse in Action - 2004-03-23 13:26
(Manning) Eclipse in Action 一本还算可以的关于eclipse的书 ...
- Browser only hook t… - 2004-03-15 00:42
Browser only hook the Menu's Accelerator BTW: ??int hAccel = OS.SendMessage(hwnd, OS.WM_APP+1, 0, 0); Can I using OS.* to hook the mousehook or keyhook? ...
- When using SWT.*… - 2004-03-15 00:19
When using SWT.*, using (* & SWT.*) == 0 instead of using *==SWT.* In other case, using & operator is considered to be?careful. ...
- 在applicationwindo… - 2004-03-13 21:23
在applicationwindow的menu中加入一个action会导致全部的窗口,包括IE控件的事件都会被截拦。譬如Copy(Ctrl+C)! 不过不会干扰IE控件的事件的功能。 ...
- 常用的eclipse IDE图标 - 2004-03-09 20:29
常用的eclipse IDE图标 D:\eclipse3M7\plugins\org.eclipse.ui_3.0.0\icons\full\ctool16 ...
- 如果要重载Enabl… - 2004-03-05 21:04
如果要重载Enable或Visible之类的函数,要确保是否元素已经完全载入了 例如对于IEPage的类,如果page还没有完全载入,则可能导致error。 ...
- 对于INoteItem的e… - 2004-02-29 01:50
对于INoteItem的equals代码修正如下: ????public?boolean?equals(Object?obj)?{ ????????if?(this?==?obj) ????????????return?true; ????????if?(obj?==?null)? ????????????return?false; ????????if?(!(obj?instanceof?IN ...
- 感觉selection还么… - 2004-02-29 01:36
感觉selection还么有真正解决其混乱的局面。毕竟INoteItem的equals是要针对整个treeviewer,可能要回溯到根的情况。 ...
- 对于DND中,设置… - 2004-02-29 00:26
对于DND中,设置TreeViewer中两个元素相等,要讲究,要不对导致意想不到的效果,譬如说 ????public?boolean?equals(Object?obj)?{ ????????if?(this?==?obj) ????????????return?true; ????????if?(obj?==?null)? ????????????return?false; ????????if ...
- 在进行DND的设… - 2004-02-28 23:08
在进行DND的设置时,对于Transfer,要求event.data!=null,这就要求在 ????public?Object?nativeToJava(TransferData?transferData){ ????????return?new?Object(); ????} 这样,随便都可以保证event.data!=null,也就不会出现event.detail==DND.DROP_NON ...
- 在swt的browser… - 2004-02-26 11:49
在swt的browser中,如果没有封装new window的事件的话,新打开的窗口将是IE的窗口 ...
- getDefault().getDe… - 2004-02-25 22:43
getDefault().getDescriptor().getInstallURL(); public static ImageDescriptor getImageDescriptor(String name) { String iconPath = "icons/"; try { URL installURL = getDefault().getDescriptor().getInstall ...
- 对于Variant,要检… - 2004-02-24 00:36
对于Variant,要检验其是否为Null,要通过*.getType() == COM.VT_NULL, eg if (pVarResult.getType() == COM.VT_NULL) System.out.println("LKD"); ...
- 转换IHTMLXXX类… - 2004-02-24 00:00
转换IHTMLXXX类型的java代码: /*???????result = dispatchBody.QueryInterface(IECOM.IIDIHTMLElement, dispid); ???????System.out.println(result); ???????IDispatch dispatchBody2 = new IDispatch(dispid[0]); ??????? ...
- ViewerSorter中的c… - 2004-02-22 13:55
ViewerSorter中的category的很多计算会导致效率不高,因为他进行排序的时候会一次次地重新调用category进行计算。 ...
- Note: Do not just o… - 2004-02-21 22:50
Note: Do not just override dispose() to release the color. This only works in the case where dispose is actually sent to the widget. When the shell is disposed this does not happen, so overriding disp ...
- Create native, cros… - 2004-02-12 22:01
Create?native,?cross-platform?GUI?applications It is wonderful!!! http://www-106.ibm.com/developerworks/java/library/j-nativegui2/ especially I must? install a new environment: http://www-106.ibm.com/ ...
- 对于swt中所有的… - 2004-02-06 19:09
对于swt中所有的与系统有关的都要用-fjni来编译,譬如win32或motif或ole和awt ...
- To run SWT standal… - 2004-02-04 12:58
To run SWT standalone Java Program, add the following VM arguments besides adding the external JARs -Djava.library.path=D:\eclipse\plugins\org.eclipse.swt.win32_3.0.0\os\win32\x86 ...