ShortcutBar
Developed by Brad Wery [TeamSybase]
bradwery@gmail.com
-----------------------------------

This is my attempt at duplicating the look and feel of Outlooks ShortcutBar. Hopefully you will find it usefull.



How To Use:
-----------------------------------

- Place the u_cst_shortcutbar component on your window.

Add Items
	- In the open event of your window call the following function to add items the the shortcut bar:
		- <shortcutbar>.of_AddItem(<objectname>, <label>, <imagename>)
		- e.g. uo_1.of_AddItem(dw_1, "Mail", 'Custom025!')

Select an Item
	- After the item has been added call the following function to select it:
		- <shortcutbar>.of_SelectItem(<label>) OR
		- <shortcutbar>.of_SelectItem(<index>)  //index is the value returned from of_AddItem()
		- e.g. uo_1.of_SelectItem("Mail")

Hide Items
	- After the item has been added call the following function to place it in the icon tray portion of the control:
		- <shortcutbar>.of_HideItem(<label>) OR
		- <shortcutbar>.of_HideItem(<index>)  //index is the value returned from of_AddItem()
		- e.g. uo_1.of_HideItem("Mail")


Save\Load Settings
	- ShortcutBar settings can be saved and loaded by providing an ini file or registry key:
		- After the shortcutbar items have been loaded call the following function:
			- <shortcutbar>.of_SetIni(<file or reg key>)
			- e.g. uo_1.of_SetIni("C:\app.ini")
			- e.g. uo_1.of_SetIni("HKEY_CURRENT_USER\Software\ShortcutBar\")

Note:
-----------------------------------
The color "Silver" will be set to transparent for images passed to of_AddItem.
To display the background color of these images as transparent make sure it's actual color is "Silver" (the color used by the PB stock images).


The following objects were created by the following people:

Jason 'Bug' Fenter
	cn_gradient

Aart Onkenhout
	n_cst_theme

Other contributions made by:

Serge Samson (all the Vista and Pattern looks)
Roland Smith
Yeyi (PBNI Canvas - u_canvas)
