Home > Articles > Programming > Java

This chapter is from the book

Typical File Menu

An application's leftmost menu, typically titled "File," contains the following types of menu items:

  • Items that affect a window's top-level object type—the type of object that the window represents, such as a file, mailbox, or computer.

  • Items that affect the entire application—for example, application preferences.

  • Items by which users interact with external resources. For example, in Figure 25, the Print menu item enables users to interact with a printer.

Figure 25 Example File Menu

Although the title of the leftmost menu is usually "File," you can instead name it after the window's top-level object type—for example, "Console," "Mailbox," or "Computer."

NOTE

Except where noted, this chapter refers to an application's leftmost menu as the "File menu," though the menu's actual title might differ.

Place a menu item in the File menu if that item enables users to interact with an external resource, such as a printer.

TIP

Ensure that the File menu is always the leftmost menu of the menu bar. In addition, ensure that the File menu's title is either "File" or the name of the object type that the window represents.

New Item

The New item, shown in Figure 26, enables users to create an object of the type that the window represents. (In contrast, the Open item, described on page 39, reopens an existing object of that type.)

Figure 26 New Menu Item

The New item has several variants, each for a different type of application. Some frequently used variants are:

  • New...—Displays a dialog box.

  • New (with a submenu indicator)—Opens a submenu, as in Figure 27.

  • New File—Creates an object of type File.

  • New Window—Creates a new primary window displaying, typically, a new view of the same objects that the current primary window displays.

    Figure 27 New Menu Item with Submenu

To determine which variant of the New item to use, decide whether your application will enable users to create objects in the current primary window, in a new primary window, or in either. A task analysis can help you make this decision. (To learn about task analysis, see a book such as User and Task Analysis for Interface Design, described in "Related Books" on page xiv.) "Window Management and the File Menu" on page 49 can also help you decide which variant of the New item fits your application.

If users can create more than one type of object, the File menu can list more than one variant of the New item. For example, the File menu might list a New Mailbox item and a New Message item. If users can create ten or more types of objects, consider using a New... menu item to display a dialog box where users can choose a type of object.

Include the New item in a window's File menu if users can create objects in that window.

TIP

  • If users can create at least three types of objects—but fewer than ten types—ensure that the File menu's New item activates a submenu showing the types of objects that users can create.

  • In a File menu, ensure that the New item (or any one of its variants, New..., New File, or New File...) creates an object either in the current primary window or in a new primary window.

  • In a File menu, ensure that the New Window item (if present) creates a primary window—typically one containing a new view of the same objects displayed in the current primary window. If a menu item behaves in this way, label it New Window.

  • If users can set parameters of a new object, include a New... or New File... item in the File menu. Display a dialog box to help users set the new object's parameters before the application creates the object. For example, an email application might display a dialog box to let users name a mailbox before the application creates it.

  • In the File menu, if the New item has a submenu, assign the keyboard shortcut Ctrl-N to the most frequently used submenu item.

Open Item

The Open item opens an existing object in the current primary window or a new primary window. Typically, users choose the object in a dialog box for choosing files or other objects.

The Open item has the following variants:

  • Open (with a submenu indicator)
  • Open... (displays a dialog box)
  • Open in Current Window
  • Open in Current Window...
  • Open in New Window
  • Open in New Window...

The correct form to use in your application depends on whether the application can open objects in:

  • The current primary window
  • A new primary window
  • Either the current primary window or a new primary window

For help in deciding which variant of the Open item fits your application, see "Window Management and the File Menu" on page 49.

A File menu's New and Open items must manage windows in the same way. For example, if the New item creates objects in the current window, the Open item must also create objects in the current window.

TIP

  • If users can open at least three types of objects—but fewer than ten types—ensure that the File menu's Open item activates a submenu showing the types of objects that users can open.

  • In a File menu, if the Open item has a submenu, assign the keyboard shortcut Ctrl-O to the most frequently used submenu item.

  • If your application needs a dialog box for choosing files, use the file-chooser dialog box in the Swing API of the Java Foundation Classes.

Close Item

The Close item closes the current primary window. Include the Close item only if your application can display more than one primary window. Group the Close item with the New item and the Open item.

TIP

  • If your application supports more than one primary window, ensure that each File menu includes a Close menu item.

  • In a File menu, ensure that the Close item closes an application's current primary window and only that window.

  • If only one primary window remains open, ensure that the File menu's Close item behaves like that menu's Exit item. (For a description of the Exit item, see "Exit Item" on page 42.)

  • If closing a window will discard a user's unsaved changes, warn the user by displaying an alert box.

Print Item

The Print item prints the current object. The Print item ends in an ellipsis if it will display a Print Options dialog box. Display a Print Options dialog box if users can set print options.

TIP

If your application needs a Print Options dialog box, use the print-chooser dialog box in the Swing API of the JFC (Java Foundation Classes).

Preferences Item

The Preferences item displays a property sheet that lists preference settings for an entire application.

TIP

If your application's users can set preferences, include a Preferences item in the File menu.

File Properties Item

The File Properties item sets properties of the application window's top-level object (for example, a mailbox).

TIP

If a window's leftmost menu is named for the window's top-level object type (referred to here as File), and that object type has properties that users can display, ensure that the File menu includes an item labeled File Properties.

Most Recently Used (MRU) Menu List

Many applications provide a Most Recently Used (MRU) list so that users can reopen objects. The MRU list is a dynamic list of a user's most recently opened objects. The first object on the list is the one most recently used. If your application has an MRU list, assign mnemonics to the MRU numbers in the list, as shown in Figure 28.

Figure 28 Most Recently Used (MRU) List in a File Menu

TIP

  • If a File menu has a Most Recently Used list, place that list just above the menu's Exit item. Place one separator above the list and another separator below the list.

  • If a File menu has a Most Recently Used list, ensure that the list displays no more than 10 objects.

Exit Item

The Exit item terminates an application, closing all its windows—no matter how many primary windows are open. In applications that can display multiple primary windows, the File menu includes an Exit item and a Close item. The Close item closes only the current primary window and then terminates the application if no other primary window is open. If just one primary window is open, the Exit item and the Close item have the same effect. (For more information on the Close item, see page 40.)

In applications that can display only a single primary window, the Exit item is the only way to close that window from the File menu. In such applications, the File menu does not include a Close item.

TIP

  • Ensure that the Exit item is the final item in the File menu.

  • Ensure that the Exit item closes all associated windows and terminates the application.

  • If terminating the application will discard a user's unsaved changes, warn the user by displaying an alert box.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020