view src/viewer_swing/java/com/glavsoft/viewer/swing/LocalMouseCursorShape.java @ 445:c2323d1012d4

fit Screen retina fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 17 Jun 2016 15:58:14 +0900
parents 17b702648079
children
line wrap: on
line source

package com.glavsoft.viewer.swing;

/**
 * @author dime at tightvnc.com
 */
public enum LocalMouseCursorShape {
    DOT("dot"),
    SMALL_DOT("smalldot"),
    SYSTEM_DEFAULT("default"),
    NO_CURSOR("nocursor");

    private String cursorName;

    LocalMouseCursorShape(String name) {
        this.cursorName = name;
    }

    public String getCursorName() {
        return  cursorName;
    }
}