|
1 |
| -/* |
2 |
| - * @(#)GraphicsModeConstants.java |
3 |
| - * |
4 |
| - * Copyright (c) 2008 Jeremy Wood. All Rights Reserved. |
5 |
| - * |
6 |
| - * You have a non-exclusive, royalty free, license to use, |
7 |
| - * modify and redistribute this software in source and binary code form, |
8 |
| - * provided that i) this copyright notice and license appear on all copies of |
9 |
| - * the software; and ii) You do not utilize the software in a manner |
10 |
| - * which is disparaging to the original author. |
11 |
| - * |
12 |
| - * This software is provided "AS IS," without a warranty of any kind. ALL |
13 |
| - * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY |
14 |
| - * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR |
15 |
| - * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. THE AUTHOR SHALL NOT BE |
16 |
| - * LIABLE FOR ANY DAMAGES SUFFERED AS A RESULT OF USING, MODIFYING |
17 |
| - * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL THE |
18 |
| - * AUTHOR BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, |
19 |
| - * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER |
20 |
| - * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF |
21 |
| - * OR INABILITY TO USE SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE |
22 |
| - * POSSIBILITY OF SUCH DAMAGES. |
23 |
| - */package eu.mihosoft.vrl.ext.com.bric.qt; |
24 |
| - |
25 |
| - /** This is not a public class because I expect to make some significant |
26 |
| - * changes to this project in the next year. |
27 |
| - * <P>Use at your own risk. This class (and its package) may change in future releases. |
28 |
| - * <P>Not that I'm promising there will be future releases. There may not be. :) |
29 |
| - */ |
30 |
| -class GraphicsModeConstants { |
31 |
| - public static final int COPY = 0x00; |
32 |
| - public static final int DITHER_COPY = 0x40; |
33 |
| - public static final int BLEND = 0x20; |
34 |
| - public static final int TRANSPARENT = 0x24; |
35 |
| - public static final int STRAIGHT_ALPHA = 0x100; |
36 |
| - public static final int PREMUL_WHITE_ALPHA = 0x101; |
37 |
| - public static final int PREMUL_BLACK_ALPHA = 0x102; |
38 |
| - public static final int STRAIGHT_ALPHA_BLEND = 0x104; |
39 |
| - public static final int COMPOSITION = 0x103; |
40 |
| -} |
| 1 | +/* |
| 2 | + * @(#)GraphicsModeConstants.java |
| 3 | + * |
| 4 | + * Copyright (c) 2008 Jeremy Wood. All Rights Reserved. |
| 5 | + * |
| 6 | + * You have a non-exclusive, royalty free, license to use, |
| 7 | + * modify and redistribute this software in source and binary code form, |
| 8 | + * provided that i) this copyright notice and license appear on all copies of |
| 9 | + * the software; and ii) You do not utilize the software in a manner |
| 10 | + * which is disparaging to the original author. |
| 11 | + * |
| 12 | + * This software is provided "AS IS," without a warranty of any kind. ALL |
| 13 | + * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY |
| 14 | + * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR |
| 15 | + * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. THE AUTHOR SHALL NOT BE |
| 16 | + * LIABLE FOR ANY DAMAGES SUFFERED AS A RESULT OF USING, MODIFYING |
| 17 | + * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL THE |
| 18 | + * AUTHOR BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, |
| 19 | + * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER |
| 20 | + * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF |
| 21 | + * OR INABILITY TO USE SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE |
| 22 | + * POSSIBILITY OF SUCH DAMAGES. |
| 23 | + */package eu.mihosoft.vrl.ext.com.bric.qt; |
| 24 | + |
| 25 | + /** This is not a public class because I expect to make some significant |
| 26 | + * changes to this project in the next year. |
| 27 | + * <P>Use at your own risk. This class (and its package) may change in future releases. |
| 28 | + * <P>Not that I'm promising there will be future releases. There may not be. :) |
| 29 | + */ |
| 30 | +class GraphicsModeConstants { |
| 31 | + public static final int COPY = 0x00; |
| 32 | + public static final int DITHER_COPY = 0x40; |
| 33 | + public static final int BLEND = 0x20; |
| 34 | + public static final int TRANSPARENT = 0x24; |
| 35 | + public static final int STRAIGHT_ALPHA = 0x100; |
| 36 | + public static final int PREMUL_WHITE_ALPHA = 0x101; |
| 37 | + public static final int PREMUL_BLACK_ALPHA = 0x102; |
| 38 | + public static final int STRAIGHT_ALPHA_BLEND = 0x104; |
| 39 | + public static final int COMPOSITION = 0x103; |
| 40 | +} |
0 commit comments