[Wnd-commit] wnd/wnd/res/icons lnk.ico,NONE,1.1 icons1.py,1.2,1.3
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-07-02 09:19:10
|
Update of /cvsroot/wnd/wnd/wnd/res/icons In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6056 Modified Files: icons1.py Added Files: lnk.ico Log Message: bit of this and a bit of that Index: icons1.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/res/icons/icons1.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** icons1.py 15 May 2005 09:43:51 -0000 1.2 --- icons1.py 2 Jul 2005 09:19:02 -0000 1.3 *************** *** 37,38 **** --- 37,47 ---- return IconFromBytes(MASK, COLOR, BITS, W, H) + + def ico_link_overlay(): + """link overlay icon""" + + BITS, W, H= 1, 32, 32 + MASK= '\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff\x00\x1f\xff\xff' + COLOR= '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xc0\x00\x00p\xc0\x00\x00x\xc0\x00\x00p\xc0\x00\x00b\xc0\x00\x00g\xc0\x00\x00o\xc0\x00\x00w\xc0\x00\x00\x7f\xc0\x00\x00\x00\x00\x00\x00' + return IconFromBytes(MASK, COLOR, BITS, W, H) + --- NEW FILE: lnk.ico --- (This appears to be a binary file; contents omitted.) |