Converted title to image.

This will provide a consistent look to the "gLabels Label Designer"
title across platforms where different fonts are available.  Will
need to look into how to accomodate translations of this title
at a later date.
This commit is contained in:
Jim Evins
2016-05-25 23:23:37 -04:00
parent 26e3aa37e3
commit 636f3deb91
6 changed files with 97 additions and 10 deletions
+2 -3
View File
@@ -33,12 +33,11 @@ AboutDialog::AboutDialog( QWidget *parent )
{
setupUi( this );
QString subtitle = tr("Label Designer");
QString titleImage = ":images/glabels-label-designer.png";
QString version = "x.x.x";
QString description = tr("A program to create labels and business cards.");
QString markup = "<p><span style='font-size:24pt; font-weight:600;'>gLabels </span><span style='font-size:16pt; color:#333333;'>"
+ subtitle + "</span></p>"
QString markup = QString("<p><img src='%1'></p>").arg( titleImage )
+ "<p>" + version + "</p>"
+ "<p>" + description + "</p>"
+ "<p>Copyright &copy; 2016 Jim Evins <evins@snaught.com></p>";