Codebase list jd-gui / 0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream app / src / main / java / org / jd / gui / Constants.java
0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream

Tree @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream (Download .tar.gz)

Constants.java @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstreamraw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui;

public class Constants {
	public static final String APP_NAME = "JD-GUI";

	public static final int DEFAULT_WIDTH = 600;
	public static final int DEFAULT_HEIGHT = 400;

	public static final int MINIMAL_WIDTH = 500;
	public static final int MINIMAL_HEIGHT = 160;

	public static final String CONFIG_FILENAME = "jd-gui.cfg";

	public static final int MAX_RECENT_FILES = 10;
	public static final int RECENT_FILE_MAX_LENGTH = 200;
}