Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* DataCleaner (community edition)
* Copyright (C) 2014 Free Software Foundation, Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.datacleaner.windows;
import java.awt.BorderLayout;
import javax.inject.Inject;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JOptionPane;
import javax.swing.event.DocumentEvent;
import org.apache.metamodel.util.Resource;
import org.datacleaner.bootstrap.WindowContext;
import org.datacleaner.configuration.DataCleanerConfiguration;
import org.datacleaner.guice.Nullable;
import org.datacleaner.panels.DCPanel;
import org.datacleaner.reference.TextFileDictionary;
import org.datacleaner.user.MutableReferenceDataCatalog;
import org.datacleaner.user.UserPreferences;
import org.datacleaner.util.DCDocumentListener;
import org.datacleaner.util.IconUtils;
import org.datacleaner.util.ImageManager;
import org.datacleaner.util.StringUtils;
import org.datacleaner.util.WidgetFactory;
import org.datacleaner.util.WidgetUtils;
import org.datacleaner.widgets.Alignment;
import org.datacleaner.widgets.CharSetEncodingComboBox;
import org.datacleaner.widgets.DCCheckBox;
import org.datacleaner.widgets.DCLabel;
import org.datacleaner.widgets.DescriptionLabel;
import org.datacleaner.widgets.ResourceSelector;
import org.datacleaner.widgets.ResourceTypePresenter;
import org.jdesktop.swingx.JXTextField;
public final class TextFileDictionaryDialog extends AbstractDialog {
private static final long serialVersionUID = 1L;
private final TextFileDictionary _originalDictionary;
private final MutableReferenceDataCatalog _catalog;
private final JXTextField _nameTextField;
private final ResourceSelector _resourceSelector;
private final DCCheckBox _caseSensitiveCheckBox;
private final CharSetEncodingComboBox _encodingComboBox;
private volatile boolean _nameAutomaticallySet = true;
@Inject
protected TextFileDictionaryDialog(@Nullable final TextFileDictionary dictionary,
final MutableReferenceDataCatalog catalog, final WindowContext windowContext,
final DataCleanerConfiguration configuration, final UserPreferences userPreferences) {
super(windowContext, ImageManager.get().getImage(IconUtils.DICTIONARY_TEXTFILE_IMAGEPATH));
_originalDictionary = dictionary;
_catalog = catalog;
_nameTextField = WidgetFactory.createTextField("Dictionary name");
_nameTextField.getDocument().addDocumentListener(new DCDocumentListener() {
@Override
protected void onChange(final DocumentEvent e) {
_nameAutomaticallySet = false;
}
});
_resourceSelector = new ResourceSelector(configuration, userPreferences, true);
_resourceSelector.addListener(new ResourceTypePresenter.Listener() {
@Override
public void onResourceSelected(final ResourceTypePresenter> presenter, final Resource resource) {
if (_nameAutomaticallySet || StringUtils.isNullOrEmpty(_nameTextField.getText())) {
_nameTextField.setText(resource.getName());
_nameAutomaticallySet = true;
}
}
@Override
public void onPathEntered(final ResourceTypePresenter> presenter, final String path) {
if (_nameAutomaticallySet || StringUtils.isNullOrEmpty(_nameTextField.getText())) {
_nameTextField.setText(path);
_nameAutomaticallySet = true;
}
}
});
_caseSensitiveCheckBox = new DCCheckBox<>("Case-sensitive?", false);
_caseSensitiveCheckBox.setForeground(WidgetUtils.BG_COLOR_BRIGHTEST);
_caseSensitiveCheckBox.setOpaque(false);
_caseSensitiveCheckBox.setToolTipText("Only match on dictionary terms when text-case is the same.");
_encodingComboBox = new CharSetEncodingComboBox();
if (dictionary != null) {
_nameTextField.setText(dictionary.getName());
_resourceSelector.setResourcePath(dictionary.getFilename());
_encodingComboBox.setSelectedItem(dictionary.getEncoding());
_caseSensitiveCheckBox.setSelected(dictionary.isCaseSensitive());
}
}
@Override
protected String getBannerTitle() {
return "Text file dictionary";
}
@Override
protected int getDialogWidth() {
return 600;
}
@Override
protected JComponent getDialogContent() {
final DCPanel formPanel = new DCPanel();
int row = 0;
WidgetUtils.addToGridBag(DCLabel.bright("Dictionary name:"), formPanel, 0, row);
WidgetUtils.addToGridBag(_nameTextField, formPanel, 1, row);
row++;
WidgetUtils.addToGridBag(DCLabel.bright("Path:"), formPanel, 0, row);
WidgetUtils.addToGridBag(_resourceSelector, formPanel, 1, row);
row++;
WidgetUtils.addToGridBag(DCLabel.bright("Character encoding:"), formPanel, 0, row);
WidgetUtils.addToGridBag(_encodingComboBox, formPanel, 1, row);
row++;
WidgetUtils.addToGridBag(_caseSensitiveCheckBox, formPanel, 1, row);
row++;
final JButton saveButton = WidgetFactory.createPrimaryButton("Save dictionary", IconUtils.ACTION_SAVE_BRIGHT);
saveButton.addActionListener(e -> {
final String name1 = _nameTextField.getText();
if (StringUtils.isNullOrEmpty(name1)) {
JOptionPane
.showMessageDialog(TextFileDictionaryDialog.this, "Please fill out the name of the dictionary");
return;
}
final String path = _resourceSelector.getResourcePath();
if (StringUtils.isNullOrEmpty(path)) {
JOptionPane.showMessageDialog(TextFileDictionaryDialog.this,
"Please fill out the path or select a file using the 'Browse' button");
return;
}
final String encoding = (String) _encodingComboBox.getSelectedItem();
if (StringUtils.isNullOrEmpty(encoding)) {
JOptionPane.showMessageDialog(TextFileDictionaryDialog.this, "Please select a character encoding");
return;
}
final boolean caseSensitive = _caseSensitiveCheckBox.isSelected();
final TextFileDictionary dict = new TextFileDictionary(name1, path, encoding, caseSensitive);
if (_originalDictionary != null) {
_catalog.changeDictionary(_originalDictionary, dict);
} else {
_catalog.addDictionary(dict);
}
TextFileDictionaryDialog.this.dispose();
});
final DCPanel buttonPanel = DCPanel.flow(Alignment.CENTER, saveButton);
final DescriptionLabel descriptionLabel = new DescriptionLabel(
"A text file dictionary is a dictionary based on a text file containing values separated by linebreaks.");
final DCPanel mainPanel = new DCPanel();
mainPanel.setLayout(new BorderLayout());
mainPanel.add(descriptionLabel, BorderLayout.NORTH);
mainPanel.add(formPanel, BorderLayout.CENTER);
mainPanel.add(buttonPanel, BorderLayout.SOUTH);
mainPanel.setPreferredSize(getDialogWidth(), 230);
return mainPanel;
}
@Override
protected boolean isWindowResizable() {
return true;
}
@Override
public String getWindowTitle() {
return "Text file dictionary";
}
}