diff --git a/src/res/instruments/bassuke.png b/src/res/instruments/bassuke.png new file mode 100644 index 00000000..537ff9c0 Binary files /dev/null and b/src/res/instruments/bassuke.png differ diff --git a/src/res/instruments/bassuke.svg b/src/res/instruments/bassuke.svg new file mode 100644 index 00000000..bd4c9d3c --- /dev/null +++ b/src/res/instruments/bassuke.svg @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/res/instruments/ukulele.png b/src/res/instruments/ukulele.png new file mode 100644 index 00000000..3e8b2d9f Binary files /dev/null and b/src/res/instruments/ukulele.png differ diff --git a/src/res/instruments/ukulele.svg b/src/res/instruments/ukulele.svg new file mode 100644 index 00000000..7ed58894 --- /dev/null +++ b/src/res/instruments/ukulele.svg @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/resources.qrc b/src/resources.qrc index 82fbc20f..32a52995 100755 --- a/src/resources.qrc +++ b/src/resources.qrc @@ -80,6 +80,8 @@ res/instruments/vocalsoprano.png res/instruments/banjo.png res/instruments/mandolin.png + res/instruments/ukulele.png + res/instruments/bassuke.png res/fronticon.png diff --git a/src/util.cpp b/src/util.cpp index e2eda381..4ede90d0 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -1020,6 +1020,8 @@ CVector& CInstPictures::GetTable() vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Vocal Soprano" ), ":/png/instr/res/instruments/vocalsoprano.png", IC_OTHER_INSTRUMENT ) ); vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Banjo" ), ":/png/instr/res/instruments/banjo.png", IC_PLUCKING_INSTRUMENT ) ); vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Mandolin" ), ":/png/instr/res/instruments/mandolin.png", IC_PLUCKING_INSTRUMENT ) ); + vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Ukulele" ), ":/png/instr/res/instruments/ukulele.png", IC_PLUCKING_INSTRUMENT ) ); + vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Bass Ukulele" ), ":/png/instr/res/instruments/bassuke.png", IC_PLUCKING_INSTRUMENT ) ); // now the table is initialized TableIsInitialized = true;