view src/viewer_swing/java/com/glavsoft/viewer/swing/LocalMouseCursorShape.java @ 382:37eb97a23dcf

add variable(is,os) to changeVNCServer
author kkb
date Fri, 04 Sep 2015 15:46:11 +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;
    }
}