In the last section, we looked at creating a menu on a menu bar. XUL also has the capability of creating popup menus. Popup menus are typically displayed when the user presses the right mouse button.
XUL has three different types of popups, described below. The main difference is the way in which they appear.
All three types of popups differ in the way that the user invokes them. The type of popup is determined by the element that invokes the popup.
A popup is described using the
element. It has no special attributes and is a type of box. When invoked, it will display a window containing whatever you put inside the menupopup
. However, you should always put an menupopup
attribute on the menupopup as it is used to associate the popup with an element. We'll see what this means soon. First, an example:id
<popupset> <menupopup id="clipmenu"> <menuitem label="Cut"/> <menuitem label="Copy"/> <menuitem label="Paste"/> </menupopup> </popupset>
As can be seen here, a simple popup menu with three commands on it has been created. The
element surrounds the three menupopup
elements. You will also notice that the menuitem
has been set on the id
menupopup
element itself.
The
element surrounds the entire popup menu declaration. This is a generic container for popups, and is optional. It does not draw on screen but instead is used as a placeholder where you would declare all of your popups. As the name popupset
implies, you can put multiple popup declarations inside it. Just add additional ones after the first popupset
element. You can have more than one menupopup
in a file, but usually you will have only one.popupset
Now that we've created the popup, it's time to make the popup appear. To do this we need to associate the popup with an element where it should appear. We do this because we only want the popup to appear when the user clicks in a certain area of a window. Typically, this will be a specific button or a box.
To associate the popup with an element, you add one of three attributes to the element. The attribute you add depends on which type of popup you want to create. For plain popups, add a
attribute to the element. For context popups, add a popup
attribute. Finally, for tooltip popups, add a context
attribute.tooltip
The value of the attribute must be set to the
of the id
menupopup
that you want to have appear. This is why you must put the id on the popup. That way it's easy to have multiple menupopups in one file.
In the example above, we want to make the popup a context menu. That means that we need to use the
attribute and add it to the element which we want to have the popup associated with. The sample below shows how we might do this:context
<popupset> <menupopup id="clipmenu"> <menuitem label="Cut"/> <menuitem label="Copy"/> <menuitem label="Paste"/> </menupopup> </popupset> <box context="clipmenu"> <label value="Context click for menu"/> </box>
Here, the menupopup has been associated with a box. Whenever you context-click (right-click) anywhere inside the box, the popup menu will appear. The popup will also appear even if you click on the children of the box, so it will work if you click on the
element also. The label
attribute has been used to associate the box with a menupopup with the same id. In this case, the menupopup context
clipmenu
will appear. This way, you can have a number of popups and associate them with different elements.
You could associate multiple popups with the same element by putting more attributes of different types on an element. You could also associate the same popup with multiple elements, which is one advantage of using this popup syntax. Popups can only be associated with XUL elements; they cannot be associated with HTML elements.
We'll look at a simple way to create tooltips here. There are two ways to create a tooltip. The simplest way, which is much more common, is to add a
attribute to an element for which you want to assign a tooltip.tooltiptext
The second method is to use a
element containing the content of a tooltip. This requires you to have a separate block of content for each tooltip or to have a script which sets the content. However, it does allow you to use any content besides text in a tooltip.tooltip
<button label="Save" tooltiptext="Click here to save your stuff"/> <popupset> <tooltip id="moretip" orient="vertical" style="background-color: #33DD00;"> <description value="Click here to see more information"/> <description value="Really!" style="color: red;"/> </tooltip> </popupset> <button label="More" tooltip="moretip"/>
These two buttons each have a tooltip. The first uses the default tooltip style. The second uses a custom tooltip that has a different background color and styled text. The tooltip is associated with the More button using the
attribute, which is set to the corresponding tooltip
of the id
element. Note that the tooltip
tooltip
element is still placed inside a
element like other popup types.popupset
By default, the popup and context windows will appear where the mouse pointer is. Tooltips will be placed slightly below the element so that the mouse pointer does not obscure it. There are cases however, where you will want to indicate in more detail where the popup appears. For example, the popup menu that appears when you click the Back button in a browser should appear underneath the back button, not where the mouse pointer is.
To change the popup position, you can use an additional attribute,
, on the position
. You can also add it to the menupopup
element. This attribute is used to indicate the placement of the popup relative to the element invoking the popup. It can be set to a number of values, which are described briefly below:menupopup
By adding the position
attribute to a popup element, you can specify precisely where the popup appears. You cannot specify an exact pixel position. The position
attribute can be used with all three popup types, although you probably would not change the value for tooltips. The example below demonstrates creating a back button with a popup menu:
<popupset> <menupopup id="backpopup" position="after_start"> <menuitem label="Page 1"/> <menuitem label="Page 2"/> </menupopup> </popupset> <button label="Pop Me Up" popup="backpopup"/>
Let's add a simple popup menu to the find files dialog. For simplicity, we'll just replicate the contents of the Edit menu. Let's have the popup appear when clicking over the first tab panel:
<popupset> <menupopup id="editpopup"> <menuitem label="Cut" accesskey="t"/> <menuitem label="Copy" accesskey="c"/> <menuitem label="Paste" accesskey="p" disabled="true"/> </menupopup> </popupset> <vbox flex="1"> . . . <tabpanel id="searchpanel" orient="vertical" context="editpopup">
Here a simple popup that is similar to the edit menu has been added to the first tabpanel. If you right-click (Control-click on the Macintosh) anywhere on the first panel, the popup will appear. However, the popup will not appear if you click anywhere else. Note that the textbox has its own built-in popup menu which will override the one we specified.
Our Find files example so far : Source View
Next, we'll look at how to create scrolling menus.