diff options
author | Jiao Li <angela@lindenlab.com> | 2009-07-07 08:55:15 +0000 |
---|---|---|
committer | Jiao Li <angela@lindenlab.com> | 2009-07-07 08:55:15 +0000 |
commit | 474fdccc2a4ffb3e2a7ba4de4f065548b059aa2d (patch) | |
tree | ad0a91b652c64016be40247257714924c0b6dc54 | |
parent | a4eef8ee55b386b6c0fb4c1f90146535d5f3b0dd (diff) |
make right-side ^^ chevron button and mail icon button spawn a dialog saying "not implement yet" or some such
Reviewed by James
-rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 7 | ||||
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_bottomtray.xml | 12 |
2 files changed, 17 insertions, 2 deletions
diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index d2c0ffd13d..680226f44f 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -443,6 +443,13 @@ Go to the Second Life web site for more information on partnering? Your default permissions may not work in older regions. </notification> +<notification + icon="alertmodal.tga" + name="ClickUnimplemented" + type="alertmodal"> +This feature is yet to be implemented. + </notification> + <notification icon="alertmodal.tga" name="ClickWebProfileHelpAvatar" diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml index a29ab971a4..539b656f34 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -33,7 +33,11 @@ <panel follows="left|right" auto_resize="false" width="40" height="28" min_height="28"> <chiclet_notification name="im_well" follows="left|right" auto_resize="false" left="0" bottom="4" width="40" height="25" - image_unselected="im_notifications.tga" image_selected="im_notifications.tga"/> + image_unselected="im_notifications.tga" image_selected="im_notifications.tga"> + <chiclet_notification.commit_callback + function="Notification.Show" + parameter="ClickUnimplemented" /> + </chiclet_notification> </panel> <icon image_name="spacer24.tga" left="0" width="10" height="10" bottom="0" follows="left|right" auto_resize="false" color="0 0 0 0"/> <view_border name="well_separator" bevel_style="in" bottom="0" height="30" width="1" follows="left|right" left="270" mouse_opaque="false" auto_resize="false"/> @@ -41,7 +45,11 @@ <panel follows="left|right" auto_resize="false" width="48" height="28" min_height="28"> <chiclet_notification name="sys_well" follows="left|right" auto_resize="false" left="0" bottom="5" width="48" height="25" - image_unselected="bottom_tray_sys_notifications.tga" image_selected="bottom_tray_sys_notifications.tga"/> + image_unselected="bottom_tray_sys_notifications.tga" image_selected="bottom_tray_sys_notifications.tga"> + <chiclet_notification.commit_callback + function="Notification.Show" + parameter="ClickUnimplemented" /> + </chiclet_notification> </panel> <icon image_name="spacer24.tga" left="0" width="5" height="10" bottom="0" follows="left|right" auto_resize="false" color="0 0 0 0"/> </layout_stack> |