/* * The MIT License (MIT) * * Copyright (c) 2007-2015 Broad Institute * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ /* * Created by JFormDesigner on Sat Apr 23 22:58:24 EDT 2011 */ package org.broad.igv.peaks; import javax.swing.event.*; import org.broad.igv.ui.IGV; import java.awt.*; import java.beans.*; import javax.swing.*; import javax.swing.border.*; /** * @author Stan Diamond */ public class PeakControlDialog extends JDialog { public PeakControlDialog(Frame owner) { super(owner); initComponents(); scoreSlider.setValue((int) PeakTrack.getScoreThreshold()); foldChangeSlider.setValue((int) PeakTrack.getFoldChangeThreshold()); setAlwaysOnTop(true); //setUndecorated(true); this.setLocation(owner.getBounds().width - 200, 50); } private void scoreSliderStateChanged(ChangeEvent e) { PeakTrack.setScoreThreshold(scoreSlider.getValue()); IGV.getInstance().revalidateTrackPanels(); } private void foldChangeSliderStateChanged(ChangeEvent e) { PeakTrack.setFoldChangeThreshold(foldChangeSlider.getValue()); IGV.getInstance().revalidateTrackPanels(); } private void slider1PropertyChange(PropertyChangeEvent e) { // TODO add your code here } private void slider1StateChanged(ChangeEvent e) { // TODO add your code here } private void initComponents() { // JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents // Generated using JFormDesigner non-commercial license dialogPane = new JPanel(); contentPanel = new JPanel(); scoreSlider = new JSlider(); label1 = new JLabel(); label2 = new JLabel(); foldChangeSlider = new JSlider(); //======== this ======== Container contentPane = getContentPane(); contentPane.setLayout(new BorderLayout()); //======== dialogPane ======== { dialogPane.setBorder(new EmptyBorder(12, 12, 12, 12)); dialogPane.setLayout(new BorderLayout()); //======== contentPanel ======== { contentPanel.setLayout(null); //---- scoreSlider ---- scoreSlider.setPaintTicks(true); scoreSlider.setPaintLabels(true); scoreSlider.setToolTipText("Adjust score threshold"); scoreSlider.setMajorTickSpacing(20); scoreSlider.addChangeListener(new ChangeListener() { public void stateChanged(ChangeEvent e) { scoreSliderStateChanged(e); } }); contentPanel.add(scoreSlider); scoreSlider.setBounds(5, 15, 215, scoreSlider.getPreferredSize().height); //---- label1 ---- label1.setText("Score threshold:"); contentPanel.add(label1); label1.setBounds(new Rectangle(new Point(5, 0), label1.getPreferredSize())); //---- label2 ---- label2.setText("Fold change threshold:"); contentPanel.add(label2); label2.setBounds(new Rectangle(new Point(5, 85), label2.getPreferredSize())); //---- foldChangeSlider ---- foldChangeSlider.setPaintTicks(true); foldChangeSlider.setPaintLabels(true); foldChangeSlider.setToolTipText("Adjust score threshold"); foldChangeSlider.setMajorTickSpacing(2); foldChangeSlider.setMinorTickSpacing(1); foldChangeSlider.setMaximum(10); foldChangeSlider.setValue(0); foldChangeSlider.addChangeListener(new ChangeListener() { public void stateChanged(ChangeEvent e) { foldChangeSliderStateChanged(e); } }); contentPanel.add(foldChangeSlider); foldChangeSlider.setBounds(5, 100, 215, 52); { // compute preferred size Dimension preferredSize = new Dimension(); for(int i = 0; i < contentPanel.getComponentCount(); i++) { Rectangle bounds = contentPanel.getComponent(i).getBounds(); preferredSize.width = Math.max(bounds.x + bounds.width, preferredSize.width); preferredSize.height = Math.max(bounds.y + bounds.height, preferredSize.height); } Insets insets = contentPanel.getInsets(); preferredSize.width += insets.right; preferredSize.height += insets.bottom; contentPanel.setMinimumSize(preferredSize); contentPanel.setPreferredSize(preferredSize); } } dialogPane.add(contentPanel, BorderLayout.CENTER); } contentPane.add(dialogPane, BorderLayout.CENTER); pack(); setLocationRelativeTo(getOwner()); // JFormDesigner - End of component initialization //GEN-END:initComponents } // JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables // Generated using JFormDesigner non-commercial license private JPanel dialogPane; private JPanel contentPanel; private JSlider scoreSlider; private JLabel label1; private JLabel label2; private JSlider foldChangeSlider; // JFormDesigner - End of variables declaration //GEN-END:variables }