⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stochasticpreferencepage.java

📁 EclipseTrader is a stock exchange analysis system, featuring shares pricing watch, intraday and hi
💻 JAVA
字号:
/* * Copyright (c) 2004-2006 Marco Maccaferri and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: *     Marco Maccaferri - initial API and implementation */package net.sourceforge.eclipsetrader.charts.indicators;import org.eclipse.jface.preference.ColorSelector;import org.eclipse.swt.SWT;import org.eclipse.swt.layout.GridData;import org.eclipse.swt.layout.GridLayout;import org.eclipse.swt.widgets.Combo;import org.eclipse.swt.widgets.Composite;import org.eclipse.swt.widgets.Label;import org.eclipse.swt.widgets.Spinner;import org.eclipse.swt.widgets.Text;import net.sourceforge.eclipsetrader.charts.IndicatorPluginPreferencePage;public class StochasticPreferencePage extends IndicatorPluginPreferencePage{    private ColorSelector dcolor;    private ColorSelector kcolor;    private ColorSelector buyColor;    private ColorSelector sellColor;    private Combo dlineType;    private Text dlabel;    private Spinner dperiod;    private Combo klineType;    private Text klabel;    private Spinner kperiod;    private Spinner period;    private Spinner buyLine;    private Spinner sellLine;    private Combo maType;    public StochasticPreferencePage()    {    }    /* (non-Javadoc)     * @see net.sourceforge.eclipsetrader.charts.IndicatorPluginPreferencePage#createControl(org.eclipse.swt.widgets.Composite)     */    public void createControl(Composite parent)    {        Composite content = new Composite(parent, SWT.NONE);        GridLayout gridLayout = new GridLayout(2, false);        gridLayout.marginWidth = gridLayout.marginHeight = 0;        content.setLayout(gridLayout);        content.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true));        setControl(content);                Label label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_DColor);        label.setLayoutData(new GridData(125, SWT.DEFAULT));        dcolor = new ColorSelector(content);        dcolor.setColorValue(getSettings().getColor("dcolor", Stochastic.DEFAULT_DCOLOR).getRGB()); //$NON-NLS-1$        dlineType = createLineTypeCombo(content, Messages.StochasticPreferencePage_DLineType, getSettings().getInteger("dlineType", Stochastic.DEFAULT_DLINETYPE).intValue()); //$NON-NLS-2$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_DLabel);        dlabel = new Text(content, SWT.BORDER);        dlabel.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));        dlabel.setText(getSettings().getString("dlabel", Stochastic.DEFAULT_DLABEL)); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_DPeriod);        dperiod = new Spinner(content, SWT.BORDER);        dperiod.setLayoutData(new GridData(25, SWT.DEFAULT));        dperiod.setMinimum(1);        dperiod.setMaximum(99);        dperiod.setSelection(getSettings().getInteger("dperiod", Stochastic.DEFAULT_DPERIOD).intValue()); //$NON-NLS-1$                label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_KColor);        kcolor = new ColorSelector(content);        kcolor.setColorValue(getSettings().getColor("kcolor", Stochastic.DEFAULT_KCOLOR).getRGB()); //$NON-NLS-1$        klineType = createLineTypeCombo(content, Messages.StochasticPreferencePage_KLineType, getSettings().getInteger("klineType", Stochastic.DEFAULT_KLINETYPE).intValue()); //$NON-NLS-2$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_KLabel);        klabel = new Text(content, SWT.BORDER);        klabel.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));        klabel.setText(getSettings().getString("klabel", Stochastic.DEFAULT_KLABEL)); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_KPeriod);        kperiod = new Spinner(content, SWT.BORDER);        kperiod.setLayoutData(new GridData(25, SWT.DEFAULT));        kperiod.setMinimum(1);        kperiod.setMaximum(99);        kperiod.setSelection(getSettings().getInteger("kperiod", Stochastic.DEFAULT_KPERIOD).intValue()); //$NON-NLS-1$        maType = createMovingAverageCombo(content, Messages.StochasticPreferencePage_MAType, getSettings().getInteger("maType", Stochastic.DEFAULT_MATYPE).intValue()); //$NON-NLS-2$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_Period);        period = new Spinner(content, SWT.BORDER);        period.setLayoutData(new GridData(25, SWT.DEFAULT));        period.setMinimum(1);        period.setMaximum(99);        period.setSelection(getSettings().getInteger("period", Stochastic.DEFAULT_PERIOD).intValue()); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_BuyLineColor);        buyColor = new ColorSelector(content);        buyColor.setColorValue(getSettings().getColor("buyColor", Stochastic.DEFAULT_BUYCOLOR).getRGB()); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_BuyLine);        buyLine = new Spinner(content, SWT.BORDER);        buyLine.setLayoutData(new GridData(25, SWT.DEFAULT));        buyLine.setMinimum(1);        buyLine.setMaximum(99);        buyLine.setSelection(getSettings().getInteger("buyLine", Stochastic.DEFAULT_BUYLINE).intValue()); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_SellLineColor);        sellColor = new ColorSelector(content);        sellColor.setColorValue(getSettings().getColor("sellColor", Stochastic.DEFAULT_SELLCOLOR).getRGB()); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.StochasticPreferencePage_SellLine);        sellLine = new Spinner(content, SWT.BORDER);        sellLine.setLayoutData(new GridData(25, SWT.DEFAULT));        sellLine.setMinimum(1);        sellLine.setMaximum(99);        sellLine.setSelection(getSettings().getInteger("sellLine", Stochastic.DEFAULT_SELLLINE).intValue()); //$NON-NLS-1$    }    /* (non-Javadoc)     * @see net.sourceforge.eclipsetrader.charts.IndicatorPluginPreferencePage#performFinish()     */    public void performFinish()    {        getSettings().set("dcolor", dcolor.getColorValue()); //$NON-NLS-1$        getSettings().set("kcolor", kcolor.getColorValue()); //$NON-NLS-1$        getSettings().set("buyColor", buyColor.getColorValue()); //$NON-NLS-1$        getSettings().set("sellColor", sellColor.getColorValue()); //$NON-NLS-1$        getSettings().set("dlineType", dlineType.getSelectionIndex()); //$NON-NLS-1$        getSettings().set("dlabel", dlabel.getText()); //$NON-NLS-1$        getSettings().set("dperiod", dperiod.getSelection()); //$NON-NLS-1$        getSettings().set("klineType", klineType.getSelectionIndex()); //$NON-NLS-1$        getSettings().set("klabel", klabel.getText()); //$NON-NLS-1$        getSettings().set("kperiod", kperiod.getSelection()); //$NON-NLS-1$        getSettings().set("period", period.getSelection()); //$NON-NLS-1$        getSettings().set("buyLine", buyLine.getSelection()); //$NON-NLS-1$        getSettings().set("sellLine", sellLine.getSelection()); //$NON-NLS-1$        getSettings().set("maType", maType.getSelectionIndex()); //$NON-NLS-1$    }}

⌨️ 快捷键说明

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