Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] How to create a pen with the width less than 1


Latest 3.3 SWT supports that. See GC.setLineAttributes().

Silenio



"Long, Bin" <blong@xxxxxxxx>
Sent by: platform-swt-dev-bounces@xxxxxxxxxxx

05/17/2007 05:36 AM

Please respond to
"Eclipse Platform SWT component developers list."        <platform-swt-dev@xxxxxxxxxxx>

To
<platform-swt-dev@xxxxxxxxxxx>
cc
Subject
[platform-swt-dev] How to create a pen with the width less than 1





Hi, everyone.
 
In SWT ‘s source, I can see the following code:
 
org.eclipse.swt.graphics.GC.java
 
int createGdipPen() {
        …
        int pen = Gdip.Pen_new(color, Math.max (1, width));
        …
}
 
My question is how to create a pen with the width less than 1. Does not the SWT support that?
 
Thanks
 
Bin
----------------------------------------------------------------------------
Long,Bin
SPSS Software Development (Xi'an) Co., Ltd.
Tel: 0086-029-86690106-7042
Fax: 0086-029-87607254
 _______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-swt-dev


Back to the top