/**
* Opens the settings view.
*/
public static SettingsView getView() {
SettingsView view = new SettingsView(DcResources.getText("lblDataCrowSettings"),
applicationSettings.getSettings());
ImageIcon icon = new DcImageIcon(DataCrow.installationDir + "icons/logo.jpg");
view.setDisclaimer(icon);
view.setSize(new Dimension(875, 470));
view.setCenteredLocation();
return view;
}