GUIUtilities.java

Index Score
org.gjt.sp.jedit
jEdit

View: Reasons, Metrics, Source Code

These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.

MetricDescription
DECL_COMMENTSComments in declarations
LINE_COMMENTNumber of line comments
PARAMSNumber of formal parameter declarations
DOC_COMMENTNumber of javadoc comment lines
COMMENTSComment lines
JAVA0034JAVA0034 Missing braces in if statement
SIZESize of the file in bytes
LINESNumber of lines in the source file
INTERFACE_COMPLEXITYInterface complexity
UNIQUE_OPERANDSNumber of unique operands
OPERANDSNumber of operands
JAVA0110JAVA0110 Incorrect javadoc: no @return tag
PROGRAM_VOCABHalstead program vocabulary
ELOCEffective lines of code
LOCLines of code
PROGRAM_LENGTHHalstead program length
OPERATORSNumber of operators
EXITSProcedure exits
CYCLOMATICCyclomatic complexity
LOGICAL_LINESNumber of statements
FUNCTIONSNumber of function declarations
RETURNSNumber of return points from functions
BLOCKSNumber of blocks
COMPARISONSNumber of comparison operators
JAVA0177JAVA0177 Variable declaration missing initializer
JAVA0145JAVA0145 Tab character used in source file
JAVA0108JAVA0108 Incorrect javadoc: no @param tag for 'parameter'
WHITESPACENumber of whitespace lines
LOOPSNumber of loops
JAVA0076JAVA0076 Use of magic number
JAVA0007JAVA0007 Should not declare public field
JAVA0166JAVA0166 Generic exception caught
UNIQUE_OPERATORSNumber of unique operators
JAVA0084JAVA0084 Should use compound assignment operator
JAVA0270JAVA0270 Use Java 5.0 enhanced for loop construct to iterate over all elements in an array
JAVA0126JAVA0126 Method declares unchecked exception in throws
JAVA0128JAVA0128 Public constructor in non-public class
PROGRAM_VOLUMEHalstead program volume
JAVA0136JAVA0136 N methods defined in class (maximum: M)
JAVA0032JAVA0032 Switch statement missing default
EXEC_COMMENTSComments in executable code
JAVA0087JAVA0087 Use of Thread.sleep()
JAVA0173JAVA0173 Unused method parameter
JAVA0067JAVA0067 Array descriptor on identifier name
JAVA0100JAVA0100 Class contains N non-final fields (maximum: M)
NEST_DEPTHMaximum nesting depth
/* * GUIUtilities.java - Various GUI utility functions * :tabSize=8:indentSize=8:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 1999, 2004 Slava Pestov * * 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 2 * of the License, or 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package org.gjt.sp.jedit; //{{{ Imports import org.gjt.sp.jedit.browser.VFSFileChooserDialog; import org.gjt.sp.jedit.gui.DynamicContextMenuService; import org.gjt.sp.jedit.gui.EnhancedButton; import org.gjt.sp.jedit.gui.FloatingWindowContainer; import org.gjt.sp.jedit.gui.SplashScreen; import org.gjt.sp.jedit.gui.VariableGridLayout; import org.gjt.sp.jedit.menu.EnhancedCheckBoxMenuItem; import org.gjt.sp.jedit.menu.EnhancedMenu; import org.gjt.sp.jedit.menu.EnhancedMenuItem; import org.gjt.sp.jedit.syntax.SyntaxStyle; import org.gjt.sp.jedit.textarea.JEditTextArea; import org.gjt.sp.jedit.textarea.TextAreaMouseHandler; import org.gjt.sp.util.Log; import org.gjt.sp.util.SyntaxUtilities; import java.net.URL; import java.util.ArrayList; import java.util.HashMap; import java.util.Hashtable; import java.util.List; import java.util.Map; import java.util.StringTokenizer; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JComponent; import javax.swing.JDialog; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JPopupMenu; import javax.swing.JScrollPane; import javax.swing.JSplitPane; import javax.swing.JToolBar; import javax.swing.ListSelectionModel; import javax.swing.SwingUtilities; import java.awt.*; import java.awt.event.*; /** * Various GUI functions.<p> * * The most frequently used members of this class are: * * <ul> * <li>{@link #loadIcon(String)}</li> * <li>{@link #confirm(Component,String,Object[],int,int)}</li> * <li>{@link #error(Component,String,Object[])}</li> * <li>{@link #message(Component,String,Object[])}</li> * <li>{@link #showVFSFileDialog(View,String,int,boolean)}</li> * <li>{@link #loadGeometry(Window,String)}</li> * <li>{@link #saveGeometry(Window,String)}</li> * <li>{@link #showPopupMenu(JPopupMenu,Component,int,int)}</li> * </ul> * * @author Slava Pestov * @version $Id: GUIUtilities.java 13259 2008-08-10 20:54:46Z shlomy $ */ public class GUIUtilities { //{{{ Some predefined icons /** * @deprecated Use <code>GUIUtilities.loadIcon("new.gif");</code> * instead. */ public static Icon NEW_BUFFER_ICON; /** * @deprecated Use <code>GUIUtilities.loadIcon("dirty.gif");</code> * instead. */ public static Icon DIRTY_BUFFER_ICON; /** * @deprecated Use <code>GUIUtilities.loadIcon("readonly.gif");</code> * instead. */ public static Icon READ_ONLY_BUFFER_ICON; /** * @deprecated Use <code>GUIUtilities.loadIcon("normal.gif");</code> * instead. */ public static Icon NORMAL_BUFFER_ICON; /** * @deprecated Use <code>GUIUtilities.loadIcon("jedit-icon.gif");</code> * instead. */ public static Icon WINDOW_ICON; //}}} //{{{ Icon methods //{{{ setIconPath() method /** * Sets the path where jEdit looks for icons. * @since jEdit 4.2pre5 */ public static void setIconPath(String iconPath) { GUIUtilities.iconPath = iconPath; if(icons != null) icons.clear(); } //}}} //{{{ loadIcon() method /** * Loads an icon. * @param iconName The icon name * @since jEdit 2.6pre7 */ public static Icon loadIcon(String iconName) { if(iconName == null) return null; // * Enable old icon naming scheme support if(deprecatedIcons != null && deprecatedIcons.containsKey(iconName)) iconName = deprecatedIcons.get(iconName); if(icons == null) icons = new Hashtable<String, Icon>(); // check if there is a cached version first Icon icon = icons.get(iconName); if(icon != null) return icon; URL url; try { // get the icon if(MiscUtilities.isURL(iconName)) url = new URL(iconName); else url = new URL(iconPath + iconName); } catch(Exception e) { try { url = new URL(defaultIconPath + iconName); } catch(Exception ex) { Log.log(Log.ERROR,GUIUtilities.class, "Icon not found: " + iconName); Log.log(Log.ERROR,GUIUtilities.class,ex); return null; } } icon = new ImageIcon(url); icons.put(iconName,icon); return icon; } //}}} //{{{ getEditorIcon() method /** * Returns the default editor window image. */ public static Image getEditorIcon() { return ((ImageIcon)loadIcon(jEdit.getProperty("logo.icon.medium"))).getImage(); } //}}} //{{{ getPluginIcon() method /** * Returns the default plugin window image. */ public static Image getPluginIcon() { return getEditorIcon(); } //}}} //}}} //{{{ Menus, tool bars //{{{ loadMenuBar() method /** * Creates a menubar. Plugins should not need to call this method. * @param name The menu bar name * @since jEdit 3.2pre5 */ public static JMenuBar loadMenuBar(String name) { return loadMenuBar(jEdit.getActionContext(),name); } //}}} //{{{ loadMenuBar() method /** * Creates a menubar. Plugins should not need to call this method. * @param context An action context * @param name The menu bar name * @since jEdit 4.2pre1 */ public static JMenuBar loadMenuBar(ActionContext context, String name) { String menus = jEdit.getProperty(name); StringTokenizer st = new StringTokenizer(menus); JMenuBar mbar = new JMenuBar(); while(st.hasMoreTokens()) { String menuName = st.nextToken(); mbar.add(loadMenu(context, menuName)); } return mbar; } //}}} //{{{ loadMenu() method /** * Creates a menu. The menu label is set from the * <code><i>name</i>.label</code> property. The menu contents is taken * from the <code><i>name</i></code> property, which is a whitespace * separated list of action names. An action name of <code>-</code> * inserts a separator in the menu. * @param name The menu name * @see #loadMenuItem(String) * @since jEdit 2.6pre2 */ public static JMenu loadMenu(String name) { return loadMenu(jEdit.getActionContext(),name); } //}}} //{{{ loadMenu() method /** * Creates a menu. The menu label is set from the * <code><i>name</i>.label</code> property. The menu contents is taken * from the <code><i>name</i></code> property, which is a whitespace * separated list of action names. An action name of <code>-</code> * inserts a separator in the menu. * @param context An action context; either * <code>jEdit.getActionContext()</code> or * <code>VFSBrowser.getActionContext()</code>. * @param name The menu name * @see #loadMenuItem(String) * @since jEdit 4.2pre1 */ public static JMenu loadMenu(ActionContext context, String name) { return new EnhancedMenu(name, jEdit.getProperty(name.concat(".label")), context); } //}}} //{{{ loadPopupMenu() method /** * Creates a popup menu. * @param name The menu name * @since jEdit 2.6pre2 */ public static JPopupMenu loadPopupMenu(String name, JEditTextArea textArea, MouseEvent evt) { return loadPopupMenu(jEdit.getActionContext(), name, textArea, evt); } //}}} //{{{ loadPopupMenu() method /** * Creates a popup menu. * @param name The menu name * @since jEdit 2.6pre2 */ public static JPopupMenu loadPopupMenu(String name) { return loadPopupMenu(jEdit.getActionContext(),name); } //}}} //{{{ loadPopupMenu() method /** * Creates a popup menu. * @param context An action context; either * <code>jEdit.getActionContext()</code> or * <code>VFSBrowser.getActionContext()</code>. * @param name The menu name * @since jEdit 4.2pre1 */ public static JPopupMenu loadPopupMenu(ActionContext context, String name) { return loadPopupMenu(context, name, null, null); } //{{{ loadPopupMenu() method /** * Creates a popup menu. * @param context An action context; either * <code>jEdit.getActionContext()</code> or * <code>VFSBrowser.getActionContext()</code>. * @param name The menu name * @param textArea the textArea wanting to show the popup. * If not null, include context menu items defined by services. * @param evt additional context info about where the mouse was when menu was requested * @since jEdit 4.3pre15 */ public static JPopupMenu loadPopupMenu(ActionContext context, String name, JEditTextArea textArea, MouseEvent evt) { JPopupMenu menu = new JPopupMenu(); String menuItems = jEdit.getProperty(name); if(menuItems != null) { StringTokenizer st = new StringTokenizer(menuItems); while(st.hasMoreTokens()) { String menuItemName = st.nextToken(); if(menuItemName.equals("-")) menu.addSeparator(); else menu.add(loadMenuItem(context,menuItemName,false)); } } // load menu items defined by services if (textArea != null) { List<JMenuItem> list = GUIUtilities.getServiceContextMenuItems(textArea, evt); if (list.size() > 0) { menu.addSeparator(); } for (JMenuItem mi : list) { menu.add(mi); } } return menu; } //}}} //{{{ addServiceContextMenuItems() method /** * @return a list of menu items defined by services. * * @param textArea the TextArea desiring to display these menu items * @since jEdit 4.3pre15 */ public static List<JMenuItem> getServiceContextMenuItems(JEditTextArea textArea, MouseEvent evt) { List<JMenuItem> list = new ArrayList<JMenuItem>(); final String serviceClassName = DynamicContextMenuService.class.getName(); String[] menuServiceList = ServiceManager.getServiceNames(serviceClassName); for (String menuServiceName : menuServiceList) { if (menuServiceName != null && menuServiceName.trim().length() > 0) { DynamicContextMenuService dcms = (DynamicContextMenuService) ( ServiceManager.getService(serviceClassName, menuServiceName)); if (dcms != null) { JMenuItem items[] = dcms.createMenu(textArea, evt); if (items != null) { for (JMenuItem mi: items) list.add(mi); } } } } return list; } //}}} //{{{ loadMenuItem() method /** * Creates a menu item. The menu item is bound to the action named by * <code>name</code> with label taken from the return value of the * {@link EditAction#getLabel()} method. * * @param name The menu item name * @see #loadMenu(String) * @since jEdit 2.6pre1 */ public static JMenuItem loadMenuItem(String name) { return loadMenuItem(jEdit.getActionContext(),name,true); } //}}} //{{{ loadMenuItem() method /** * Creates a menu item. * @param name The menu item name * @param setMnemonic True if the menu item should have a mnemonic * @since jEdit 3.1pre1 */ public static JMenuItem loadMenuItem(String name, boolean setMnemonic) { return loadMenuItem(jEdit.getActionContext(),name,setMnemonic); } //}}} //{{{ loadMenuItem() method /** * Creates a menu item. * @param context An action context; either * <code>jEdit.getActionContext()</code> or * <code>VFSBrowser.getActionContext()</code>. * @param name The menu item name * @param setMnemonic True if the menu item should have a mnemonic * @since jEdit 4.2pre1 */ public static JMenuItem loadMenuItem(ActionContext context, String name, boolean setMnemonic) { if(name.charAt(0) == '%') return loadMenu(context,name.substring(1)); return _loadMenuItem(name, context, setMnemonic); } //}}} //{{{ loadMenuItem(EditAction, boolean) public static JMenuItem loadMenuItem(EditAction editAction, boolean setMnemonic) { String name = editAction.getName(); ActionContext context = jEdit.getActionContext(); return _loadMenuItem(name, context, setMnemonic); } //}}} //{{{ loadToolBar() method /** * Creates a toolbar. * @param name The toolbar name * @since jEdit 4.2pre2 */ public static Container loadToolBar(String name) { return loadToolBar(jEdit.getActionContext(),name); } //}}} //{{{ loadToolBar() method /** * Creates a toolbar. * @param context An action context; either * <code>jEdit.getActionContext()</code> or * <code>VFSBrowser.getActionContext()</code>. * @param name The toolbar name * @since jEdit 4.2pre2 */ public static Container loadToolBar(ActionContext context, String name) { JPanel toolBar = new JPanel(new BorderLayout()); JToolBar toolB = new JToolBar(); toolB.setFloatable(false); toolB.setMargin(new Insets(0,0,0,0)); String buttons = jEdit.getProperty(name); if(buttons != null) { StringTokenizer st = new StringTokenizer(buttons); while(st.hasMoreTokens()) { String button = st.nextToken(); if(button.equals("-")) { toolB.addSeparator(new Dimension(12,12)); } else { JButton b = loadToolButton(context,button); if(b != null) toolB.add(b); } } } toolBar.add(toolB); return toolBar; } //}}} //{{{ loadToolButton() method /** * Loads a tool bar button. The tooltip is constructed from * the <code><i>name</i>.label</code> and * <code><i>name</i>.shortcut</code> properties and the icon is loaded * from the resource named '/org/gjt/sp/jedit/icons/' suffixed * with the value of the <code><i>name</i>.icon</code> property. * @param name The name of the button */ public static EnhancedButton loadToolButton(String name) { return loadToolButton(jEdit.getActionContext(),name); } //}}} //{{{ loadToolButton() method /** * Loads a tool bar button. The tooltip is constructed from * the <code><i>name</i>.label</code> and * <code><i>name</i>.shortcut</code> properties and the icon is loaded * from the resource named '/org/gjt/sp/jedit/icons/' suffixed * with the value of the <code><i>name</i>.icon</code> property. * @param context An action context; either * <code>jEdit.getActionContext()</code> or * <code>VFSBrowser.getActionContext()</code>. * @param name The name of the button * @since jEdit 4.2pre1 */ public static EnhancedButton loadToolButton(ActionContext context, String name) { String label = jEdit.getProperty(name + ".label"); if(label == null) label = name; Icon icon; String iconName = jEdit.getProperty(name + ".icon"); if(iconName == null) icon = loadIcon(jEdit.getProperty("broken-image.icon")); else { icon = loadIcon(iconName); if(icon == null) icon = loadIcon(jEdit.getProperty("broken-image.icon")); } String toolTip = prettifyMenuLabel(label); String shortcutLabel = getShortcutLabel(name); if(shortcutLabel != null) { toolTip = toolTip + " (" + shortcutLabel + ')'; } EnhancedButton b = new EnhancedButton(icon,toolTip,name,context); b.setPreferredSize(new Dimension(32,32)); return b; } //}}} //{{{ prettifyMenuLabel() method /** * `Prettifies' a menu item label by removing the `$' sign. This * can be used to process the contents of an <i>action</i>.label * property. */ public static String prettifyMenuLabel(String label) { int index = label.indexOf('$'); if(index != -1) { label = label.substring(0,index) .concat(label.substring(index + 1)); } return label; } //}}} //{{{ getShortcutLabel() method /** * Returns a label string to show users what shortcut are * assigned to the action. */ public static String getShortcutLabel(String action) { if(action == null) return null; else { String shortcut1 = jEdit.getProperty(action + ".shortcut"); String shortcut2 = jEdit.getProperty(action + ".shortcut2"); if(shortcut1 == null || shortcut1.length() == 0) { if(shortcut2 == null || shortcut2.length() == 0) return null; else return shortcut2; } else { if(shortcut2 == null || shortcut2.length() == 0) return shortcut1; else return shortcut1 + " or " + shortcut2; } } } //}}} //}}} //{{{ Canned dialog boxes //{{{ message() method /** * Displays a dialog box. * The title of the dialog is fetched from * the <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. The message * is formatted by the property manager with <code>args</code> as * positional parameters. * @param comp The component to display the dialog for * @param name The name of the dialog * @param args Positional parameters to be substituted into the * message text */ public static void message(Component comp, String name, Object[] args) { hideSplashScreen(); JOptionPane.showMessageDialog(comp, jEdit.getProperty(name.concat(".message"),args), jEdit.getProperty(name.concat(".title"),args), JOptionPane.INFORMATION_MESSAGE); } //}}} //{{{ error() method /** * Displays an error dialog box. * The title of the dialog is fetched from * the <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. The message * is formatted by the property manager with <code>args</code> as * positional parameters. * @param comp The component to display the dialog for * @param name The name of the dialog * @param args Positional parameters to be substituted into the * message text */ public static void error(Component comp, String name, Object[] args) { hideSplashScreen(); JOptionPane.showMessageDialog(comp, jEdit.getProperty(name.concat(".message"),args), jEdit.getProperty(name.concat(".title"),args), JOptionPane.ERROR_MESSAGE); } //}}} //{{{ input() method /** * Displays an input dialog box and returns any text the user entered. * The title of the dialog is fetched from * the <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. * @param comp The component to display the dialog for * @param name The name of the dialog * @param def The text to display by default in the input field */ public static String input(Component comp, String name, Object def) { return input(comp,name,null,def); } //}}} //{{{ inputProperty() method /** * Displays an input dialog box and returns any text the user entered. * The title of the dialog is fetched from * the <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. * @param comp The component to display the dialog for * @param name The name of the dialog * @param def The property whose text to display in the input field */ public static String inputProperty(Component comp, String name, String def) { return inputProperty(comp,name,null,def); } //}}} //{{{ input() method /** * Displays an input dialog box and returns any text the user entered. * The title of the dialog is fetched from * the <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. * @param comp The component to display the dialog for * @param name The name of the dialog * @param def The text to display by default in the input field * @param args Positional parameters to be substituted into the * message text * @since jEdit 3.1pre3 */ public static String input(Component comp, String name, Object[] args, Object def) { hideSplashScreen(); String retVal = (String)JOptionPane.showInputDialog(comp, jEdit.getProperty(name.concat(".message"),args), jEdit.getProperty(name.concat(".title")), JOptionPane.QUESTION_MESSAGE,null,null,def); return retVal; } //}}} //{{{ inputProperty() method /** * Displays an input dialog box and returns any text the user entered. * The title of the dialog is fetched from * the <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. * @param comp The component to display the dialog for * @param name The name of the dialog * @param args Positional parameters to be substituted into the * message text * @param def The property whose text to display in the input field * @since jEdit 3.1pre3 */ public static String inputProperty(Component comp, String name, Object[] args, String def) { hideSplashScreen(); String retVal = (String)JOptionPane.showInputDialog(comp, jEdit.getProperty(name.concat(".message"),args), jEdit.getProperty(name.concat(".title")), JOptionPane.QUESTION_MESSAGE, null,null,jEdit.getProperty(def)); if(retVal != null) jEdit.setProperty(def,retVal); return retVal; } //}}} //{{{ confirm() method /** * Displays a confirm dialog box and returns the button pushed by the * user. The title of the dialog is fetched from the * <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. * @param comp The component to display the dialog for * @param name The name of the dialog * @param args Positional parameters to be substituted into the * message text * @param buttons The buttons to display - for example, * JOptionPane.YES_NO_CANCEL_OPTION * @param type The dialog type - for example, * JOptionPane.WARNING_MESSAGE * @since jEdit 3.1pre3 */ public static int confirm(Component comp, String name, Object[] args, int buttons, int type) { hideSplashScreen(); return JOptionPane.showConfirmDialog(comp, jEdit.getProperty(name + ".message",args), jEdit.getProperty(name + ".title"),buttons,type); } //}}} //{{{ listConfirm() method /** * Displays a confirm dialog box and returns the button pushed by the * user. The title of the dialog is fetched from the * <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. The dialog * also shows a list of entries given by the <code>listModel</code> * parameter. * @param comp the parent component * @param name the name of the confirm dialog * @param args the for the message * @param listModel the items in the list * @return an integer indicating the option selected by the user * @since jEdit 4.3pre1 */ public static int listConfirm(Component comp, String name, String[] args, Object[] listModel) { JList list = new JList(listModel); list.setVisibleRowCount(8); Object[] message = { jEdit.getProperty(name + ".message",args), new JScrollPane(list) }; return JOptionPane.showConfirmDialog(comp, message, jEdit.getProperty(name + ".title"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); } //}}} //{{{ listConfirm() method /** * Displays a confirm dialog box and returns the button pushed by the * user. The title of the dialog is fetched from the * <code><i>name</i>.title</code> property. The message is fetched * from the <code><i>name</i>.message</code> property. The dialog * also shows a list of entries given by the <code>listModel</code> * parameter. * @param comp the parent component * @param name the name of the confirm dialog * @param args the for the message * @param listModel the items in the list * @param selectedItems give an empty list, it will contains in return the selected items * @return an integer indicating the option selected by the user * @since jEdit 4.3pre12 */ public static int listConfirm(Component comp, String name, String[] args, Object[] listModel, List selectedItems) { JList list = new JList(listModel); list.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); list.setVisibleRowCount(8); list.addSelectionInterval(0,listModel.length - 1); Object[] message = { jEdit.getProperty(name + ".message",args), new JScrollPane(list) }; int ret = JOptionPane.showConfirmDialog(comp, message, jEdit.getProperty(name + ".title"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); Object[] selectedValues = list.getSelectedValues(); for (Object selectedValue : selectedValues) { selectedItems.add(selectedValue); } return ret; } //}}} //{{{ showVFSFileDialog() methods /** * Displays a VFS file selection dialog box. * @param view The view, should be non-null * @param path The initial directory to display. May be null * @param type The dialog type. One of * {@link org.gjt.sp.jedit.browser.VFSBrowser#OPEN_DIALOG}, * {@link org.gjt.sp.jedit.browser.VFSBrowser#SAVE_DIALOG}, or * {@link org.gjt.sp.jedit.browser.VFSBrowser#CHOOSE_DIRECTORY_DIALOG}. * @param multipleSelection True if multiple selection should be allowed * @return The selected file(s) * @since jEdit 2.6pre2 */ public static String[] showVFSFileDialog(View view, String path, int type, boolean multipleSelection) { // the view should not be null, but some plugins might do this if(view == null) { Log.log(Log.WARNING,GUIUtilities.class, "showVFSFileDialog(): given null view, assuming jEdit.getActiveView()"); view = jEdit.getActiveView(); } hideSplashScreen(); VFSFileChooserDialog fileChooser = new VFSFileChooserDialog( view,path,type,multipleSelection); return fileChooser.getSelectedFiles(); } /** * Displays a VFS file selection dialog box. * This version can specify a dialog as the parent instead * of the view. * @param view The view, should be non-null * @param path The initial directory to display. May be null * @param type The dialog type. One of * {@link org.gjt.sp.jedit.browser.VFSBrowser#OPEN_DIALOG}, * {@link org.gjt.sp.jedit.browser.VFSBrowser#SAVE_DIALOG}, or * {@link org.gjt.sp.jedit.browser.VFSBrowser#CHOOSE_DIRECTORY_DIALOG}. * @param multipleSelection True if multiple selection should be allowed * @return The selected file(s) * @since jEdit 4.3pre10 */ public static String[] showVFSFileDialog(Dialog parent, View view, String path, int type, boolean multipleSelection) { hideSplashScreen(); VFSFileChooserDialog fileChooser = new VFSFileChooserDialog( parent, view, path, type, multipleSelection, true); return fileChooser.getSelectedFiles(); } /** * Displays a VFS file selection dialog box. * This version can specify a frame as the parent instead * of the view. * @param parent The parent frame * @param view The view, should be non-null * @param path The initial directory to display. May be null * @param type The dialog type. One of * {@link org.gjt.sp.jedit.browser.VFSBrowser#OPEN_DIALOG}, * {@link org.gjt.sp.jedit.browser.VFSBrowser#SAVE_DIALOG}, or * {@link org.gjt.sp.jedit.browser.VFSBrowser#CHOOSE_DIRECTORY_DIALOG}. * @param multipleSelection True if multiple selection should be allowed * @return The selected file(s) * @since jEdit 4.3pre10 */ public static String[] showVFSFileDialog(Frame parent, View view, String path, int type, boolean multipleSelection) { hideSplashScreen(); VFSFileChooserDialog fileChooser = new VFSFileChooserDialog( parent, view, path, type, multipleSelection, true); return fileChooser.getSelectedFiles(); } //}}} //}}} //{{{ Colors and styles //{{{ parseColor() method /** * Converts a color name to a color object. The name must either be * a known string, such as `red', `green', etc (complete list is in * the <code>java.awt.Color</code> class) or a hex color value * prefixed with `#', for example `#ff0088'. * @param name The color name */ public static Color parseColor(String name) { return SyntaxUtilities.parseColor(name, Color.black); } //}}} //{{{ parseColor() method /** * @deprecated use {@link SyntaxUtilities#parseColor(String,Color)} */ @Deprecated public static Color parseColor(String name, Color defaultColor) { return SyntaxUtilities.parseColor(name, defaultColor); } //}}} //{{{ getColorHexString() method /** * Converts a color object to its hex value. The hex value * prefixed is with `#', for example `#ff0088'. * @param c The color object * @deprecated use {@link SyntaxUtilities#parseStyle(String,String,int,boolean)} */ @Deprecated public static String getColorHexString(Color c) { return SyntaxUtilities.getColorHexString(c); } //}}} //{{{ parseStyle() method /** * Converts a style string to a style object. * @param str The style string * @param family Style strings only specify font style, not font family * @param size Style strings only specify font style, not font family * @exception IllegalArgumentException if the style is invalid * @since jEdit 3.2pre6 */ public static SyntaxStyle parseStyle(String str, String family, int size) throws IllegalArgumentException { return SyntaxUtilities.parseStyle(str,family,size,true); } //}}} //{{{ parseStyle() method /** * Converts a style string to a style object. * @param str The style string * @param family Style strings only specify font style, not font family * @param size Style strings only specify font style, not font family * @param color If false, the styles will be monochrome * @exception IllegalArgumentException if the style is invalid * @since jEdit 4.0pre4 * @deprecated use {@link SyntaxUtilities#parseStyle(String,String,int,boolean)} */ @Deprecated public static SyntaxStyle parseStyle(String str, String family, int size, boolean color) throws IllegalArgumentException { return SyntaxUtilities.parseStyle(str,family,size,color); } //}}} //{{{ getStyleString() method /** * Converts a style into it's string representation. * @param style The style */ public static String getStyleString(SyntaxStyle style) { StringBuilder buf = new StringBuilder(); if (style.getForegroundColor() != null) { buf.append("color:").append(SyntaxUtilities.getColorHexString(style.getForegroundColor())); } if (style.getBackgroundColor() != null) { buf.append(" bgColor:").append(SyntaxUtilities.getColorHexString(style.getBackgroundColor())); } Font font = style.getFont(); if (!font.isPlain()) { buf.append(" style:"); if (font.isItalic()) buf.append('i'); if (font.isBold()) buf.append('b'); } return buf.toString(); } //}}} //{{{ loadStyles() method /** * Loads the syntax styles from the properties, giving them the specified * base font family and size. * @param family The font family * @param size The font size * @since jEdit 3.2pre6 * @deprecated use {@link SyntaxUtilities#loadStyles(String,int)} */ @Deprecated public static SyntaxStyle[] loadStyles(String family, int size) { return SyntaxUtilities.loadStyles(family,size,true); } /** * Loads the syntax styles from the properties, giving them the specified * base font family and size. * @param family The font family * @param size The font size * @param color If false, the styles will be monochrome * @since jEdit 4.0pre4 * @deprecated use {@link SyntaxUtilities#loadStyles(String,int,boolean)} */ @Deprecated public static SyntaxStyle[] loadStyles(String family, int size, boolean color) { return SyntaxUtilities.loadStyles(family, size, color); } //}}} //}}} //{{{ Loading, saving window geometry //{{{ loadGeometry() method /** * Loads a windows's geometry from the properties. * The geometry is loaded from the <code><i>name</i>.x</code>, * <code><i>name</i>.y</code>, <code><i>name</i>.width</code> and * <code><i>name</i>.height</code> properties. * * @param win The window to load geometry from * @param parent The parent frame to be relative to. * @param name The name of the window */ public static void loadGeometry(Window win, Container parent, String name ) { int x, y, width, height; Dimension size = win.getSize(); width = jEdit.getIntegerProperty(name + ".width", size.width); height = jEdit.getIntegerProperty(name + ".height", size.height); x = jEdit.getIntegerProperty(name + ".x",50); y = jEdit.getIntegerProperty(name + ".y",50); if(parent != null) { Point location = parent.getLocation(); x = location.x + x; y = location.y + y; } int extState = jEdit.getIntegerProperty(name + ".extendedState", Frame.NORMAL); Rectangle desired = new Rectangle(x,y,width,height); try { if(!Debug.DISABLE_MULTIHEAD) adjustForScreenBounds(desired); } catch(Exception e) { /* Workaround for OS X bug. */ Log.log(Log.ERROR,GUIUtilities.class,e); } if(OperatingSystem.isX11() && Debug.GEOMETRY_WORKAROUND) new UnixWorkaround(win,name,desired,extState); else { win.setBounds(desired); if(win instanceof Frame) ((Frame)win).setExtendedState(extState); } } //}}} //{{{ loadGeometry() method /** * Loads a windows's geometry from the properties. * The geometry is loaded from the <code><i>name</i>.x</code>, * <code><i>name</i>.y</code>, <code><i>name</i>.width</code> and * <code><i>name</i>.height</code> properties. * * @param win The window to load geometry from * @param name The name of the window */ public static void loadGeometry(Window win, String name) { loadGeometry(win, win.getParent(), name); } //}}} //{{{ adjustForScreenBounds() method /** * Gives a rectangle the specified bounds, ensuring it is within the * screen bounds. * @since jEdit 4.2pre3 */ public static void adjustForScreenBounds(Rectangle desired) { // Make sure the window is displayed in visible region Rectangle osbounds = OperatingSystem.getScreenBounds(desired); if (desired.width > osbounds.width) { desired.width = osbounds.width; } if (desired.x < osbounds.x) { desired.x = osbounds.x; } if (desired.x + desired.width > osbounds.x + osbounds.width) { desired.x = osbounds.x + osbounds.width - desired.width; } if (desired.height > osbounds.height) { desired.height = osbounds.height; } if (desired.y < osbounds.y) { desired.y = osbounds.y; } if (desired.y + desired.height > osbounds.y + osbounds.height) { desired.y = osbounds.y + osbounds.height - desired.height; } } //}}} //{{{ UnixWorkaround class public static class UnixWorkaround { Window win; String name; Rectangle desired; Rectangle required; long start; boolean windowOpened; //{{{ UnixWorkaround constructor public UnixWorkaround(Window win, String name, Rectangle desired, int extState) { this.win = win; this.name = name; this.desired = desired; int adjust_x, adjust_y, adjust_width, adjust_height; adjust_x = jEdit.getIntegerProperty(name + ".dx",0); adjust_y = jEdit.getIntegerProperty(name + ".dy",0); adjust_width = jEdit.getIntegerProperty(name + ".d-width",0); adjust_height = jEdit.getIntegerProperty(name + ".d-height",0); required = new Rectangle( desired.x - adjust_x, desired.y - adjust_y, desired.width - adjust_width, desired.height - adjust_height); Log.log(Log.DEBUG,GUIUtilities.class,"Window " + name + ": desired geometry is " + desired); Log.log(Log.DEBUG,GUIUtilities.class,"Window " + name + ": setting geometry to " + required); start = System.currentTimeMillis(); win.setBounds(required); if(win instanceof Frame) ((Frame)win).setExtendedState(extState); win.addComponentListener(new ComponentHandler()); win.addWindowListener(new WindowHandler()); } //}}} //{{{ ComponentHandler class class ComponentHandler extends ComponentAdapter { //{{{ componentMoved() method @Override public void componentMoved(ComponentEvent evt) { if(System.currentTimeMillis() - start < 1000L) { Rectangle r = win.getBounds(); if(!windowOpened && r.equals(required)) return; if(!r.equals(desired)) { Log.log(Log.DEBUG,GUIUtilities.class, "Window resize blocked: " + win.getBounds()); win.setBounds(desired); } } win.removeComponentListener(this); } //}}} //{{{ componentResized() method @Override public void componentResized(ComponentEvent evt) { if(System.currentTimeMillis() - start < 1000L) { Rectangle r = win.getBounds(); if(!windowOpened && r.equals(required)) return; if(!r.equals(desired)) { Log.log(Log.DEBUG,GUIUtilities.class, "Window resize blocked: " + win.getBounds()); win.setBounds(desired); } } win.removeComponentListener(this); } //}}} } //}}} //{{{ WindowHandler class class WindowHandler extends WindowAdapter { //{{{ windowOpened() method @Override public void windowOpened(WindowEvent evt) { windowOpened = true; Rectangle r = win.getBounds(); Log.log(Log.DEBUG,GUIUtilities.class,"Window " + name + ": bounds after opening: " + r); jEdit.setIntegerProperty(name + ".dx", r.x - required.x); jEdit.setIntegerProperty(name + ".dy", r.y - required.y); jEdit.setIntegerProperty(name + ".d-width", r.width - required.width); jEdit.setIntegerProperty(name + ".d-height", r.height - required.height); win.removeWindowListener(this); } //}}} } //}}} } //}}} //{{{ saveGeometry() method /** * Saves a window's geometry to the properties. * The geometry is saved to the <code><i>name</i>.x</code>, * <code><i>name</i>.y</code>, <code><i>name</i>.width</code> and * <code><i>name</i>.height</code> properties.<br /> * For Frame's and descendents use {@link #addSizeSaver(Frame,String)} to save the sizes * correct even if the Frame is in maximized or iconified state. * @param win The window to load geometry from * @param name The name of the window * @see #addSizeSaver(Frame,String) */ public static void saveGeometry(Window win, String name) { saveGeometry (win, win.getParent(), name); } //}}} //{{{ saveGeometry() method /** * Saves a window's geometry to the properties. * The geometry is saved to the <code><i>name</i>.x</code>, * <code><i>name</i>.y</code>, <code><i>name</i>.width</code> and * <code><i>name</i>.height</code> properties.<br /> * For Frame's and descendents use {@link #addSizeSaver(Frame,Container,String)} to save the sizes * correct even if the Frame is in maximized or iconified state. * @param win The window to load geometry from * @param parent The parent frame to be relative to. * @param name The name of the window * @see #addSizeSaver(Frame,Container,String) */ public static void saveGeometry(Window win, Container parent, String name) { if(win instanceof Frame) { jEdit.setIntegerProperty(name + ".extendedState", ((Frame)win).getExtendedState()); } Rectangle bounds = win.getBounds(); int x = bounds.x; int y = bounds.y; if (parent != null) { Rectangle parentBounds = parent.getBounds(); x = x - parentBounds.x; y = y - parentBounds.y; } jEdit.setIntegerProperty(name + ".x",x); jEdit.setIntegerProperty(name + ".y",y); jEdit.setIntegerProperty(name + ".width", bounds.width); jEdit.setIntegerProperty(name + ".height", bounds.height); } //}}} //{{{ centerOnScreen() method /** * Centers the given window on the screen. This method is needed because * JDK 1.3 does not have a <code>JWindow.setLocationRelativeTo()</code> * method. * @since jEdit 4.2pre3 * @deprecated use {@link javax.swing.JWindow#setLocationRelativeTo(java.awt.Component)} */ @Deprecated public static void centerOnScreen(Window win) { GraphicsDevice gd = GraphicsEnvironment .getLocalGraphicsEnvironment() .getDefaultScreenDevice(); Rectangle gcbounds = gd.getDefaultConfiguration().getBounds(); int x = gcbounds.x + (gcbounds.width - win.getWidth()) / 2; int y = gcbounds.y + (gcbounds.height - win.getHeight()) / 2; win.setLocation(x,y); } //}}} //}}} //{{{ hideSplashScreen() method /** * Ensures that the splash screen is not visible. This should be * called before displaying any dialog boxes or windows at * startup. */ public static void hideSplashScreen() { if(splash != null) { splash.dispose(); splash = null; } } //}}} //{{{ createMultilineLabel() method /** * Creates a component that displays a multiple line message. This * is implemented by assembling a number of <code>JLabels</code> in * a <code>JPanel</code>. * @param str The string, with lines delimited by newline * (<code>\n</code>) characters. * @since jEdit 4.1pre3 */ public static JComponent createMultilineLabel(String str) { JPanel panel = new JPanel(new VariableGridLayout( VariableGridLayout.FIXED_NUM_COLUMNS,1,1,1)); int lastOffset = 0; while(true) { int index = str.indexOf('\n',lastOffset); if(index == -1) break; else { panel.add(new JLabel(str.substring(lastOffset,index))); lastOffset = index + 1; } } if(lastOffset != str.length()) panel.add(new JLabel(str.substring(lastOffset))); return panel; } //}}} //{{{ requestFocus() method /** * Focuses on the specified component as soon as the window becomes * active. * @param win The window * @param comp The component */ public static void requestFocus(final Window win, final Component comp) { win.addWindowFocusListener(new WindowAdapter() { @Override public void windowGainedFocus(WindowEvent evt) { SwingUtilities.invokeLater(new Runnable(){ public void run() { comp.requestFocusInWindow(); } }); win.removeWindowFocusListener(this); } }); } //}}} //{{{ isPopupTrigger() method /** * Returns if the specified event is the popup trigger event. * This implements precisely defined behavior, as opposed to * MouseEvent.isPopupTrigger(). * @param evt The event * @since jEdit 3.2pre8 */ public static boolean isPopupTrigger(MouseEvent evt) { return TextAreaMouseHandler.isRightButton(evt.getModifiers()); } //}}} //{{{ isMiddleButton() method /** * @param modifiers The modifiers flag from a mouse event * @since jEdit 4.1pre9 */ public static boolean isMiddleButton(int modifiers) { return TextAreaMouseHandler.isMiddleButton(modifiers); } //}}} //{{{ isRightButton() method /** * @param modifiers The modifiers flag from a mouse event * @since jEdit 4.1pre9 */ public static boolean isRightButton(int modifiers) { return TextAreaMouseHandler.isRightButton(modifiers); } //}}} //{{{ showPopupMenu() method /** * Shows the specified popup menu, ensuring it is displayed within * the bounds of the screen. * @param popup The popup menu * @param comp The component to show it for * @param x The x co-ordinate * @param y The y co-ordinate * @since jEdit 4.0pre1 * @see javax.swing.JComponent#setComponentPopupMenu(javax.swing.JPopupMenu) setComponentPopupMenu * which works better and is simpler to use: you don't have to write the code to * show/hide popups in response to mouse events anymore. */ public static void showPopupMenu(JPopupMenu popup, Component comp, int x, int y) { showPopupMenu(popup,comp,x,y,true); } //}}} //{{{ showPopupMenu() method /** * Shows the specified popup menu, ensuring it is displayed within * the bounds of the screen. * @param popup The popup menu * @param comp The component to show it for * @param x The x co-ordinate * @param y The y co-ordinate * @param point If true, then the popup originates from a single point; * otherwise it will originate from the component itself. This affects * positioning in the case where the popup does not fit onscreen. * * @since jEdit 4.1pre1 */ public static void showPopupMenu(JPopupMenu popup, Component comp, int x, int y, boolean point) { int offsetX = 0; int offsetY = 0; int extraOffset = (point ? 1 : 0); Component win = comp; while(!(win instanceof Window || win == null)) { offsetX += win.getX(); offsetY += win.getY(); win = win.getParent(); } if(win != null) { Dimension size = popup.getPreferredSize(); Rectangle screenSize = new Rectangle(); GraphicsEnvironment ge = GraphicsEnvironment .getLocalGraphicsEnvironment(); GraphicsDevice[] devices = ge.getScreenDevices(); for (int j = 0; j < devices.length; j++) { GraphicsDevice device = devices[j]; GraphicsConfiguration[] gc = device.getConfigurations(); for (int i=0; i < gc.length; i++) { screenSize = screenSize.union( gc[i].getBounds()); } } if(x + offsetX + size.width + win.getX() > screenSize.width && x + offsetX + win.getX() >= size.width) { //System.err.println("x overflow"); if(point) x -= (size.width + extraOffset); else x = (win.getWidth() - size.width - offsetX + extraOffset); } else { x += extraOffset; } //System.err.println("y=" + y + ",offsetY=" + offsetY // + ",size.height=" + size.height // + ",win.height=" + win.getHeight()); if(y + offsetY + size.height + win.getY() > screenSize.height && y + offsetY + win.getY() >= size.height) { if(point) y = (win.getHeight() - size.height - offsetY + extraOffset); else y = -size.height - 1; } else { y += extraOffset; } popup.show(comp,x,y); } else popup.show(comp,x + extraOffset,y + extraOffset); } //}}} //{{{ isAncestorOf() method /** * Returns if the first component is an ancestor of the * second by traversing up the component hierarchy. * * @param comp1 The ancestor * @param comp2 The component to check * @since jEdit 4.1pre5 */ public static boolean isAncestorOf(Component comp1, Component comp2) { while(comp2 != null) { if(comp1 == comp2) return true; else comp2 = comp2.getParent(); } return false; } //}}} //{{{ getParentDialog() method /** * Traverses the given component's parent tree looking for an * instance of JDialog, and return it. If not found, return null. * @param c The component */ public static JDialog getParentDialog(Component c) { return (JDialog) SwingUtilities.getAncestorOfClass(JDialog.class, c); } //}}} //{{{ getComponentParent() method /** * Finds a parent of the specified component. * @param comp The component * @param clazz Looks for a parent with this class (exact match, not * derived). * @since jEdit 4.2pre1 */ public static Component getComponentParent(Component comp, Class clazz) { while(true) { if(comp == null) break; if(comp instanceof JComponent) { Component real = (Component)((JComponent)comp) .getClientProperty("KORTE_REAL_FRAME"); if(real != null) comp = real; } if(comp.getClass().equals(clazz)) return comp; else if(comp instanceof JPopupMenu) comp = ((JPopupMenu)comp).getInvoker(); else if(comp instanceof FloatingWindowContainer) { comp = ((FloatingWindowContainer)comp) .getDockableWindowManager(); } else comp = comp.getParent(); } return null; } //}}} //{{{ getView() method /** * Finds the view parent of the specified component. * @since jEdit 4.0pre2 */ public static View getView(Component comp) { return (View)getComponentParent(comp,View.class); } //}}} //{{{ addSizeSaver() method /** * Adds a SizeSaver to the specified Frame. For non-Frame's use {@link #saveGeometry(Window,String)} * * @param frame The Frame for which to save the size * @param name The prefix for the settings * @since jEdit 4.3pre6 * @see #saveGeometry(Window,String) */ public static void addSizeSaver(Frame frame, String name) { addSizeSaver(frame,frame.getParent(),name); } //}}} //{{{ addSizeSaver() method /** * Adds a SizeSaver to the specified Frame. For non-Frame's use {@link #saveGeometry(Window,Container,String)} * * @param frame The Frame for which to save the size * @param parent The parent to be relative to * @param name The prefix for the settings * @since jEdit 4.3pre7 * @see #saveGeometry(Window,Container,String) */ public static void addSizeSaver(Frame frame, Container parent, String name) { SizeSaver ss = new SizeSaver(frame,parent,name); frame.addWindowStateListener(ss); frame.addComponentListener(ss); } //}}} //{{{ initContinuousLayout() method /** * Init the continuous layout flag using the jEdit's property * appearance.continuousLayout * * @param split the split. It must never be null * @since jEdit 4.3pre9 */ public static void initContinuousLayout(JSplitPane split) { boolean continuousLayout = split.isContinuousLayout(); if (continuousLayout != jEdit.getBooleanProperty("appearance.continuousLayout")) split.setContinuousLayout(!continuousLayout); } //}}} //{{{ Package-private members //{{{ initializeDeprecatedIcons() method /** * Initializes a list of mappings between old icon names and new names */ private static void initializeDeprecatedIcons() { deprecatedIcons.put("File.png", "16x16/mimetypes/text-x-generic.png"); deprecatedIcons.put("Folder.png", "16x16/places/folder.png"); deprecatedIcons.put("OpenFolder.png", "16x16/status/folder-open.png"); deprecatedIcons.put("OpenFile.png", "16x16/actions/edit-select-all.png"); deprecatedIcons.put("ReloadSmall.png","16x16/actions/view-refresh.png"); deprecatedIcons.put("DriveSmall.png", "16x16/devices/drive-harddisk.png"); deprecatedIcons.put("New.png", "22x22/actions/document-new.png"); deprecatedIcons.put("NewDir.png", "22x22/actions/folder-new.png"); deprecatedIcons.put("Reload.png", "22x22/actions/view-refresh.png"); deprecatedIcons.put("Load.png", "22x22/places/plugins.png"); deprecatedIcons.put("Save.png", "22x22/actions/document-save.png"); deprecatedIcons.put("SaveAs.png", "22x22/actions/document-save-as.png"); deprecatedIcons.put("SaveAll.png", "22x22/actions/document-save-all.png"); deprecatedIcons.put("Open.png", "22x22/actions/document-open.png"); deprecatedIcons.put("Print.png", "22x22/actions/document-print.png"); deprecatedIcons.put("Drive.png", "22x22/devices/drive-harddisk.png"); deprecatedIcons.put("Clear.png", "22x22/actions/edit-clear.png"); deprecatedIcons.put("Run.png", "22x22/actions/application-run.png"); deprecatedIcons.put("RunAgain.png", "22x22/actions/application-run-again.png"); deprecatedIcons.put("RunToBuffer.png", "22x22/actions/run-to-buffer.png"); deprecatedIcons.put("CopyToBuffer.png", "22x22/actions/copy-to-buffer.png"); deprecatedIcons.put("Plus.png", "22x22/actions/list-add.png"); deprecatedIcons.put("Minus.png", "22x22/actions/list-remove.png"); deprecatedIcons.put("Find.png", "22x22/actions/edit-find.png"); deprecatedIcons.put("FindAgain.png", "22x22/actions/edit-find-next.png"); deprecatedIcons.put("FindInDir.png", "22x22/actions/edit-find-in-folder.png"); deprecatedIcons.put("Parse.png", "22x22/actions/document-reload2.png"); deprecatedIcons.put("Delete.png", "22x22/actions/edit-delete.png"); deprecatedIcons.put("Paste.png", "22x22/actions/edit-paste.png"); deprecatedIcons.put("Cut.png", "22x22/actions/edit-cut.png"); deprecatedIcons.put("Copy.png", "22x22/actions/edit-copy.png"); deprecatedIcons.put("Undo.png", "22x22/actions/edit-undo.png"); deprecatedIcons.put("Redo.png", "22x22/actions/edit-redo.png"); deprecatedIcons.put("CurrentDir.png", "22x22/status/folder-visiting.png"); deprecatedIcons.put("ParentDir.png", "22x22/actions/go-parent.png"); deprecatedIcons.put("PageSetup.png", "22x22/actions/printer-setup.png"); deprecatedIcons.put("Plugins.png", "22x22/apps/system-installer.png"); deprecatedIcons.put("Floppy.png", "22x22/devices/media-floppy.png"); deprecatedIcons.put("Stop.png", "22x22/actions/process-stop.png"); deprecatedIcons.put("Cancel.png", "22x22/actions/process-stop.png"); deprecatedIcons.put("Home.png", "22x22/actions/go-home.png"); deprecatedIcons.put("Help.png", "22x22/apps/help-browser.png"); deprecatedIcons.put("Properties.png", "22x22/actions/document-properties.png"); deprecatedIcons.put("Preferences.png","22x22/categories/preferences-system.png"); deprecatedIcons.put("ZoomIn.png", "22x22/actions/zoom-in.png"); deprecatedIcons.put("ZoomOut.png", "22x22/actions/zoom-out.png"); deprecatedIcons.put("BrokenImage.png","22x22/status/image-missing.png"); deprecatedIcons.put("AdjustWidth.png","22x22/actions/resize-horisontal.png"); deprecatedIcons.put("ToolbarMenu.gif","ToolbarMenu.gif"); deprecatedIcons.put("Play.png","22x22/actions/media-playback-start.png"); deprecatedIcons.put("Pause.png","22x22/actions/media-playback-pause.png"); deprecatedIcons.put("MultipleResults.png", "22x22/actions/edit-find-multiple.png"); deprecatedIcons.put("SingleResult.png", "22x22/actions/edit-find-single.png"); deprecatedIcons.put("NextFile.png", "22x22/go-last.png"); deprecatedIcons.put("PreviousFile.png","22x22/go-first.png"); deprecatedIcons.put("closebox.gif", "10x10/actions/close.png"); deprecatedIcons.put("normal.gif", "10x10/status/document-unmodified.png"); deprecatedIcons.put("readonly.gif", "10x10/emblem/emblem-readonly.png"); deprecatedIcons.put("dirty.gif", "10x10/status/document-modified.png"); deprecatedIcons.put("new.gif", "10x10/status/document-new.png"); deprecatedIcons.put("ArrowU.png", "22x22/actions/go-up.png"); deprecatedIcons.put("ArrowR.png", "22x22/actions/go-next.png"); deprecatedIcons.put("ArrowD.png", "22x22/actions/go-down.png"); deprecatedIcons.put("ArrowL.png", "22x22/actions/go-previous.png"); deprecatedIcons.put("arrow1.png", "16x16/actions/group-expand.png"); deprecatedIcons.put("arrow2.png", "16x16/actions/group-collapse.png"); deprecatedIcons.put("NewView.png", "22x22/actions/window-new.png"); deprecatedIcons.put("UnSplit.png", "22x22/actions/window-unsplit.png"); deprecatedIcons.put("SplitVertical.png", "22x22/actions/window-split-vertical.png"); deprecatedIcons.put("SplitHorizontal.png", "22x22/actions/window-split-horizontal.png"); deprecatedIcons.put("ButtonProperties.png", "22x22/actions/document-properties.png"); } //}}} //{{{ init() method static void init() { initializeDeprecatedIcons(); // Load the icon theme but fallback on the old icons String theme = jEdit.getProperty("icon-theme", "tango"); Log.log(Log.DEBUG, GUIUtilities.class, "Icon theme set to: "+theme); setIconPath("jeditresource:/org/gjt/sp/jedit/icons/themes/" + theme + "/"); Log.log(Log.DEBUG, GUIUtilities.class, "Loading icon theme from: "+iconPath); // don't do this in static{} since we need jEdit.initMisc() // run first so we have the jeditresource: protocol NEW_BUFFER_ICON = loadIcon("new.gif"); DIRTY_BUFFER_ICON = loadIcon("dirty.gif"); READ_ONLY_BUFFER_ICON = loadIcon("readonly.gif"); NORMAL_BUFFER_ICON = loadIcon("normal.gif"); WINDOW_ICON = loadIcon(jEdit.getProperty("logo.icon.medium")); } //}}} //{{{ showSplashScreen() method static void showSplashScreen() { splash = new SplashScreen(); } //}}} //{{{ advanceSplashProgress() method static void advanceSplashProgress() { if(splash != null) splash.advance(); } //}}} //{{{ advanceSplashProgress() method static void advanceSplashProgress(String label) { if(splash != null) splash.advance(label); } //}}} //}}} //{{{ Private members private static SplashScreen splash; private static Map<String, Icon> icons; private static String iconPath = "jeditresource:/org/gjt/sp/jedit/icons/themes/"; private static String defaultIconPath = "jeditresource:/org/gjt/sp/jedit/icons/themes/"; private static HashMap<String, String> deprecatedIcons = new HashMap<String, String>(); //{{{ _loadMenuItem() method private static JMenuItem _loadMenuItem(String name, ActionContext context, boolean setMnemonic) { String label = jEdit.getProperty(name + ".label"); if (label == null) { label = name; } char mnemonic; int index = label.indexOf('$'); if (index != -1 && label.length() - index > 1) { mnemonic = Character.toLowerCase(label.charAt(index + 1)); label = label.substring(0, index).concat(label.substring(++index)); } else { mnemonic = '\0'; } JMenuItem mi; if (jEdit.getBooleanProperty(name + ".toggle")) { mi = new EnhancedCheckBoxMenuItem(label, name, context); } else { mi = new EnhancedMenuItem(label, name, context); } if (!OperatingSystem.isMacOS() && setMnemonic && mnemonic != '\0') { mi.setMnemonic(mnemonic); } Icon itemIcon = loadIcon(jEdit.getProperty(name + ".icon.small")); if(itemIcon != null) { mi.setIcon(itemIcon); } return mi; } //}}} private GUIUtilities() {} //}}} //{{{ Inner classes //{{{ SizeSaver class /** * A combined ComponentListener and WindowStateListener to continually save a Frames size.<br /> * For non-Frame's use {@link GUIUtilities#saveGeometry(Window,String)} * * @author Björn Kautler * @version $Id: GUIUtilities.java 13259 2008-08-10 20:54:46Z shlomy $ * @since jEdit 4.3pre6 * @see GUIUtilities#saveGeometry(Window,Container,String) */ static class SizeSaver extends ComponentAdapter implements WindowStateListener { private Frame frame; private Container parent; private String name; //{{{ SizeSaver constructor /** * Constructs a new SizeSaver. * * @param frame The Frame for which to save the size * @param name The prefix for the settings */ SizeSaver(Frame frame, String name) { this.frame = frame; this.parent = frame.getParent(); } //}}} //{{{ SizeSaver constructor /** * Constructs a new SizeSaver. * * @param frame The Frame for which to save the size * @param parent The parent to be relative to. * @param name The prefix for the settings */ public SizeSaver(Frame frame, Container parent, String name) { if ((null == frame) || (null == name)) { throw new NullPointerException(); } this.frame = frame; this.parent = parent; this.name = name; } //}}} //{{{ windowStateChanged() method public void windowStateChanged(WindowEvent wse) { int extendedState = wse.getNewState(); jEdit.setIntegerProperty(name + ".extendedState",extendedState); Rectangle bounds = frame.getBounds(); save(extendedState, bounds); } //}}} //{{{ save() method private void save(int extendedState, Rectangle bounds) { switch (extendedState) { case Frame.MAXIMIZED_VERT: jEdit.setIntegerProperty(name + ".x",bounds.x); jEdit.setIntegerProperty(name + ".width",bounds.width); break; case Frame.MAXIMIZED_HORIZ: jEdit.setIntegerProperty(name + ".y",bounds.y); jEdit.setIntegerProperty(name + ".height",bounds.height); break; case Frame.NORMAL: saveGeometry(frame,parent,name ); break; } } //}}} //{{{ componentResized() method @Override public void componentResized(ComponentEvent ce) { componentMoved(ce); } //}}} //{{{ componentMoved() method @Override public void componentMoved(ComponentEvent ce) { final Rectangle bounds = frame.getBounds(); final Runnable sizeSaver = new Runnable() { public void run() { int extendedState = frame.getExtendedState(); save(extendedState, bounds); } }; new Thread("Sizesavingdelay") { @Override public void run() { try { Thread.sleep(500L); } catch (InterruptedException ie) { } SwingUtilities.invokeLater(sizeSaver); } }.start(); } //}}} } //}}} //}}} }

The table below shows all metrics for GUIUtilities.java.

MetricValueDescription
BLOCKS155.00Number of blocks
BLOCK_COMMENT22.00Number of block comment lines
COMMENTS720.00Comment lines
COMMENT_DENSITY 0.85Comment density
COMPARISONS97.00Number of comparison operators
CYCLOMATIC192.00Cyclomatic complexity
DECL_COMMENTS175.00Comments in declarations
DOC_COMMENT584.00Number of javadoc comment lines
ELOC852.00Effective lines of code
EXEC_COMMENTS11.00Comments in executable code
EXITS147.00Procedure exits
FUNCTIONS85.00Number of function declarations
HALSTEAD_DIFFICULTY95.50Halstead difficulty
HALSTEAD_EFFORT 0.00Halstead effort
INTERFACE_COMPLEXITY271.00Interface complexity
JAVA0001 0.00JAVA0001 Package name does not contain only lower case letters
JAVA0002 0.00JAVA0002 Package name does not begin with a top level domain name or country code
JAVA0003 0.00JAVA0003 Minimize use of on-demand (.*) imports
JAVA0004 0.00JAVA0004 Unnecessary import from java.lang
JAVA0005 1.00JAVA0005 Imports not in specified order
JAVA0006 0.00JAVA0006 Empty finally block
JAVA0007 5.00JAVA0007 Should not declare public field
JAVA0008 0.00JAVA0008 Empty catch block
JAVA0009 0.00JAVA0009 Protected member in final class
JAVA0010 0.00JAVA0010 Non-instantiable class does not contain a non-private static member
JAVA0011 0.00JAVA0011 Abstract class does not contain an abstract method
JAVA0012 0.00JAVA0012 Non-constructor method with same name as declaring class
JAVA0013 0.00JAVA0013 Non-blank final field is not static
JAVA0014 0.00JAVA0014 Class with only static members has non-private constructor
JAVA0015 0.00JAVA0015 Package class contains public nested type
JAVA0016 0.00JAVA0016 Abstract class contains public constructor
JAVA0017 0.00JAVA0017 Class name does not have required form
JAVA0018 1.00JAVA0018 Method name does not have required form
JAVA0019 0.00JAVA0019 Interface name does not have required form
JAVA0020 0.00JAVA0020 Field name does not have required form
JAVA0021 0.00JAVA0021 Interface method name does not have required form
JAVA0022 0.00JAVA0022 Static final field name does not have required form
JAVA0023 0.00JAVA0023 Empty finalize method
JAVA0024 0.00JAVA0024 Empty class
JAVA0025 0.00JAVA0025 Method override is empty
JAVA0026 0.00JAVA0026 Finalize method with parameters
JAVA0029 0.00JAVA0029 Private method not used
JAVA0030 0.00JAVA0030 Private field not used
JAVA0031 0.00JAVA0031 Case statement not properly closed
JAVA0032 1.00JAVA0032 Switch statement missing default
JAVA0033 0.00JAVA0033 default: not last case in switch statement
JAVA003445.00JAVA0034 Missing braces in if statement
JAVA0035 0.00JAVA0035 Missing braces in for statement
JAVA0036 0.00JAVA0036 Missing braces in while statement
JAVA0038 0.00JAVA0038 Non-case label in switch statement
JAVA0039 0.00JAVA0039 Break statement with label
JAVA0040 0.00JAVA0040 Switch statement contains N cases (maximum: M)
JAVA0041 0.00JAVA0041 Nested synchronized block
JAVA0042 0.00JAVA0042 Empty synchronized statement
JAVA0043 0.00JAVA0043 Inner class does not use outer class
JAVA0044 0.00JAVA0044 Serializable class with no instance variables
JAVA0045 0.00JAVA0045 Serializable class with only transient fields
JAVA0046 0.00JAVA0046 Name of class not derived from Exception ends with 'Exception'
JAVA0047 0.00JAVA0047 Serializable class derives from invalid base class
JAVA0048 0.00JAVA0048 Name of class derived from Exception does not end with 'Exception'
JAVA0049 0.00JAVA0049 Nested block at depth N (maximum: M)
JAVA0050 0.00JAVA0050 Class derives from java.lang.Error
JAVA0051 0.00JAVA0051 Class derives from java.lang.RuntimeException
JAVA0052 0.00JAVA0052 Class derives from java.lang.Throwable
JAVA0053 0.00JAVA0053 Unused label
JAVA0054 0.00JAVA0054 Inheritance depth N exceeds maximum M
JAVA0055 0.00JAVA0055 Class should be interface
JAVA0056 0.00JAVA0056 Unnecessary abstract modifier for interface or annotation
JAVA0057 0.00JAVA0057 Unnecessary default constructor
JAVA0058 0.00JAVA0058 Constructor calls super()
JAVA0059 0.00JAVA0059 Method override only calls super()
JAVA0061 0.00JAVA0061 Inaccessible member in anonymous class
JAVA0062 0.00JAVA0062 Public class missing public member or protected constructor
JAVA0063 0.00JAVA0063 Identifier name should not contain '$'
JAVA0064 0.00JAVA0064 N variations of identifier name (maximum: M)
JAVA0065 0.00JAVA0065 Unnecessary final modifier for method in final class
JAVA0066 0.00JAVA0066 Unnecessary modifier for interface nested type
JAVA0067 1.00JAVA0067 Array descriptor on identifier name
JAVA0068 0.00JAVA0068 Modifiers not declared in recommended order
JAVA0071 0.00JAVA0071 Strings compared with ==
JAVA0073 0.00JAVA0073 Integer division in floating-point context
JAVA0074 0.00JAVA0074 Use of Object.notify()
JAVA0075 0.00JAVA0075 Method parameter hides field
JAVA007610.00JAVA0076 Use of magic number
JAVA0077 0.00JAVA0077 Private field not used in declaring class
JAVA0078 0.00JAVA0078 Floating point values compared with ==
JAVA0079 0.00JAVA0079 Use of instance to reference static member
JAVA0080 0.00JAVA0080 Import declaration not used
JAVA0081 0.00JAVA0081 Boolean literal in comparison
JAVA0082 0.00JAVA0082 Unnecessary widening cast
JAVA0083 0.00JAVA0083 Unnecessary instanceof test
JAVA0084 3.00JAVA0084 Should use compound assignment operator
JAVA0085 0.00JAVA0085 Use of sun.* class
JAVA0087 1.00JAVA0087 Use of Thread.sleep()
JAVA0089 0.00JAVA0089 Use of restricted package
JAVA0092 0.00JAVA0092 Use of restricted type
JAVA0093 0.00JAVA0093 Redundant assignment
JAVA0094 0.00JAVA0094 Field hides a superclass field
JAVA0095 0.00JAVA0095 Uninitialized private field
JAVA0096 0.00JAVA0096 Field in nested class hides outer field
JAVA0098 2.00JAVA0098 Minimize use of implicit field initializers
JAVA0100 1.00JAVA0100 Class contains N non-final fields (maximum: M)
JAVA0101 0.00JAVA0101 Unnecessary modifier for field in interface
JAVA0102 0.00JAVA0102 Last statement in finalize() not super.finalize()
JAVA0103 0.00JAVA0103 Explicit call to finalize()
JAVA0104 0.00JAVA0104 finalize() only calls super.finalize()
JAVA0105 0.00JAVA0105 Duplicate import declaration
JAVA0106 0.00JAVA0106 Unnecessary import from current package
JAVA010812.00JAVA0108 Incorrect javadoc: no @param tag for 'parameter'
JAVA0109 0.00JAVA0109 Incorrect javadoc: no parameter 'parameter'
JAVA011041.00JAVA0110 Incorrect javadoc: no @return tag
JAVA0111 0.00JAVA0111 Incorrect javadoc: @return tag for void method
JAVA0112 0.00JAVA0112 Incorrect javadoc: no exception 'exception' in throws
JAVA0113 0.00JAVA0113 Incorrect javadoc: no @author tag
JAVA0114 0.00JAVA0114 Incorrect javadoc: no @version tag
JAVA0115 0.00JAVA0115 Incorrect javadoc: no @throws or @exception tag for 'exception'
JAVA0116 0.00JAVA0116 Missing javadoc: field 'field'
JAVA0117 2.00JAVA0117 Missing javadoc: method 'method'
JAVA0118 1.00JAVA0118 Missing javadoc: type 'type'
JAVA0119 0.00JAVA0119 Control variable changed within body of for loop
JAVA0123 0.00JAVA0123 Use all three components of for loop
JAVA0125 0.00JAVA0125 Continue statement with label
JAVA0126 2.00JAVA0126 Method declares unchecked exception in throws
JAVA0128 1.00JAVA0128 Public constructor in non-public class
JAVA0130 0.00JAVA0130 Non-static method does not use instance fields
JAVA0131 0.00JAVA0131 Compatible method does not override base
JAVA0132 0.00JAVA0132 Method overload with compatible signature
JAVA0133 0.00JAVA0133 Non-synchronized method overrides synchronized method
JAVA0135 0.00JAVA0135 Only one of Object.equals and Object.hashCode defined: missing 'method'
JAVA0136 1.00JAVA0136 N methods defined in class (maximum: M)
JAVA0137 0.00JAVA0137 Non-abstract class missing constructor
JAVA0138 0.00JAVA0138 N parameters defined for method (maximum: M)
JAVA0139 0.00JAVA0139 Definition of main other than public static void main(java.lang.String[])
JAVA0141 0.00JAVA0141 Unnecessary modifier for method in interface
JAVA0143 0.00JAVA0143 Synchronized method
JAVA0144 0.00JAVA0144 Line exceeds maximum M characters
JAVA01453246.00JAVA0145 Tab character used in source file
JAVA0150 0.00JAVA0150 java.lang.Error (or subclass) thrown
JAVA0153 0.00JAVA0153 Inefficient conversion of integer to string
JAVA0159 0.00JAVA0159 Inefficient conversion of string to integer
JAVA0160 0.00JAVA0160 Method does not throw specified exception
JAVA0161 0.00JAVA0161 Conditional wait() not in loop
JAVA0163 0.00JAVA0163 Empty statement
JAVA0165 0.00JAVA0165 Conflicting return statement in finally block
JAVA0166 3.00JAVA0166 Generic exception caught
JAVA0167 0.00JAVA0167 ThreadDeath not rethrown
JAVA0169 0.00JAVA0169 Unnecessary catch block: exception 'exception'
JAVA0170 0.00JAVA0170 Caught exception not derived from java.lang.Exception
JAVA0171 0.00JAVA0171 Unused local variable
JAVA0173 1.00JAVA0173 Unused method parameter
JAVA0174 0.00JAVA0174 Assigned local variable never used
JAVA0175 0.00JAVA0175 Successive assignment to variable
JAVA0176 0.00JAVA0176 Local variable name does not have required form
JAVA017712.00JAVA0177 Variable declaration missing initializer
JAVA0179 0.00JAVA0179 Local variable hides visible field
JAVA0233 0.00JAVA0233 Definition of serialVersionUID other than 'private static final long serialVersionUID'
JAVA0234 0.00JAVA0234 Class is Serializable but does not define serialVersionUID
JAVA0235 0.00JAVA0235 Class defines serialVersionUID but does not implement Serializable
JAVA0236 0.00JAVA0236 Attempt to clone an object which does not implement Cloneable
JAVA0237 0.00JAVA0237 Class implements Cloneable but does not have public clone method
JAVA0238 0.00JAVA0238 Clone method does not call super.clone()
JAVA0239 0.00JAVA0239 Class declares 'readObject' or 'writeObject' but does not implement Serializable
JAVA0240 0.00JAVA0240 Serializable class which declares readObject or writeObject but not both
JAVA0241 0.00JAVA0241 'readObject' or 'writeObject' should be declared private in Serializable class
JAVA0242 0.00JAVA0242 Transient field in non-Serializable class
JAVA0243 0.00JAVA0243 'readResolve' or 'writeReplace' should be declared private or protected
JAVA0244 0.00JAVA0244 Field or method name in subclass differs only by case from inherited field or method
JAVA0245 0.00JAVA0245 JUnit TestCase with non-trivial constructor
JAVA0246 0.00JAVA0246 JUnit assertXXX statement missing message parameter
JAVA0247 0.00JAVA0247 JUnit 'setUp()' and 'tearDown()' should call super method
JAVA0248 0.00JAVA0248 JUnit method 'setUp' or 'tearDown' with incorrect signature
JAVA0249 0.00JAVA0249 JUnit TestCase 'suite()' should be declared static
JAVA0250 0.00JAVA0250 JUnit TestCase declares testXXX method with incorrect signature
JAVA0251 0.00JAVA0251 Use '%n' for line breaks in printf/format for platform independence
JAVA0252 0.00JAVA0252 'enum' is a Java 1.5 reserved word
JAVA0253 0.00JAVA0253 Not all enum constants consumed in switch statement
JAVA0254 0.00JAVA0254 Use enhanced for loop construct instead of Iterator
JAVA0255 0.00JAVA0255 Result of method invocation not used
JAVA0256 0.00JAVA0256 Assignment of external collection/array to field
JAVA0257 0.00JAVA0257 Use of 'Constant Interface' anti-pattern
JAVA0258 0.00JAVA0258 Implement Iterable for foreach compatibility
JAVA0259 0.00JAVA0259 Return of collection/array field
JAVA0260 0.00JAVA0260 Use 'enum' instead of Enumerated Type pattern
JAVA0261 0.00JAVA0261 Use specialized Enum collection types
JAVA0262 0.00JAVA0262 Use of char in integer context
JAVA0263 0.00JAVA0263 Long literal ends with 'l' instead of 'L'
JAVA0264 0.00JAVA0264 Integer math in long context - check for overflow
JAVA0265 0.00JAVA0265 Use of Throwable.printStackTrace()
JAVA0266 0.00JAVA0266 Use of System.out
JAVA0267 0.00JAVA0267 Use of System.err
JAVA0269 0.00JAVA0269 Contents of StringBuffer never used
JAVA0270 2.00JAVA0270 Use Java 5.0 enhanced for loop construct to iterate over all elements in an array
JAVA0271 0.00JAVA0271 Minimize use of on-demand (.*) static imports
JAVA0272 0.00JAVA0272 Thread.run() called
JAVA0273 0.00JAVA0273 Non-final derivative of Thread calls start() in constructor
JAVA0274 0.00JAVA0274 Serializable class has a synchronized readObject()
JAVA0275 0.00JAVA0275 Serializable class has a synchronized writeObject() and no other synchronized methods
JAVA0276 0.00JAVA0276 Unnecessary use of String constructor
JAVA0277 0.00JAVA0277 Iterator.next() implementation does not throw NoSuchElementException
JAVA0278 0.00JAVA0278 Unnecessary use of Boolean constructor
JAVA0279 0.00JAVA0279 Serialization method readObject or readObjectNoData calls an overridable method
JAVA0280 0.00JAVA0280 IllegalMonitorStateException caught
JAVA0281 0.00JAVA0281 Iterator.next() not called in loop
JAVA0282 0.00JAVA0282 Call to Iterator.next() in loop which does not test Iterator.hasNext()
JAVA0283 0.00JAVA0283 Control variable not updated in loop body
JAVA0284 0.00JAVA0284 Explicit garbage collection
JAVA0285 0.00JAVA0285 Dereference of potentially null variable
JAVA0286 0.00JAVA0286 Dereference of null variable
JAVA0287 0.00JAVA0287 Unnecessary null check
JAVA0288 0.00JAVA0288 Inconsistent null check
LINES2001.00Number of lines in the source file
LINE_COMMENT114.00Number of line comments
LOC1082.00Lines of code
LOGICAL_LINES469.00Number of statements
LOOPS 9.00Number of loops
NEST_DEPTH 5.00Maximum nesting depth
OPERANDS2604.00Number of operands
OPERATORS4193.00Number of operators
PARAMS162.00Number of formal parameter declarations
PROGRAM_LENGTH6797.00Halstead program length
PROGRAM_VOCAB878.00Halstead program vocabulary
PROGRAM_VOLUME 0.00Halstead program volume
RETURNS109.00Number of return points from functions
SIZE59984.00Size of the file in bytes
UNIQUE_OPERANDS818.00Number of unique operands
UNIQUE_OPERATORS60.00Number of unique operators
WHITESPACE199.00Number of whitespace lines