Sugar Standard Icons: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
(Links updated)
Line 4: Line 4:
<div style="float:right">[[Image:Sugar-00.png]]</div>
<div style="float:right">[[Image:Sugar-00.png]]</div>


They are available at [http://dev.laptop.org/git?p=artwork;a=tree;f=cursor/sugar;h=50b23a2a6f6c73089232fd7e9a2e132a67977463;hb=HEAD dev.laptop.org/artwork]
They are available at [http://dev.laptop.org/git/artwork/tree/cursor/sugar dev.laptop.org/artwork]


=== usage with pygame ===
=== usage with pygame ===
# Download the Sugar-Icons from [http://dev.laptop.org/git?p=artwork;a=blob;f=cursor/sugar/sugar-00.png;h=93552bff2f6960f273a9946dbb8498e51787a240;hb=HEAD here]
# Download the Sugar-Icons from [http://dev.laptop.org/git/artwork/plain/cursor/sugar/sugar-00.png here]
# Extract the icon you want to use (36x36 px)
# Extract the icon you want to use (36x36 px)
# Enlarge the canvas to be 40x40px (or any multiple of 8)
# Enlarge the canvas to be 40x40px (or any multiple of 8)
Line 30: Line 30:


=== Pre-converted Examples ===
=== Pre-converted Examples ===
* [http://dev.laptop.org/git?p=projects/productive;a=blob;f=Productive.activity/data/standardcursor.xbm;h=e01881a829d9ff7265d2e0bc4515c6c2f6d1e88c;hb=HEAD Arrow Cursor]
* [http://dev.laptop.org/git/projects/productive/plain/Productive.activity/data/standardcursor.xbm Arrow Cursor]
* [http://dev.laptop.org/git?p=projects/productive;a=blob;f=Productive.activity/data/standardcursor_mask.xbm;h=a06d085e5bd11017afd89265270a44b10721496c;hb=HEAD Arrow Cursor Mask]
* [http://dev.laptop.org/git/projects/productive/plain/Productive.activity/data/standardcursor_mask.xbm Arrow Cursor Mask]
* [http://dev.laptop.org/git?p=projects/productive;a=blob;f=Productive.activity/data/handcursor.xbm;h=5bb61edb9f9ce50a54580dddae8ea4cb30c01f00;hb=HEAD Hand Cursor]
* [http://dev.laptop.org/git/projects/productive/plain/Productive.activity/data/handcursor.xbm Hand Cursor]
* [http://dev.laptop.org/git?p=projects/productive;a=blob;f=Productive.activity/data/handcursor_mask.xbm;h=092f3b03d1bf44bc6d2bdb41d9bb280a4c3ebf3e;hb=HEAD Hand Cursor Mask]
* [http://dev.laptop.org/git/projects/productive/plain/Productive.activity/data/handcursor_mask.xbm Hand Cursor Mask]

Revision as of 01:54, 18 September 2009

This page is a quick tutorial on how to use the standard icons in your activities.

Standard Sugar Cursors

Sugar-00.png

They are available at dev.laptop.org/artwork

usage with pygame

  1. Download the Sugar-Icons from here
  2. Extract the icon you want to use (36x36 px)
  3. Enlarge the canvas to be 40x40px (or any multiple of 8)
  4. Save it as an .xbm image (note that if you are using Gimp, choose "Export" and do not choose "X10 Format Bitmap" for the resulting file)
  5. Create a mask. This is done with the tool xbm-mask
    ("xbm-mask my_cursor_file.xbm" creates a file called "my_cursor_file_mask.xbm")




  1. Now, in pygame you can use this code:
a, b, c, d = pygame.cursors.load_xbm("my_cursor_file.xbm", "my_cursor_file_mask.xbm")
pygame.mouse.set_cursor(a, b, c, d)
  • To get the white border around the icons, you need to make another mask:
    1. Draw a black line around the white border of the icons
    2. Save it as .xbm (eg. black pointer > white border > black border > transparency)
    3. Create a (and overwrite the old) mask-file again
    4. Remove the black border around the white one
    5. Save and enjoy!

Pre-converted Examples