Difference between revisions of "Features/Simple Messages Notification"

From Sugar Labs
Jump to navigation Jump to search
(link to meeting log, alternate icon)
 
Line 1: Line 1:
 
<noinclude>
 
<noinclude>
[[Category:Feature|Simple Messages Notification]]
+
[[Category:FeatureObsoleted|Simple Messages Notification]]
 
</noinclude>
 
</noinclude>
  

Latest revision as of 11:20, 18 July 2014


Summary

The current icons-only notification system is generally ineffective to fully communicate different kind of system events. This feature provides a set of extensions to the current system to display simple text messages.

This feature will be use for special events and communications, it is not intended to replace the current logging system and Log activity viewer.

Owner

Current status

  • Targeted release: 0.98
  • Percentage of completion:
    • Code: 80% (Tested and included in 0.94 based dextrose builds, needs porting to gtk3)
    • Design: 40% (Was discussed with Gary Martin, but the discussion ended without a proper conclusion. Discussion needs to happen again)

Detailed Description

  • This feature requires a some re-factoring of jarabe.frame.notification(NotificationIcon, NotificationWindow) widgets.
  • Also, requires minimal extensions to jarabe.frame.frame(Frame) to extract the notification text message details.
  • Plus, since the corner notifications icons can't be seen for long periods of time (to avoid visual spam), a new tray bar can be added to the left side of the bottom frame window. This tray will contain current session's notifications.

Benefit to Sugar

Messages notification capabilities, useful in many different scenarios.

Scope

sugar/src/jarabe/frame/frame.py

sugar/src/jarabe/frame/notification.py

sugar/src/jarabe/frame/notificationstray.py (new file)

sugar/src/jarabe/frame/Makefile.am

UI Design

New notifications are flashed briefly on the top-left corner of frame. Even if the frame is not visible, the notification icon will flash briefly. (Similar to a clipboard-copy icon). After a small period of time, the icon would move to the top bar of the frame alongside other activity icons, and will keep on flashing until clicked upon. After its clicked upon, a palette will popup showing the text of the notification. If there are other (older) notifications present, those will be shown as well. A button is provided to clear all notifications.

Notification flashing on the top left corner of frame
Notification present in the top bar of frame
Notification palette visible upon clicking/hovering
Notification items can be deleted
View after notification icons have been deleted


How To Test

Running this python script should work (provided by Gonzalo Odiard):

import dbus
BUS_NAME = 'org.freedesktop.Notifications'
OBJ_PATH = '/org/freedesktop/Notifications'
IFACE_NAME = 'org.freedesktop.Notifications'
bus = dbus.SessionBus()
notify_obj = bus.get_object(BUS_NAME,OBJ_PATH)
notifications = dbus.Interface(notify_obj,IFACE_NAME)
notifications.Notify("HelloWorld",0,'',"Summary","Body",[],{},-1)

Also, one may download Dextrose-2 or Dextrose-3 builds, fire up the terminal activity, and send this command to see a notification popup:

$ dbus-send --system /org/sugarlabs/system org.sugarlabs.system.Reboot

User Experience

1. User notice the notification pulsing icon.

2. User click on the icon to read its message.

3. After a few seconds corner notifications icon will disappear.

4. Notification icons can still be seen at the notifications tray.

Dependencies

None

Contingency Plan

N.A.

Documentation

None

Release Notes

N.A.

Comments and Discussion

Please follow the comments on Dextrose and sugar-devel mailing list.