Using toolbars in MDI applications
This section describes some techniques you can use to customize
the behavior of your toolbars and save and restore toolbar settings.
For information about how to define and use menus and toolbars,
see the User’s Guide
.
Customizing toolbar behavior
Disabling toolbar buttons
To disable a toolbar button, you need to disable the menu
item with which it is associated. Disabling the menu item disables
the toolbar button automatically.
To disable a menu item, you need to set the Enabled property
of the menu item:
|
1 |
m_test.m_file.m_new.Enabled = FALSE |
Hiding toolbar buttons
To hide a menu item, you set the Visible property of the item:
|
1 |
m_test.m_file.m_open.Visible = FALSE |
Hiding a menu item does not cause its toolbar button to disappear
or be disabled. To hide a toolbar button, you need to set the ToolbarItemVisible property
of the menu item:
|
1 |
m_test.m_file.m_open.ToolBarItemVisible = FALSE |
Hiding a menu item does not cause the toolbar buttons for
the drop-down or cascading menu items at the next level to disappear
or be disabled. You need to hide or disable these buttons individually.
Setting the current item in a drop-down toolbar
When a user clicks on a toolbar button in a drop-down toolbar,
PowerBuilder makes the selected button the current item. This makes
it easy for the user to perform a particular toolbar action repeatedly.
You can also make a particular button the current item programmatically
by setting the CurrentItem property of the MenuCascade object. For
example, to set the current item to the toolbar button for the New
option on the File menu, you could execute this line in a script:
|
1 |
m_test.m_file.currentitem = m_test.m_file.m_new |
In order for this to work, you would need to specify MenuCascade
as the object type for the File menu in the Menu painter.
Testing for whether a toolbar is moved
Whenever a toolbar moves in an MDI frame window, PowerBuilder
triggers the ToolBarMoved event for the window. In the script for
this event, you can test to see which toolbar has moved and perform
some processing. When the user moves the FrameBar or SheetBar, the
ToolbarMoved event is triggered and the Message.WordParm and Message.LongParm
properties are populated with values that indicate which toolbar
was moved:
| Property | Value | Meaning |
|---|---|---|
| Message.WordParm | 0 | FrameBar moved |
| 1 | SheetBar moved | |
| Message.LongParm | 0 | Moved to left |
| 1 | Moved to top | |
| 2 | Moved to right | |
| 3 | Moved to bottom | |
| 4 | Set to floating |
Saving and restoring toolbar settings
You can save and restore the current toolbar settings using
functions that retrieve information about your toolbar settings,
and you can modify these settings.
GetToolbar and GetToolbarPos allow
you to retrieve the current toolbar settings. SetToolbar and SetToolbarPos allow
you to change the toolbar settings. The syntax you use for the GetToolbarPos and SetToolbarPos functions
varies depending on whether the toolbar you are working with is
floating or docked.
Floating toolbars
The position of a floating toolbar is determined by its x
and y coordinates. The size of a floating toolbar is determined
by its width and height.
When you code the GetToolbarPos and SetToolbarPos functions
for a floating toolbar, you need to include arguments for the x
and y coordinates and the width and height.
Docked toolbars
The position of a docked toolbar is determined by its docking
row and its offset from the beginning of the docking row. For toolbars
at the top or bottom, the offset for a docked toolbar is measured
from the left edge. For toolbars at the left or right, the offset
is measured from the top.
By default, the docking row for a toolbar is the same as its
bar index. If you align the toolbar with a different border in the
window, its docking row may change depending on where you place
it.
When you code the GetToolbarPos and SetToolbarPos functions
for a docked toolbar, you need to include arguments for the docking
row and the offset.
Example
The example below shows how to use a custom class user object
to manage toolbar settings. The user object has two functions, one
for saving the current settings and the other for restoring the
settings later on. Because the logic required to save and restore
the settings is handled in the user object (instead of in the window
itself), this logic can easily be used with any window.
The sample code shown below supports both fixed and floating
toolbars.
Script for the window’s Open event When the window opens, the following script restores the toolbar
settings from an initialization file. To restore the settings, it
creates a custom class user object called u_toolbar and calls
the Restore function:
|
1 |
// Create the toolbar NVO<br />u_toolbar = create u_toolbar<br />// Restore the toolbar positions<br />u_toolbar.Restore(this,"toolbar.ini", this.ClassName()) |
Script for the window’s Close event When the window closes, the following script saves the toolbar
settings by calling the Save function. Once the
settings have been saved, it destroys the user object:
|
1 |
// Save the toolbar <br />stateu_toolbar.Save(this, "toolbar.ini", ClassName())<br />// Destroy the toolbar NVOdestroy u_toolbar |
Script for the Save function The Save function has three arguments:
- Win – provides
the window reference - File – provides the
name of the file where the settings should be saved - Section – identifies
the section where the settings should be saved
The Save function uses the GetToolbar and GetToolbarPos functions
to retrieve the current toolbar settings. To write the settings
to the initialization file, it uses the SetProfileString function.
The Save function can handle multiple toolbars
for a single menu. It uses the bar index to keep track of information
for each toolbar:
|
1 |
// Store the toolbar settings for the passed window<br />integer index, row, offset, x, y, w, h<br />boolean visible<br />string visstring, alignstring, title<br />toolbaralignment alignmentFOR index = 1 to 16 |
|
1 |
// Try to get the attributes for the bar. <br />IF win.GetToolbar(index, visible, alignment, &<br /> title)= 1 THEN <br /> // Convert visible to a string<br /> CHOOSE CASE visible<br /> CASE true<br /> visstring = "true"<br /> CASE false <br /> visstring = "false" <br /> END CHOOSE// Convert alignment to a string <br /> <br /> CHOOSE CASE alignment <br /> CASE AlignAtLeft! <br /> alignstring = "left"<br /> CASE AlignAtTop!<br /> alignstring = "top" <br /> CASE AlignAtRight! <br /> alignstring = "right" <br /> CASE AlignAtBottom! <br /> alignstring = "bottom" <br /> CASE Floating! <br /> alignstring = "floating"<br /> END CHOOSE<br /> <br /> // Save the basic attributes <br /> SetProfileString(file, section + & <br /> String(index), "visible", visstring) <br /> SetProfileString(file, section + &<br /> String(index), "alignment", alignstring) <br /> SetProfileString(file, section + &<br /> String(index), "title", title)<br /> <br /> // Save the fixed position<br /> win.GetToolbarPos(index, row, offset)<br /> SetProfileString(file, section + &<br /> String(index), "row", String(row))<br /> SetProfileString(file, section + &<br /> String(index), "offset", String(offset))<br /> <br /> // Save the floating position<br /> win.GetToolbarPos(index, x, y, w, h)<br /> SetProfileString(file, section + &<br /> String(index), "x", String(x))<br /> SetProfileString(file, section + &<br /> String(index), "y", String(y))<br /> SetProfileString(file, section + &<br /> String(index), "w", String(w))<br /> <br /> SetProfileString(file, section + &<br /> String(index), "h", String(h))<br /> END IF<br />NEXT |
Script for the Restore function The Restore function has the same three arguments
as the Save function. It uses the ProfileString function
to retrieve toolbar settings from the initialization file. Once
the settings have been retrieved, it uses the SetToolbar and SetToolbarPos functions
to restore the toolbar settings.
Like the Save function, the Restore function
can handle multiple toolbars for a single menu. It uses the bar
index to keep track of information for each toolbar:
|
1 |
// Restore toolbar settings for the passed window<br /> <br />integer index, row, offset, x, y, w, h<br />boolean visible<br />string visstring, alignstring, title<br />toolbaralignment alignment<br /> <br />FOR index = 1 to 16<br /> // Try to get the attributes for the bar.<br /> IF win.GetToolbar(index, visible, alignment, &<br /> title)= 1 THEN<br /> // Try to get the attributes from the .ini<br /> // file<br /> visstring = ProfileString(file, section + &<br /> String(index), "visible", "")<br /> IF visstring > "" THEN<br /> // Get all of the attributes<br /> alignstring = ProfileString(file, section + &<br /> String(index), "alignment", "left")<br /> title = ProfileString(file, section + &<br /> String(index), "title", "(Untitled)")<br /> row = Integer(ProfileString(file, section + &<br /> String(index), "row", "1"))<br /> offset = Integer(ProfileString(file, &<br /> section + String(index), "offset", "0"))<br /> x = Integer(ProfileString(file, section + &<br /> String(index), "x", "0"))<br /> y = Integer(ProfileString(file, section + &<br /> String(index), "y", "0"))<br /> w = Integer(ProfileString(file, section + &<br /> String(index), "w", "0"))<br /> h = Integer(ProfileString(file, section + &<br /> String(index), "h", "0"))<br /> <br /> // Convert visstring to a boolean<br /> CHOOSE CASE visstring<br /> CASE "true"<br /> visible = true<br /> CASE "false"<br /> visible = false<br /> END CHOOSE<br /> <br /> // Convert alignstring to toolbaralignment<br /> CHOOSE CASE alignstring<br /> CASE "left"<br /> alignment = AlignAtLeft!<br /> CASE "top"<br /> alignment = AlignAtTop!<br /> CASE "right"<br /> alignment = AlignAtRight!<br /> CASE "bottom"<br /> alignment = AlignAtBottom!<br /> CASE "floating"<br /> alignment = Floating!<br /> END CHOOSE<br /> <br /> // Set the new position<br /> win.SetToolbar(index, visible, alignment, title)<br /> win.SetToolbarPos(index, row, offset, false)<br /> win.SetToolbarPos(index, x, y, w, h)<br /> END IF<br /> END IF<br />NEXT |