-
-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first version of programmable hotkeys (work in progress)
- Loading branch information
CHARRAS
authored and
CHARRAS
committed
Aug 21, 2007
1 parent
88dec9c
commit c116a9b
Showing
31 changed files
with
4,143 additions
and
3,618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
/* XPM */ | ||
#ifndef XPMMAIN | ||
extern char * reload_xpm[]; | ||
|
||
#else | ||
char * reload_xpm[] = { | ||
"16 16 110 2", | ||
" c None", | ||
". c #000000", | ||
"+ c #766B3F", | ||
"@ c #F7F8FA", | ||
"# c #CBDDEB", | ||
"$ c #5D5332", | ||
"% c #EFE5BA", | ||
"& c #7A7A7A", | ||
"* c #E9E9E9", | ||
"= c #EAEAEA", | ||
"- c #F1F1F1", | ||
"; c #BFD5E8", | ||
"> c #DCE5E8", | ||
", c #5A5230", | ||
"' c #EEE5BB", | ||
") c #EED680", | ||
"! c #231F13", | ||
"~ c #2A2516", | ||
"{ c #12100A", | ||
"] c #707070", | ||
"^ c #ABABAB", | ||
"/ c #C0C0C0", | ||
"( c #E0E0E0", | ||
"_ c #8DA9BE", | ||
": c #54697C", | ||
"< c #574F2E", | ||
"[ c #EFE4B6", | ||
"} c #CCB76D", | ||
"| c #96864F", | ||
"1 c #636363", | ||
"2 c #FEFEFE", | ||
"3 c #F9F9F9", | ||
"4 c #84A0B5", | ||
"5 c #4F6475", | ||
"6 c #4B4428", | ||
"7 c #EEE2B2", | ||
"8 c #AF9D5D", | ||
"9 c #919191", | ||
"0 c #819AAE", | ||
"a c #496072", | ||
"b c #494227", | ||
"c c #8F6406", | ||
"d c #D1940C", | ||
"e c #D7A328", | ||
"f c #DEB446", | ||
"g c #A49357", | ||
"h c #CFCFCF", | ||
"i c #302C19", | ||
"j c #765204", | ||
"k c #9E7009", | ||
"l c #D9AA35", | ||
"m c #909090", | ||
"n c #666E75", | ||
"o c #272315", | ||
"p c #986B07", | ||
"q c #737373", | ||
"r c #5C4003", | ||
"s c #B07D0A", | ||
"t c #767676", | ||
"u c #CFE0ED", | ||
"v c #6C7E87", | ||
"w c #1E1A0F", | ||
"x c #896611", | ||
"y c #676D73", | ||
"z c #54595E", | ||
"A c #986B08", | ||
"B c #57626A", | ||
"C c #6B7C85", | ||
"D c #221E11", | ||
"E c #0B0B06", | ||
"F c #576876", | ||
"G c #AE9141", | ||
"H c #847645", | ||
"I c #8CA8BD", | ||
"J c #8E96A0", | ||
"K c #616161", | ||
"L c #C5C5C5", | ||
"M c #CECECE", | ||
"N c #E0C978", | ||
"O c #131D24", | ||
"P c #A0A8AF", | ||
"Q c #183042", | ||
"R c #C9B46B", | ||
"S c #817444", | ||
"T c #0E222D", | ||
"U c #586D80", | ||
"V c #97A5B0", | ||
"W c #86A4B9", | ||
"X c #CDCDCD", | ||
"Y c #AE9C5C", | ||
"Z c #626262", | ||
"` c #112835", | ||
" . c #5A7082", | ||
".. c #9DA9B0", | ||
"+. c #6B7882", | ||
"@. c #839EB2", | ||
"#. c #E6E6E6", | ||
"$. c #213648", | ||
"%. c #666666", | ||
"&. c #8D8D8D", | ||
"*. c #112C3A", | ||
"=. c #9FA9B0", | ||
"-. c #59636D", | ||
";. c #A1A1A1", | ||
">. c #868686", | ||
",. c #6E6E6E", | ||
"'. c #2D3949", | ||
"). c #3E4F5C", | ||
"!. c #80878F", | ||
"~. c #1A3140", | ||
" . . . + . . . . . . . . . . ", | ||
". @ # $ % . & * * * = * - ; ; . ", | ||
". > , ' ) . ! ~ { ] ^ / ( _ : . ", | ||
". < [ ) ) ) ) } | . 1 2 3 4 5 . ", | ||
"6 7 ) ) ) ) ) ) ) 8 . 9 - 0 a . ", | ||
"b c d d d d d e f ) g . h 0 a . ", | ||
". i c d d . . j k l } . m 0 a . ", | ||
". n o p d . q . r s ) . t 0 a . ", | ||
". u v w x . y z . A ) . B 0 a . ", | ||
". u _ C D E F 0 . G H . 0 0 a . ", | ||
". u _ I J K L M . N . O P 0 a . ", | ||
". u _ 4 L L Q . R S . T U V a . ", | ||
". u W 0 L X . Y | . Z ` ...a . ", | ||
". +.@.0 X #.$.. . %.&.*. .=.a . ", | ||
" . -.5 ;./ m m >.,.& '.).!.~.. ", | ||
" . . . . . . . . . . . . . "}; | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.