Hotspot in middle, halve width of I-bar, clean up edges, shade.

This commit is contained in:
Michael Jumper 2013-03-29 03:20:35 -07:00
parent 8140a5cc3d
commit bd45a8e5f6

View File

@ -42,36 +42,37 @@
/* Macros for prettying up the embedded image. */ /* Macros for prettying up the embedded image. */
#define X 0x00,0x00,0x00,0xFF #define X 0x00,0x00,0x00,0xFF
#define U 0x80,0x80,0x80,0xFF
#define O 0xFF,0xFF,0xFF,0xFF #define O 0xFF,0xFF,0xFF,0xFF
#define _ 0x00,0x00,0x00,0x00 #define _ 0x00,0x00,0x00,0x00
/* Dimensions */ /* Dimensions */
const int guac_ssh_ibar_width = 11; const int guac_ssh_ibar_width = 7;
const int guac_ssh_ibar_height = 16; const int guac_ssh_ibar_height = 16;
/* Format */ /* Format */
const cairo_format_t guac_ssh_ibar_format = CAIRO_FORMAT_ARGB32; const cairo_format_t guac_ssh_ibar_format = CAIRO_FORMAT_ARGB32;
const int guac_ssh_ibar_stride = 44; const int guac_ssh_ibar_stride = 28;
/* Embedded pointer graphic */ /* Embedded pointer graphic */
unsigned char guac_ssh_ibar[] = { unsigned char guac_ssh_ibar[] = {
X,X,X,X,X,_,X,X,X,X,X, X,X,X,X,X,X,X,
X,O,O,O,O,X,O,O,O,O,X, X,O,O,U,O,O,X,
X,X,X,X,O,O,O,X,X,X,X, X,X,X,O,X,X,X,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
_,_,_,_,X,O,X,_,_,_,_, _,_,X,O,X,_,_,
X,X,X,X,O,O,O,X,X,X,X, X,X,X,O,X,X,X,
X,O,O,O,O,X,O,O,O,O,X, X,O,O,U,O,O,X,
X,X,X,X,X,_,X,X,X,X,X X,X,X,X,X,X,X
}; };