/*-
* Copyright (C) 2006 Erik Larsson
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
package org.catacombae.hfsexplorer.gui;
/**
* @author <a href="http://www.catacombae.org/" target="_top">Erik Larsson</a>
*/
public class SelectDevicePanel extends javax.swing.JPanel {
/** Creates new form SelectWindowsDevicePanel */
public SelectDevicePanel(final String exampleDeviceName) {
initComponents();
selectSpecifyGroup.add(selectDeviceButton);
selectSpecifyGroup.add(specifyDeviceNameButton);
if(exampleDeviceName != null) {
specifyDeviceNameButton.setText(specifyDeviceNameButton.getText() +
" (example: " + exampleDeviceName + ")");
}
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
selectSpecifyGroup = new javax.swing.ButtonGroup();
partitionGroup = new javax.swing.ButtonGroup();
selectDeviceButton = new javax.swing.JRadioButton();
specifyDeviceNameButton = new javax.swing.JRadioButton();
specifyDeviceNameField = new javax.swing.JTextField();
detectedDevicesCombo = new javax.swing.JComboBox();
detectedDevicesLabel = new javax.swing.JLabel();
loadButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
warningLabel = new javax.swing.JLabel();
autodetectButton = new javax.swing.JButton();
autodetectLabel = new javax.swing.JLabel();
selectDeviceButton.setSelected(true);
selectDeviceButton.setText("Select a device");
selectDeviceButton.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
selectDeviceButton.setMargin(new java.awt.Insets(0, 0, 0, 0));
specifyDeviceNameButton.setText("Specify device name");
specifyDeviceNameButton.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
specifyDeviceNameButton.setMargin(new java.awt.Insets(0, 0, 0, 0));
specifyDeviceNameField.setEnabled(false);
detectedDevicesCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Harddisk0\\Partition1", "Harddisk0\\Partition2", "Harddisk1\\Partition1", "CdRom0", "CdRom1" }));
detectedDevicesLabel.setText("Detected devices:");
loadButton.setText("Load");
cancelButton.setText("Cancel");
warningLabel.setText("(hybrid CD-ROMs with both HFS/+/X and ISO filesystems won't work)");
autodetectButton.setText("Autodetect...");
autodetectLabel.setText("Automatically detects HFS/HFS+/HFSX partitions on your system");
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.add(autodetectButton)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(autodetectLabel))
.add(layout.createSequentialGroup()
.add(detectedDevicesLabel)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(detectedDevicesCombo, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(warningLabel))
.add(selectDeviceButton)
.add(specifyDeviceNameButton)
.add(layout.createSequentialGroup()
.add(loadButton)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(cancelButton))
.add(specifyDeviceNameField, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 569, Short.MAX_VALUE))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
.add(autodetectButton)
.add(autodetectLabel))
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(selectDeviceButton)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
.add(detectedDevicesLabel)
.add(detectedDevicesCombo, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(warningLabel))
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(specifyDeviceNameButton)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(specifyDeviceNameField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
.add(loadButton)
.add(cancelButton)))
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
public javax.swing.JButton autodetectButton;
private javax.swing.JLabel autodetectLabel;
public javax.swing.JButton cancelButton;
public javax.swing.JComboBox detectedDevicesCombo;
private javax.swing.JLabel detectedDevicesLabel;
public javax.swing.JButton loadButton;
private javax.swing.ButtonGroup partitionGroup;
public javax.swing.JRadioButton selectDeviceButton;
private javax.swing.ButtonGroup selectSpecifyGroup;
public javax.swing.JRadioButton specifyDeviceNameButton;
public javax.swing.JTextField specifyDeviceNameField;
private javax.swing.JLabel warningLabel;
// End of variables declaration//GEN-END:variables
}