[Sugar-devel] [PATCH] Add cpu and memory resource indicator to frame

2010-07-28 Thread anishmangal2002
if required. Similarly, the palette menu entries are updated after every 5 seconds as well. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- extensions/deviceicon/Makefile.am |3 +- extensions/deviceicon/resources.py | 206 2 files changed, 208

[Sugar-devel] [PATCH] Add icons for memory and cpu resource indicator

2010-07-28 Thread anishmangal2002
This patch adds the following for svg icons for the memory and cpu usage indicator frame icon. computer-happy computer-normal computer-sad computer-error Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- icons/scalable/device/Makefile.am |4 icons/scalable/device

[Sugar-devel] [PATCH] Browse: Add support for creating multiple tabs

2010-07-24 Thread anishmangal2002
cause for this isn't exactly known. Thus, this patch disables the multiple tabs feature if we are using cairo versions = 1.08.10 More information can be found here: [1] http://lists.sugarlabs.org/archive/sugar-devel/2010-July/025187.html Signed-off-by: anishmangal2002 anishmangal2...@gmail.com

[Sugar-devel] [PATCH] Add cpu and memory resource indicator to frame

2010-07-02 Thread anishmangal2002
intervals) when the palette menu is visible thus possibly saving cpu cycles. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- extensions/deviceicon/Makefile.am |3 +- extensions/deviceicon/resources.py | 159 2 files changed, 161 insertions

[Sugar-devel] [PATCH] Journal:show error message on write failure: #1842

2010-07-02 Thread anishmangal2002
volumestoolbar.py now catches the IOError and ValueError exceptions and emits 'volume-error'signal. This signal is caught in journalactivity.py which displays the error as an ErrorAlert message. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- src/jarabe/journal/journalactivity.py

[Sugar-devel] [PATCH] Add ErrorAlert inherited from Alert

2010-07-02 Thread anishmangal2002
Adds the ErrorAlert class which is an alert inherited from the base Alert class. This is very similar to the ConfirmationAlert class with the difference being that it only displays an 'Ok' button in the Alert popup. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- src/sugar/graphics

[Sugar-devel] [PATCH] Browse: Add support for creating multiple tabs

2010-06-29 Thread anishmangal2002
This patch adds support to create multiple tabbed windows in Browse. A tab may be added by either clicking the add tab ('+') icon in the activity toolbar or by pressing 'ctrl+t'. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- icons/add-tab.svg | 86

[Sugar-devel] [PATCH] Add cpu and memory resource indicator to frame

2010-06-28 Thread anishmangal2002
intervals) when the palette menu is visible thus possibly saving cpu cycles. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- extensions/deviceicon/resources.py | 142 1 files changed, 142 insertions(+), 0 deletions(-) create mode 100644

[Sugar-devel] [PATCH] Dynamically set number of control panel columns

2010-06-20 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com This patch sets the number of icon-columns in the control panel based on the screen resolution. This patch also sets the table row spacing to GRID_CELL_SIZE. How the number of columns are calculated: Let 'W' be the screen width, 's

[Sugar-devel] [PATCH] Journal: Fix for sl#1842

2010-06-15 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com volumestoolbar.py now catches the IOError and ValueError exceptions and emits 'volume-error' which is caught in journalactivity.py which inturn displayes the error as a NotifyRedAlert message. Signed-off-by: anishmangal2002 anishmangal2

[Sugar-devel] [PATCH] Journal: Fix for sl#1842

2010-06-13 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com volumestoolbar.py now catches the IOError exception and emits 'data-ioerror' which is caught in journalactivity.py which displayes the error as a NotifyRedAlert message. Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- src/jarabe

[Sugar-devel] [PATCH] Add NotifyRedAlert inherited from NotifyAlert

2010-06-13 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com Adds the NotifyRedAlert class which is an alert inherited from NotifyAlert. When the alert message is displayed, it glows the alert bar Red before slowly fading out to black, thus resulting in a more visible notification. Signed-off

[Sugar-devel] [PATCH] Enhancements to Pippy UI

2010-06-10 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com [1] Added a standard 'Edit' toolbar having undo, redo, copy and paste buttons which also work when the activity is shared. [2] When the activity is shared, the treeview in the activity host's window does not disappear so he can load

[Sugar-devel] [PATCH] Fixes to the record UI

2010-06-08 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com How the existing UI works: The record UI consists of many windows/widgets. In a particular mode or view, it displays and resizes the widgets appropriate for that view and tries to hide the other windows by moving them off-screen. Now, on sugar-0.88

[Sugar-devel] [PATCH] Record - Fix for ticket #2011

2010-06-08 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com Ctrl+w now exits the activity Signed-off-by: anishmangal2002 anishmangal2...@gmail.com --- ui.py |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ui.py b/ui.py index e723f66..c9ab664 100644 --- a/ui.py +++ b/ui.py

[Sugar-devel] [record] Fixes to the UI

2010-06-06 Thread anishmangal2002
From: anishmangal2002 anishmangal2...@gmail.com This patch fixes the Record ui which is broken since versions 0.86 and later. --- model.py |7 ++ record.py |3 +- ui.py | 206 + 3 files changed, 174 insertions(+), 42