2019-10-08 Fred Gleason <fredg@paravelsystems.com>

* Renamed the 'RDFontSet' class to 'RDFontEngine'.
	* Modified the font calculation algorithm in
	'RDFontEngine::MakeFonts()' to use fixed defaults.
This commit is contained in:
Fred Gleason
2019-10-08 09:54:36 -04:00
parent 8be7931c23
commit 13fe76b469
17 changed files with 81 additions and 65 deletions

View File

@@ -1,6 +1,6 @@
// rdpushbutton.cpp
//
// An flashing button widget.
// A flashing button widget.
//
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
//
@@ -31,21 +31,21 @@
RDPushButton::RDPushButton(QWidget *parent=0)
: QPushButton(parent), RDFontSet(font())
: QPushButton(parent), RDFontEngine(font())
{
Init();
}
RDPushButton::RDPushButton(const QString &text,QWidget *parent)
: QPushButton(text,parent), RDFontSet(font())
: QPushButton(text,parent), RDFontEngine(font())
{
Init();
}
RDPushButton::RDPushButton(const QIcon &icon,const QString &text,
QWidget *parent)
: QPushButton(text,parent), RDFontSet(font())
: QPushButton(text,parent), RDFontEngine(font())
{
Init();
}