weka.knowledgeflow.KFDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-dev Show documentation
Show all versions of weka-dev Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This version represents the developer version, the
"bleeding edge" of development, you could say. New functionality gets added
to this version.
/*
* 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 .
*/
/*
* KFDefaults
* Copyright (C) 2015 University of Waikato, Hamilton, New Zealand
*
*/
package weka.knowledgeflow;
import weka.core.Defaults;
import weka.core.Settings;
import javax.swing.JPanel;
import java.awt.Color;
/**
* Default settings for the Knowledge Flow
*
* @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
*/
public class KFDefaults extends Defaults {
public static final String APP_NAME = "Knowledge Flow";
public static final String APP_ID = "knowledgeflow";
public static final String MAIN_PERSPECTIVE_ID = "knowledgeflow.main";
// Main perspective settings
public static final Settings.SettingKey MAX_UNDO_POINTS_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".maxUndoPoints",
"Maximum undo points", "Maximum number of states to keep in the undo"
+ "buffer");
public static final int MAX_UNDO_POINTS = 20;
public static final Settings.SettingKey LAYOUT_COLOR_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".layoutcolor",
"Layout background color", "");
private static Color JP_COLOR = new JPanel().getBackground();
public static final Color LAYOUT_COLOR = new Color(JP_COLOR.getRGB());
public static final Settings.SettingKey SHOW_GRID_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".showgrid", "Show grid",
"The snap-to-grid grid");
public static final boolean SHOW_GRID = false;
public static final Settings.SettingKey GRID_COLOR_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".gridcolor",
"Grid line color", "The snap-to-grid line color");
public static final Color GRID_COLOR = Color.LIGHT_GRAY;
public static final Settings.SettingKey GRID_SPACING_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".gridSpacing",
"Grid spacing", "The spacing for snap-to-grid");
public static final int GRID_SPACING = 40;
public static final int SCROLL_BAR_INCREMENT_LAYOUT = 20;
public static final Settings.SettingKey LAYOUT_WIDTH_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".layoutWidth",
"Layout width", "The width (in pixels) of the flow layout");
public static final Settings.SettingKey LAYOUT_HEIGHT_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".layoutHeight",
"Layout height", "The height (in pixels) of the flow layout");
public static final int LAYOUT_WIDTH = 2560;
public static final int LAYOUT_HEIGHT = 1440;
public static final Settings.SettingKey STEP_LABEL_FONT_SIZE_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".stepLabelFontSize",
"Font size for step/connection labels",
"The point size of the font used to render "
+ "the names of steps and connections on the layout");
public static final int STEP_LABEL_FONT_SIZE = 9;
public static final Settings.SettingKey LOGGING_LEVEL_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".loggingLevel", "Logging level",
"The logging level to use");
public static final LoggingLevel LOGGING_LEVEL = LoggingLevel.BASIC;
protected static final Settings.SettingKey LOG_MESSAGE_FONT_SIZE_KEY =
new Settings.SettingKey(MAIN_PERSPECTIVE_ID + ".logMessageFontSize",
"Size of font for log " + "messages",
"Size of font for log messages (-1 = system default)");
protected static final int LOG_MESSAGE_FONT_SIZE = -1;
// Global app settings
public static final Settings.SettingKey SHOW_JTREE_TIP_TEXT_KEY =
new Settings.SettingKey(APP_ID + ".showGlobalInfoTipText",
"Show scheme tool tips in tree view", "");
public static final boolean SHOW_JTREE_GLOBAL_INFO_TIPS = true;
public static final String LAF = "javax.swing.plaf.nimbus.NimbusLookAndFeel";
protected static final Settings.SettingKey[] DEFAULT_KEYS = {
MAX_UNDO_POINTS_KEY, LAYOUT_COLOR_KEY, SHOW_GRID_KEY, GRID_COLOR_KEY,
GRID_SPACING_KEY, LAYOUT_WIDTH_KEY, LAYOUT_HEIGHT_KEY,
STEP_LABEL_FONT_SIZE_KEY, LOGGING_LEVEL_KEY, LOG_MESSAGE_FONT_SIZE_KEY };
protected static final Object[] DEFAULT_VALUES = { MAX_UNDO_POINTS,
LAYOUT_COLOR, SHOW_GRID, GRID_COLOR, GRID_SPACING, LAYOUT_WIDTH,
LAYOUT_HEIGHT, STEP_LABEL_FONT_SIZE, LOGGING_LEVEL, LOG_MESSAGE_FONT_SIZE };
public KFDefaults() {
super(MAIN_PERSPECTIVE_ID);
for (int i = 0; i < DEFAULT_KEYS.length; i++) {
m_defaults.put(DEFAULT_KEYS[i], DEFAULT_VALUES[i]);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy