1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Remove the 16x16 cursors, unused since d52d8de

This commit is contained in:
Paul Licameli 2020-01-16 14:42:17 -05:00
parent a95838a3e8
commit 876cd92ed3
17 changed files with 0 additions and 387 deletions

View File

@ -1,10 +1,5 @@
// Mac, Win and Linux all support 32 x 32 cursors now.
#define CURSORS_SIZE32
#ifdef CURSORS_SIZE32
// Cursors MUST be 32x32 (or they will be resized).
// You only get black, white and transparent to use.
@ -35,27 +30,4 @@
#endif
#include "Cursors32/SubViewsCursor.xpm"
#else
#include "Cursors16/DisabledCursor.xpm"
#include "Cursors16/EnvCursor.xpm"
#include "Cursors16/TimeCursor.xpm"
#include "Cursors16/IBeamCursor.xpm"
#include "Cursors16/DrawCursor.xpm"
#include "Cursors16/ZoomInCursor.xpm"
#include "Cursors16/ZoomOutCursor.xpm"
#include "Cursors16/LabelCursorLeft.xpm"
#include "Cursors16/LabelCursorRight.xpm"
#include "Cursors16/BottomFrequencyCursor.xpm"
#include "Cursors16/TopFrequencyCursor.xpm"
#include "Cursors16/BandWidthCursor.xpm"
#ifdef USE_MIDI
#include "Cursors16/StretchCursor.xpm"
#include "Cursors16/StretchLeftCursor.xpm"
#include "Cursors16/StretchRightCursor.xpm"
#endif
#include "Cursors16/SubViewsCursor.xpm"
#endif
std::unique_ptr<wxCursor> MakeCursor(int WXUNUSED(CursorId), const char * const pXpm[36], int HotX, int HotY);

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const BandWidthCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"........#.......",
".......#+#......",
"......#+++#.....",
"......#####.....",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"......#####.....",
"......#+++#.....",
".......#+#......",
"........#.......",};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const BottomFrequencyCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"......#####.....",
"......#+++#.....",
".......#+#......",
"........#.......",};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const DisabledCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
".....######.....",
"...##++++++##...",
"..#++++++++++#..",
".#++++####++++#.",
".#+++#...#++++#.",
"#+++#...#++++++#",
"#++#...#+++##++#",
"#++#..#+++#.#++#",
"#++#.#+++#..#++#",
"#++##+++#...#++#",
"#++++++#...#+++#",
".#++++#...#+++#.",
".#++++####++++#.",
"..#++++++++++#..",
"...##++++++##...",
".....######....."};

View File

@ -1,23 +0,0 @@
/* XPM */
//Image of a pencil.
static const char * const DrawCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"........+###+...",
".......+#+###+..",
"......+#+####+..",
"......+#####+...",
".....+#++###+...",
".....+#+###+....",
"....+#++###+....",
"....+#+###+.....",
"...+#++###+.....",
"...+#+###+......",
"...+#####+......",
"...+####+.......",
"...+###+........",
"...+##+.........",
"...+#+..........",
"....+..........."};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const EnvCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"......#####.....",
"......#+++#.....",
".......#+#......",
"........#.......",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"........#.......",
".......#+#......",
"......#+++#.....",
"......#####....."};

View File

@ -1,24 +0,0 @@
/* XPM */
// Classic optical illusion.
// the beam looks taller than the arrow.
static const char * const IBeamCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"...+####.###+...",
"....+++##+++....",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"......+##+......",
"....+++##+++....",
"...+####.###+..."};

View File

@ -1,23 +0,0 @@
/* XPM */
static const char * const LabelCursorLeftXpm[] = {
"16 16 4 1",
" c None",
". c #FF0000",
"+ c #000000",
"@ c #FFFFFF",
"................",
"...++...........",
"...+@+..........",
"...+@@+.........",
".+++@@+.........",
"++@@+@@+........",
"+@@@@+@@+.......",
"+@@@@+@@+.......",
"+@@@@+@@+.......",
"+@@@@+@@+.......",
"++@@+@@+........",
".+++@@+.........",
"...+@@+.........",
"...+@+..........",
"...++...........",
"................"};

View File

@ -1,23 +0,0 @@
/* XPM */
static const char * const LabelCursorRightXpm[] = {
"16 16 4 1",
" c None",
". c #FF0000",
"+ c #000000",
"@ c #FFFFFF",
"................",
"...........++...",
"..........+@+...",
".........+@@+...",
".........+@@+++.",
"........+@@+@@++",
".......+@@+@@@@+",
".......+@@+@@@@+",
".......+@@+@@@@+",
".......+@@+@@@@+",
"........+@@+@@++",
".........+@@+++.",
".........+@@+...",
"..........+@+...",
"...........++...",
"................"};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const StretchCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"................",
".......+#+......",
".......+#+......",
".......+#+......",
"...+#########+..",
"...+#+.+#+.+#+..",
"...+#+.+#+.+#+..",
"...+#+.+#+.+#+..",
".###############",
"...+#+.+#+.+#+..",
"...+#+.+#+.+#+..",
"...+#+.+#+.+#+..",
"...+#########+..",
".......+#+......",
".......+#+......",
".......+#+......"};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const StretchLeftCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"................",
".......+#.......",
".......+#.......",
".......+#.......",
".......+#####+..",
".......+#...#+..",
".......+#...#+..",
".......+#...#+..",
".......+########",
".......+#...#+..",
".......+#...#+..",
".......+#...#+..",
".......+#####+..",
".......+#.......",
".......+#.......",
".......+#......."};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const StretchRightCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"................",
"........#+......",
"........#+......",
"........#+......",
"...+#####+......",
"...+#...#+......",
"...+#...#+......",
"...+#...#+......",
".########+......",
"...+#...#+......",
"...+#...#+......",
"...+#...#+......",
"...+#####+......",
"........#+......",
"........#+......",
"........#+......"};

View File

@ -1,23 +0,0 @@
/* XPM */
//Image of a pencil.
static const char * const SubViewsCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"........+.......",
".......+#+......",
"......+###+.....",
"......+++++.....",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"......+++++.....",
"......+###+.....",
".......+#+......",
"........+.......",};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const TimeCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"................",
"................",
"................",
"................",
"....++....++....",
"...+#+....+#+...",
"..+##+....+##+..",
".+###++++++###+.",
"+##############+",
".+###++++++###+.",
"..+##+....+##+..",
"...+#+....+#+...",
"....++....++....",
"................",
"................",
"................"};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const TopFrequencyCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"........#.......",
".......#+#......",
"......#+++#.....",
"......#####.....",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",
"................",};

View File

@ -1,22 +0,0 @@
/* XPM */
static const char * const ZoomInCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"........++++....",
".......+####+...",
"......+##...#+..",
".....+#..##..#+.",
"....+##..##..##+",
"....+#.######.#+",
"....+#.######.#+",
"....+##..##..##+",
".....+#..##..#+.",
"....+####..##+..",
"...+###+####+...",
"..+###+.++++....",
".+###+..........",
"+###+...........",
"###+............",
"+#+............."};

View File

@ -1,23 +0,0 @@
/* XPM */
static const char * const ZoomOutCursorXpm[] = {
"16 16 3 1",
". c #FF0000", // mask color = RGB:255,0,0
"# c #000000",
"+ c #FFFFFF",
"........++++....",
".......+####+...",
"......+##...#+..",
".....+#......#+.",
"....+##......##+",
"....+#.######.#+",
"....+#.######.#+",
"....+##......##+",
".....+#......#+.",
"....+####..##+..",
"...+###+####+...",
"..+###+.++++....",
".+###+..........",
"+###+...........",
"###+............",
"+#+............."};