slider.java

来自「一个非常绚丽的j2em徒刑库」· Java 代码 · 共 67 行

JAVA
67
字号
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   Slider.java

package com.tricastmedia.twuik.forms.formitems;

import com.tricastmedia.twuik.forms.FormItem;
import com.tricastmedia.twuik.forms.Style;

public abstract class Slider extends FormItem
{

    protected Slider(int p0, int p1, int p2, int p3, int p4)
    {
        super(0, 0, 0, false, (Style)null);
    }

    public boolean keyRepeated(int p0)
    {
        return false;
    }

    protected synchronized void reconfigureLAFparameters(int i, int j)
    {
    }

    public final int getCurrentValue()
    {
        return 0;
    }

    public final void setCurrentValue(int i)
    {
    }

    public final void setMaxValue(int i)
    {
    }

    public void setSliderType(int i)
    {
    }

    public boolean keyPressed(int p0)
    {
        return false;
    }

    public boolean keyReleased(int p0)
    {
        return false;
    }

    public final int getMaxValue()
    {
        return 0;
    }

    public static final int SLIDER_HORIZONTAL = 0;
    public static final int SLIDER_VERTICAL = 1;
    public static final int EVENTID_SCROLLED = 8193;
    protected int iSliderType;
    protected int iMaxValue;
    protected int iCurValue;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?