Package net.sf.mzmine.modules.visualization.tic

Examples of net.sf.mzmine.modules.visualization.tic.TICPlot


    // Panel for XYPlot
    pnlPlotXY = new JPanel(new BorderLayout());
    GUIUtils.addMarginAndBorder(pnlPlotXY, 10);
    pnlPlotXY.setBackground(Color.white);

    ticPlot = new TICPlot((ActionListener) this);
    pnlPlotXY.add(ticPlot, BorderLayout.CENTER);

    toolBar = new TICToolBar(ticPlot);
    toolBar.getComponentAtIndex(0).setVisible(false);
    pnlPlotXY.add(toolBar, BorderLayout.EAST);
View Full Code Here


    // Put all together.
    pnlVisible = new JPanel(new BorderLayout());
    pnlVisible.add(previewPanel, BorderLayout.NORTH);

    // TIC plot.
    ticPlot = new TICPlot(this);
    ticPlot.setMinimumSize(MINIMUM_TIC_DIMENSIONS);

    // Tool bar.
    final TICToolBar toolBar = new TICToolBar(ticPlot);
    toolBar.getComponentAtIndex(0).setVisible(false);
View Full Code Here

    pnlPreviewFields.add(pnlLab, BorderLayout.WEST);
    pnlPreviewFields.add(pnlFlds, BorderLayout.CENTER);
    pnlPreviewFields.setVisible(false);

    ticPlot = new TICPlot(this);
    ticPlot.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.RAISED));
    ticPlot.setMinimumSize(new Dimension(400, 300));

    mainPanel.add(pnlPreviewFields, 0, getNumberOfParameters() + 3, 3, 1,
        0, 0);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.modules.visualization.tic.TICPlot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.