Ref T30, icon for font

This commit is contained in:
Klaus Basan
2017-07-05 02:32:13 +02:00
committed by Mathew Sutcliffe
parent 0c7ead7977
commit 9c52334017
3 changed files with 12 additions and 1 deletions

View File

@@ -136,7 +136,8 @@ namespace BlackMisc
CIcon(CIcons::StandardIconError16, "error"),
CIcon(CIcons::StandardIconFilter16, "filter"),
CIcon(CIcons::StandardIconFloatAll16, "float all"),
CIcon(CIcons::StandardIconFloatOne16, "floast one"),
CIcon(CIcons::StandardIconFloatOne16, "float one"),
CIcon(CIcons::StandardIconFont16, "font"),
CIcon(CIcons::StandardIconGlobe16, "globe"),
CIcon(CIcons::StandardIconHeadingOne16, "heading"),
CIcon(CIcons::StandardIconInfo16, "info"),

View File

@@ -420,6 +420,11 @@ namespace BlackMisc
return tableSheet16();
}
const QPixmap &CIcons::font16()
{
return empty16(); //! \fixme icon needed
}
const QPixmap &CIcons::database16()
{
static const QPixmap pm(":/pastel/icons/pastel/16/database.png");
@@ -1067,6 +1072,7 @@ namespace BlackMisc
case StandardIconError16: return error16();
case StandardIconFloatAll16: return floatAll16();
case StandardIconFloatOne16: return floatOne16();
case StandardIconFont16: return font16();
case StandardIconGlobe16: return globe16();
case StandardIconHeadingOne16: return headingOne16();
case StandardIconInfo16: return info16();

View File

@@ -131,6 +131,7 @@ namespace BlackMisc
StandardIconFilter16,
StandardIconFloatAll16,
StandardIconFloatOne16,
StandardIconFont16,
StandardIconGlobe16,
StandardIconHeadingOne16,
StandardIconInfo16,
@@ -387,6 +388,9 @@ namespace BlackMisc
//! Filter
static const QPixmap &filter16();
//! Font
static const QPixmap &font16();
//! Arrow
static const QPixmap &arrowMediumNorth16();