added words and message

This commit is contained in:
fourtf
2017-01-05 16:07:20 +01:00
parent 7a7b714e78
commit b7de109335
31 changed files with 679 additions and 31 deletions
+27
View File
@@ -0,0 +1,27 @@
#include "fonts.h"
#define DEFAULT_FONT "Arial"
QFont* Fonts::medium = new QFont(DEFAULT_FONT);
QFont* Fonts::mediumBold = new QFont(DEFAULT_FONT);
QFont* Fonts::mediumItalic = new QFont(DEFAULT_FONT);
QFont* Fonts::small = new QFont(DEFAULT_FONT);
QFont* Fonts::large = new QFont(DEFAULT_FONT);
QFont* Fonts::veryLarge = new QFont(DEFAULT_FONT);
Fonts::Fonts()
{
}
QFont& Fonts::getFont(Type type)
{
if (type == Medium ) return *medium ;
if (type == MediumBold ) return *mediumBold ;
if (type == MediumItalic) return *mediumItalic;
if (type == Small ) return *small ;
if (type == Large ) return *large ;
if (type == VeryLarge ) return *veryLarge ;
return *medium;
}