A common application-specific feature is a standard iconic toolbar that provides icons to carry out common form functions such as Save, Undo, Enter Query, Execute Query, Next Block, Previous Block, Next Record, Previous Record, Insert Record, Delete Record, Exit, Clear, List Values, and Close Application. Toolbars also let users invoke functions such as Notepad, Diary, Calculator, and so on. Such a toolbar is useful especially when the application uses a customized menu bar to replace the default menu provided by Oracle Forms runtime. In addition, a toolbar enhances the GUI's look and feel.
In Forms 5.x and above, the default toolbar comes with Forms runtime (by adding the suffix &SMARTBAR to the DEFAULT value of the Menu Module property). However, think of a function like Close Application, mentioned earlier. This function might refer to closing all forms invoked in a multiform application ”a task that cannot be achieved with the normal Exit toolbar icon unless it is clicked repeatedly.
In Forms 5.x and above, toolbars can be associated with a form at three levels at runtime:
Displaying Menu-Level Toolbars
To create a menu-level toolbar, specify &SMARTBAR after the DEFAULT menu module name in the Form Module property palette. Dynamically hiding the menu using REPLACE_MENU('') in the WHEN_NEW_FORM_INSTANCE trigger will also suppress the display of the associated toolbar.
To create a menu-level toolbar for any customized menu, set either the Visible In Horizontal Menu Toolbar or Visible In Vertical Toolbar property to Yes for each menu item that should appear in the menu toolbar.
Figure 1.1 shows a menu-level toolbar.
Figure 1.1. A menu-level toolbar.
Displaying a Form-Level or Window-Level Toolbar
To create a form-level or window-level toolbar, you create a horizontal toolbar canvas view with iconic buttons . Then, specify it as the value for the Form Horizontal Toolbar property or the Window Horizontal Toolbar property. To do so, follow these steps:
WHEN-BUTTON-PRESSED DO_KEY('COMMIT_FORM');
Tip
You can achieve the Close Application functionality described earlier by calling a procedure in the corresponding WHEN-BUTTON-PRESSED trigger. This technique is explained in the sub-section "Simulating a CLOSE ALL Forms" in Chapter 3, "Multi-form Applications."
Note
Specifying ToolTips provides a visual hint feature when the cursor enters the icon. This feature is available from Forms 5.x onwards. In Forms 4.5, this functionality has to be simulated with extra coding, as illustrated later in this section.
A sample toolbar constructed in this way looks like the one shown in Figure 1.2.
Figure 1.2. A form-level toolbar.
Simulating the ToolTip Feature in Forms 4.5
In Forms 4.5, you can display ToolTips by creating a display item, TOOLTIP_ITEM, with the following properties:
In addition, the property class PC_ICONIC_BUTTON discussed earlier can have the following two triggers attached to it: WHEN-MOUSE-ENTER and WHEN-MOUSE-LEAVE. The code for these triggers is explained in the steps that follow.
Dynamically populate this item with text equivalent to the Label in the WHEN-MOUSE-ENTER trigger, as follows :
WHEN-MOUSE-ENTER DECLARE tooltip_x_pos NUMBER; tooltip_y_pos NUMBER; tooltip_text VARCHAR2(30); item_id ITEM; BEGIN tooltip_x_pos := GET_ITEM_PROPERTY(:SYSTEM.MOUSE_ITEM,X_POS); tooltip_y_pos := GET_ITEM_PROPERTY(:SYSTEM.MOUSE_ITEM,Y_POS); tooltip_text := GET_ITEM_PROPERTY(:SYSTEM.MOUSE_ITEM,LABEL); :toolbar.tooltip_item := tooltip_text; item_id := FIND_ITEM('TOOLBAR.TOOLTIP_ITEM'); IF NOT ID_NULL(item_id) THEN SET_ITEM_PROPERTY(item_id, DISPLAYED, PROPERTY_TRUE); SET_ITEM_PROPERTY(item_id, POSITION tooltip_x_pos+10, tooltip_y_pos+10); ELSE MESSAGE('Invalid Tooltip Item'); RAISE FORM_TRIGGER_FAILURE; END IF; END;
A WHEN-MOUSE-LEAVE trigger will hide the dynamic ToolTip by setting its DISPLAYED property to FALSE as follows:
WHEN-MOUSE-LEAVE DECLARE item_id ITEM; BEGIN item_id := FIND_ITEM('TOOLBAR.TOOLTIP_ITEM'); IF NOT ID_NULL(item_id) THEN :toolbar.tooltip_item := NULL; SET_ITEM_PROPERTY(item_id, DISPLAYED, PROPERTY_FALSE); END IF; END;
In Forms 5.x and above, the ToolTip appears below the iconic button, whereas in Forms 4.5 it appears on the side. This has been intentionally done because the ToolTip in Forms 4.5 is attached to the MDI horizontal toolbar; there is no way to display it outside the toolbar canvas without making the canvas height more than the icons'height. This leaves a view space on the MDI toolbar.
Toolbar Tips
The following tips provide the tidbits often ignored while developing form-level and window-level toolbars. Also, the points to remember while associating toolbars with forms in multiform applications are highlighted.
The Toolbar Template Form
Use a source template form in which the toolbar can be constructed. Then, you can base customized forms on this template.
Common Form Toolbars
Toolbars attached at the form level are not available to all forms in an application. In a multiform application, especially when you're using OPEN_FORM, you can subclass the CANVAS_TOOLBAR from the source template form. Then, set the Form Horizontal Toolbar property to CANVAS_TOOLBAR for each form. Doing so creates an application with a common toolbar for each independent form.
To simulate the same functionality while using Forms 4.5, the CANVAS_TOOLBAR can be referenced from the source template form. Then, set the MDI Horizontal Toolbar property to CANVAS_TOOLBAR for each form.
Window-Specific Toolbars for Modal Windows
A modal window should have a window-level toolbar associated with it. Form-level toolbar icons are not accessible from a modal window. The same is true with toolbars associated with menu, SDI, or MDI windows. Figure 1.3 shows a form-specific toolbar with a Personal Info. icon. If you click on this icon, you get the window-specific toolbar for a modal window, shown in Figure 1.4.
Figure 1.3. A form-specific toolbar with a Personal Info. icon.
Figure 1.4. A window-level toolbar.
Floating Toolbars
This section discusses the techniques to implement dynamic toolbars. It starts by looking at the various ways a toolbar can be "dynamic."
Dynamic toolbars can be implemented several ways. You can create toolbars that dynamically shrink or expand, based on the current mouse position or the current item, record, block, canvas, or form; you hide, unhide, and resize proportionately the toolbar's iconic buttons, depending on the current cursor position. Examples are as follows:
Other dynamic toolbars are scrollable for forms that require greater functionality to be provided by means of application-specific buttons. Floating toolbars can appear almost anywhere ”that is, they "float" in an application or appear where you right-click. You can resize toolbars so that the icons fit proportionately. Finally, you can generate toolbars from a global set of iconic buttons, using point-and-click.
In this section, I will discuss the implementation of a floating toolbar. It has the flexibility of being able to float, or be displayed almost anywhere when initiated by a user action. It can also have dynamic resizing capability. It has the same functionality as a regular toolbar but remains displayed until closed by another user action. For example, the user action initiating the display of the toolbar can be a right mouse click on an empty part of the canvas (that's why it's floating), and the user action closing it can be a left mouse click in an empty area of the can vas.
Tip
The form objects including triggers can be included in an Object Group, which in turn can be included in an Object Library and shared (subclassed) across form modules.
Alternatively, a template form can be created with the described objects, and customized application-specific forms can be based on this template form.
Follow these steps to create the floating toolbar:
The WHEN-MOUSE-CLICK trigger code is as follows:
WHEN-MOUSE-CLICK IF NAME_IN('SYSTEM.MOUSE_ITEM') IS NULL THEN IF NAME_IN('SYSTEM.MOUSEBUTTON_PRESSED') != '1'THEN SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR', X_POS, TO_NUMBER(NAME_IN('SYSTEM.MOUSE_X_POS'))); SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR',Y_POS, TO_NUMBER(NAME_IN('SYSTEM.MOUSE_Y_POS'))) SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR', VISIBLE,PROPERTY_TRUE); END IF; END IF;
The floating toolbar will look like Figure 1.5.
Tip
The actual (X,Y) position of the displayed toolbar is an offset from the actual cursor (X,Y) position because the former is relative to the MDI Window and the latter is relative to the primary canvas of WINDOW0.
Figure 1.5. A floating toolbar.
You can initiate the window close in several ways. First, you can set the Hide On Exit property to Yes for this toolbar window. This is not a standard practice because the user might want to perform multiple functions in the form using this toolbar and would therefore want the toolbar to remain floating until explicitly closed. Applications demanding user-specific requests for such a feature are an exception to this rule.
Second, the window can close when the user clicks the upper-right x. This is the recommended practice, unless a user requirement specifies a different approach. To use this technique, write a WHEN-WINDOW-CLOSED trigger at form level that checks for the currently active window and closes it if it is WINDOW_FLOATING_TOOLBAR :
WHEN-WINDOW-CLOSED IF NAME_IN('SYSTEM.EVENT_WINDOW') = 'WINDOW_FLOATING_TOOLBAR'THEN SET_WINDOW_PEROPERTY('WINDOW_FLOATING_TOOLBAR', VISIBLE, PROPERTY_FALSE); END IF;
Third, the window can be made to disappear by creating a timer at the time of window initia tion and writing a WHEN-TIMER-EXPIRED trigger to hide it after a certain interval of time. You provide this second way of closing by specifying an appreciably large time interval ”a minute, for example. Closing the floating toolbar by means of a timer involves the following steps:
WHEN-MOUSE-CLICK DECLARE timer_id TIMER; one_minute NUMBER := 60000; BEGIN IF NAME_IN('SYSTEM.MOUSE_ITEM') IS NULL THEN IF NAME_IN('SYSTEM.MOUSE_BUTTON_PRESSED') != '1'THEN SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR', X_POS, NAME_IN('SYSTEM.MOUSE_X_POS')); SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR', Y_POS, NAME_IN('SYSTEM.MOUSE_Y_POS')); BEGIN timer_id := FIND_TIMER('TIMER_HIDE_FT'); IF ID_NULL(timer_id) THEN timer_id := CREATE_TIMER('TIMER_HIDE_FT',one_minute, NO_REPEAT); END IF; END; SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR', VISIBLE, PROPERTY_TRUE); END IF; END IF;
WHEN-TIMER-EXPIRED IF GET_APPLICATION_PROPERTY(TIMER_NAME) = 'TIMER_HIDE_FT'THEN IF GET_WINDOW_PROPERTY('WINDOW_FLOATING_FT', VISIBLE) = 'FALSE'THEN SET_WINDOW_PROPERTY('WINDOW_FLOATING_TOOLBAR', VISIBLE, PROPERTY_FALSE); END IF; END IF;
Floating Toolbar Pop-Up Menus
Another convenient way of displaying a floating toolbar is by providing a pop-up menu on a right mouse button click. This pop-up can have at least two menu options: Show Toolbar and Hide Toolbar. This can be achieved by the following steps:
WHEN-MOUSE-CLICK IF :SYSTEM.MOUSE_BUTTON_PRESSED != '1'THEN IF :SYSTEM.MOUSE_ITEM IS NULL THEN COPY(NAME_IN('SYSTEM.MOUSE_X_POS'), 'CTRL_BLK.MOUSEXPOS'); COPY(NAME_IN('SYSTEM.MOUSE_Y_POS'), 'CTRL_BLK.MOUSEYPOS'); END IF; END IF;
Here, CTRL_BLK.MOUSEXPOS and CTRL_BLK.MOUSEYPOS are two control items to hold the current values of SYSTEM.MOUSE_X_POS and SYSTEM.MOUSE_Y_POS as defined in the preceding code snippet.
IF :SYSTEM.MOUSE_ITEM IS NULL THEN SET_WINDOW_PROPERTY('window_ft', X_POS, TO_NUMBER(:ctrl_blk.mousexpos)); SET_WINDOW_PROPERTY('window_ft', Y_POS, TO_NUMBER(:ctrl_blk.mouseypos)); SET_WINDOW_PROPERTY('window_ft', VISIBLE, PROPERTY_TRUE); END IF;
SET_WINDOW_PROPERTY('window_ft', VISIBLE, PROPERTY_FALSE); :ctrl_blk.mousexpos := NULL; :ctrl_blk.mouseypos := NULL;
The pop-up menu appears somewhat like the one shown in Figure 1.6.
Figure 1.6. A pop-up menu to display a dynamic floating toolbar.
GUI Development
Advanced GUI Development: Developing Beyond GUI
Multi-form Applications
Advanced Forms Programming
Error-Message Handling
Object-oriented Methods in Forms
Intelligence in Forms
Additional Interesting Techniques
Working with Trees
Oracle 8 and 8i Features in Forms Developer