Package captureplugin

Source Code of captureplugin.CapturePluginPanel

/*
* CapturePlugin by Andreas Hessel (Vidrec@gmx.de), Bodo Tasche
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*
* CVS information:
*  $RCSfile$
*   $Source$
*     $Date: 2009-09-04 11:15:55 +0200 (Fri, 04 Sep 2009) $
*   $Author: bananeweizen $
* $Revision: 5953 $
*/

package captureplugin;

import java.awt.BorderLayout;
import java.awt.Window;

import javax.swing.JPanel;
import javax.swing.JTabbedPane;

import util.ui.DefaultMarkingPrioritySelectionPanel;
import util.ui.Localizer;
import captureplugin.tabs.DevicePanel;
import captureplugin.tabs.ProgramListPanel;

/**
* This is a Panel for changing the Settings in the Plugin
*/
public class CapturePluginPanel extends JPanel {

    /** Translator */
    private static final Localizer mLocalizer = Localizer.getLocalizerFor(CapturePluginPanel.class);

    /** Tab for Programlist */
    protected static final int TAB_PROGRAMLIST = 0;
    /** Tab for DeviceList */
    protected static final int TAB_DEVICELIST = 1;
    /** Tab for Marking */
    public static final int TAB_MARKING = 2;

    /** GUI */
    private JTabbedPane mTabPane;
   
    private DefaultMarkingPrioritySelectionPanel mMarkingPriorityPanel;
   
    /**
     * Creates the Panel
     *
     * @param owner The parent window.
     * @param data Data to use
     */
    public CapturePluginPanel(Window owner, CapturePluginData data) {
        this.setLayout(new BorderLayout());

        mTabPane = new JTabbedPane();

        mTabPane.addTab(mLocalizer.msg("ProgramList", "Programlist"), new ProgramListPanel(owner, data));
        mTabPane.addTab(mLocalizer.msg("Devices", "Devices"), new DevicePanel(owner, data));
       
        mMarkingPriorityPanel = DefaultMarkingPrioritySelectionPanel.createPanel(data.getMarkPriority(),false,true);
        mTabPane.addTab(DefaultMarkingPrioritySelectionPanel.getTitle(), mMarkingPriorityPanel);

        this.add(mTabPane, BorderLayout.CENTER);
    }


    /**
     * Sets the selected Tab
     * @param num Number of Tab (use TAB_* )
     */
    public void setSelectedTab(int num) {
        mTabPane.setSelectedIndex(num);
    }
   
    /**
     * Gets the index of the selected tab.
     *
     * @return The index of the selected tab.
     */
    public int getSelectedTabIndex() {
      return mTabPane.getSelectedIndex();
    }
   
    /**
     * Saves the marking settings for the program
     */
    public void saveMarkingSettings() {
      CapturePlugin.getInstance().getCapturePluginData().setMarkPriority(mMarkingPriorityPanel.getSelectedPriority());
    }
}
TOP

Related Classes of captureplugin.CapturePluginPanel

TOP
Copyright © 2018 www.massapi.com. 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.