view src/viewer_swing/java/com/glavsoft/viewer/swing/LocalMouseCursorShape.java @ 476:9a672958d7f2

Set sharing ID if TreeManager sharing
author one
date Thu, 07 Sep 2017 19:50:37 +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;
    }
}