1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 00:53:46 +02:00

Bug2244: need a distinct cursor for adjustment of split views...

... Adapted from the bandwidth adjustment cursor for spectral selection, with
reversal of white and black, so the new ones are white around black
This commit is contained in:
Paul Licameli
2019-12-30 13:07:32 -05:00
parent 28e19e3e03
commit 0c44d0f7d3
5 changed files with 90 additions and 3 deletions

View File

@@ -32,6 +32,7 @@
#include "Cursors32/StretchLeftCursor.xpm"
#include "Cursors32/StretchRightCursor.xpm"
#endif
#include "Cursors32/SubViewsCursor.xpm"
#else
@@ -52,6 +53,7 @@
#include "Cursors16/StretchLeftCursor.xpm"
#include "Cursors16/StretchRightCursor.xpm"
#endif
#include "Cursors16/SubViewsCursor.xpm"
#endif

View File

@@ -0,0 +1,23 @@
/* 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

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