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

📄 marketthermometerpreferences.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 net.sourceforge.eclipsetrader.charts.IndicatorPluginPreferencePage;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;public class MarketThermometerPreferences extends IndicatorPluginPreferencePage{    private ColorSelector upColor;    private ColorSelector downColor;    private ColorSelector threshColor;    private Text lineLabel;    private Combo lineType;    private Spinner threshold;    private Spinner smoothing;    private Combo smoothingType;    private Combo maType;    private ColorSelector maColor;    private Combo maLineType;    private Text maLabel;    private Spinner maPeriod;    public MarketThermometerPreferences()    {    }    /* (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.MarketThermometerPreferences_ColorAboveMA);        upColor = new ColorSelector(content);        upColor.setColorValue(getSettings().getColor("upColor", MarketThermometer.DEFAULT_UP_COLOR).getRGB()); //$NON-NLS-1$                label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_ColorBelowMA);        downColor = new ColorSelector(content);        downColor.setColorValue(getSettings().getColor("downColor", MarketThermometer.DEFAULT_DOWN_COLOR).getRGB()); //$NON-NLS-1$                label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_ThresholdColor);        threshColor = new ColorSelector(content);        threshColor.setColorValue(getSettings().getColor("threshColor", MarketThermometer.DEFAULT_THRESH_COLOR).getRGB()); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_Label);        label.setLayoutData(new GridData(125, SWT.DEFAULT));        lineLabel = new Text(content, SWT.BORDER);        lineLabel.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));        lineLabel.setText(getSettings().getString("label", MarketThermometer.DEFAULT_LABEL)); //$NON-NLS-1$        lineType = createLineTypeCombo(content, Messages.MarketThermometerPreferences_LineType, getSettings().getInteger("lineType", MarketThermometer.DEFAULT_LINETYPE).intValue()); //$NON-NLS-2$        label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_Threshold);        threshold = new Spinner(content, SWT.BORDER);        threshold.setLayoutData(new GridData(25, SWT.DEFAULT));        threshold.setMinimum(2);        threshold.setMaximum(99);        threshold.setSelection(getSettings().getInteger("threshold", MarketThermometer.DEFAULT_THRESHOLD).intValue()); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_Smoothing);        smoothing = new Spinner(content, SWT.BORDER);        smoothing.setLayoutData(new GridData(25, SWT.DEFAULT));        smoothing.setMinimum(2);        smoothing.setMaximum(99);        smoothing.setSelection(getSettings().getInteger("smoothing", MarketThermometer.DEFAULT_SMOOTHING).intValue()); //$NON-NLS-1$                smoothingType = createMovingAverageCombo(content, Messages.MarketThermometerPreferences_SmoothingType, MarketThermometer.DEFAULT_SMOOTHTYPE);                label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_MAColor);        maColor = new ColorSelector(content);        maColor.setColorValue(getSettings().getColor("maColor", MarketThermometer.DEFAULT_MA_COLOR).getRGB()); //$NON-NLS-1$        maLineType = createLineTypeCombo(content, Messages.MarketThermometerPreferences_MALineType, getSettings().getInteger("maLineType", MarketThermometer.DEFAULT_MA_LINETYPE).intValue()); //$NON-NLS-2$        label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_MALabel);        label.setLayoutData(new GridData(125, SWT.DEFAULT));        maLabel = new Text(content, SWT.BORDER);        maLabel.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));        maLabel.setText(getSettings().getString("maLabel", MarketThermometer.DEFAULT_MA_LABEL)); //$NON-NLS-1$        label = new Label(content, SWT.NONE);        label.setText(Messages.MarketThermometerPreferences_MAPeriod);        maPeriod = new Spinner(content, SWT.BORDER);        maPeriod.setLayoutData(new GridData(25, SWT.DEFAULT));        maPeriod.setMinimum(2);        maPeriod.setMaximum(99);        maPeriod.setSelection(getSettings().getInteger("maPeriod", MarketThermometer.DEFAULT_MA_PERIOD).intValue()); //$NON-NLS-1$        maType = createMovingAverageCombo(content, Messages.MarketThermometerPreferences_MAType, getSettings().getInteger("maType", MarketThermometer.DEFAULT_MA_TYPE).intValue()); //$NON-NLS-2$    }        /* (non-Javadoc)     * @see net.sourceforge.eclipsetrader.charts.IndicatorPluginPreferencePage#performFinish()     */    public void performFinish()    {        getSettings().set("downColor", downColor.getColorValue()); //$NON-NLS-1$        getSettings().set("upColor", upColor.getColorValue()); //$NON-NLS-1$        getSettings().set("threshColor", threshColor.getColorValue()); //$NON-NLS-1$        getSettings().set("maColor", maColor.getColorValue()); //$NON-NLS-1$        getSettings().set("maLineType", maLineType.getSelectionIndex()); //$NON-NLS-1$        getSettings().set("label", lineLabel.getText()); //$NON-NLS-1$        getSettings().set("lineType", lineType.getSelectionIndex()); //$NON-NLS-1$        getSettings().set("threshold", threshold.getSelection()); //$NON-NLS-1$        getSettings().set("smoothing", smoothing.getSelection()); //$NON-NLS-1$        getSettings().set("maPeriod", maPeriod.getSelection()); //$NON-NLS-1$        getSettings().set("maType", maType.getSelectionIndex()); //$NON-NLS-1$        getSettings().set("smoothType", smoothingType.getSelectionIndex()); //$NON-NLS-1$    }}

⌨️ 快捷键说明

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