|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
digitalmars.D.dwt - Curse you, DWT Cursors!
As far as I can tell SWT (and therefore DWT) Cursors do not support alpha masks (only 1-bit masks). They also don't have any official way to do an end run around the API and use native calls if desired. Fortunately the bits of state needed to work around it are public (the default constructor and access to the .handle property), though unintentionally so, it seems. --bb Apr 09 2008
Bill Baxter schrieb:As far as I can tell SWT (and therefore DWT) Cursors do not support alpha masks (only 1-bit masks). They also don't have any official way to do an end run around the API and use native calls if desired. Fortunately the bits of state needed to work around it are public (the default constructor and access to the .handle property), though unintentionally so, it seems. --bb Apr 13 2008
Frank Benoit wrote:Bill Baxter schrieb:As far as I can tell SWT (and therefore DWT) Cursors do not support alpha masks (only 1-bit masks). They also don't have any official way to do an end run around the API and use native calls if desired. Fortunately the bits of state needed to work around it are public (the default constructor and access to the .handle property), though unintentionally so, it seems. --bb Apr 13 2008
|