com.actelion.research.util.CursorHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
/*
* Copyright (c) 1997 - 2016
* Actelion Pharmaceuticals Ltd.
* Gewerbestrasse 16
* CH-4123 Allschwil, Switzerland
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the the copyright holder nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package com.actelion.research.util;
import java.awt.*;
import java.awt.image.*;
// Should this go into gui?
public class CursorHelper {
public static final int cChainCursor = 0;
public static final int cDeleteCursor = 1;
public static final int cHandCursor = 2;
public static final int cHandPlusCursor = 3;
public static final int cFistCursor = 4;
public static final int cLassoCursor = 5;
public static final int cLassoPlusCursor = 6;
public static final int cSelectRectCursor = 7;
public static final int cSelectRectPlusCursor = 8;
public static final int cZoomCursor = 9;
public static final int cInvisibleCursor = 10;
public static final int cPointerCursor = 11;
public static final int cTextCursor = 12;
private static final int cCursorCount = 13;
private static final int[][] cCursorData = { {
0xaaa2aaaa, 0xaa84aaaa, 0xaa152aa2, 0xa8514a84, 0xa1485214,
0x852a1452, 0x54aa854a, 0x56aaa12a, 0x56aaa8aa },{
0xaaaa5555, 0xaaa90005, 0xaaa40011, 0xaa900041, 0xaa400101,
0xa9000406, 0xa400101a, 0x9000406a, 0x555501aa, 0x400106aa,
0x40011aaa, 0x40016aaa, 0x5555aaaa },{
0xaaa96aaa, 0xa96419aa, 0xa414146a, 0xa4141066, 0xa9041051,
0xa9041041, 0x96400041, 0x41400001, 0x40400006, 0x90000006,
0xa4000006, 0xa400001a, 0xa900001a, 0xaa40006a, 0xaa90006a,
0xaa90006a },{
0xaaa96aaa, 0xa96419aa, 0xa414146a, 0xa4141066, 0xa9041051,
0xa9041041, 0x96400041, 0x41400001, 0x40404006, 0x90004006,
0xa4055406, 0xa400401a, 0xa900401a, 0xaa40006a, 0xaa90006a,
0xaa90006a },{
0xaaaaaaaa, 0xaaaaaaaa, 0xaaa95aaa, 0xaa54156a, 0xa904105a,
0xa9041046, 0x96400041, 0x91400001, 0x90400006, 0x90000006,
0xa4000006, 0xa400001a, 0xa900001a, 0xaa40006a, 0xaa90006a,
0xaa90006a, },{
0xaaaaaaaa, 0xaaa5556a, 0xa9500016, 0xa4000001, 0x90000001,
0x40000001, 0x40000016, 0x4000056a, 0x95015aaa, 0x4056aaaa,
0x446aaaaa, 0x95aaaaaa, 0xa9aaaaaa, 0xa9aaaaaa, 0xa6aaaaaa },{
0xaaaaaaaa, 0xaaa5556a, 0xa9500016, 0xa4010001, 0x90010001,
0x40155001, 0x40010016, 0x4001056a, 0x95015aaa, 0x4056aaaa,
0x446aaaaa, 0x95aaaaaa, 0xa9aaaaaa, 0xa9aaaaaa, 0xa6aaaaaa },{
0x5555556a, 0x4000002a, 0x4000006a, 0x4000002a, 0x4000006a,
0x4000002a, 0x4000006a, 0x4000002a, 0x4000006a, 0x4000002a,
0x4000006a, 0x4000002a, 0x4444446a },{
0x5555556a, 0x4000002a, 0x4000006a, 0x4000002a, 0x4000006a,
0x4000002a, 0x4000406a, 0x4000402a, 0x4005546a, 0x4000402a,
0x4000406a, 0x4000002a, 0x4444446a },{
0xaaa55aaa, 0xaa5555aa, 0x695aa56a, 0x55aaaa5a, 0x55aaaa56,
0x556aaa96, 0x556a6aa5, 0xaaaa6aa5, 0xaaa556a5, 0x556a6aa5,
0x556a6a96, 0x55aaaa56, 0x55aaaa5a, 0x695aa56a, 0xaa5555aa,
0xaaa55aaa, },
null };
private static final Point[] cCursorHotSpot = {
new Point( 1, 7),
new Point( 7, 5),
new Point( 8, 7),
new Point( 8, 7),
new Point( 8, 7),
new Point( 2, 14),
new Point( 2, 14),
new Point( 0, 0),
new Point( 0, 0),
new Point( 8, 8),
new Point( 0, 0) };
private static Cursor[] sCursor;
public static Cursor getCursor(int cursor) {
if (sCursor == null)
sCursor = new Cursor[cCursorCount];
if (sCursor[cursor] == null)
sCursor[cursor] = createCursor(cursor);
return sCursor[cursor];
}
public static Cursor createCursor(int cursor) {
if (cursor15 && size.height>15) {
BufferedImage image = new BufferedImage(size.width, size.height, BufferedImage.TYPE_INT_ARGB);
if (cCursorData[cursor] != null) {
Graphics2D g2 = image.createGraphics();
g2.setColor(new Color(255, 255, 255, 255)); // white, opaque
for (int j=0; j=0; k--) {
if ((row&3) == 0)
g2.fillRect(k, j, 1, 1);
row >>= 2;
}
}
g2.setColor(new Color(0, 0, 0, 255)); // black, opaque
for (int j=0; j=0; k--) {
if ((row&3) == 1)
g2.fillRect(k, j, 1, 1);
row >>= 2;
}
}
}
return tk.createCustomCursor(image, cCursorHotSpot[cursor], "");
}
}
else {
switch (cursor) {
case cPointerCursor:
return Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR);
case cTextCursor:
return Cursor.getPredefinedCursor(Cursor.TEXT_CURSOR);
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy