mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
* Add custom draw tool cursor * Replace most old mouse cursors * Increase consistency with toolbar icons * Replace zoom icons in FreqWindow * Increase consistency across themes * Add custom selection adjustment cursor (The Windows ones looked like they originated from the DOS era.) Co-authored-by: Panagiotis Vasilopoulos <hello@alwayslivid.com> Signed-off-by: akleja <storspov@gmail.com> Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
50 lines
1.4 KiB
C
50 lines
1.4 KiB
C
/* XPM */
|
|
static const char * const DrawCursorXpm[] = {
|
|
"32 32 14 1",
|
|
" c #FF0000",
|
|
". c #000000",
|
|
"+ c #ADADAD",
|
|
"@ c #414141",
|
|
"# c #A3A3A3",
|
|
"$ c #FFFFFF",
|
|
"% c #F4F4F4",
|
|
"& c #515151",
|
|
"* c #D4D4D4",
|
|
"= c #CECECE",
|
|
"- c #6C6C6C",
|
|
"; c #9D9D9D",
|
|
"> c #C4C4C4",
|
|
", c #939393",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" .. ",
|
|
" .+@. ",
|
|
" .#$%@. ",
|
|
" .&.*$+. ",
|
|
" .=$-.;. ",
|
|
" .=$$$&. ",
|
|
" .=$$$=. ",
|
|
" .=$$$=. ",
|
|
" .=$$$=. ",
|
|
" .=$$$=. ",
|
|
" .>$$$=. ",
|
|
" .$$$=. ",
|
|
" .,$$>. ",
|
|
" .=,.. ",
|
|
" ... ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" "};
|