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

* Refactored dialogs in the convenience library to use the
	'RDDialog' and 'RDWidget' base classes.
This commit is contained in:
Fred Gleason
2019-10-01 15:10:29 -04:00
parent b910af1bda
commit 8ca15c773d
75 changed files with 734 additions and 1052 deletions

View File

@@ -68,6 +68,12 @@ QFont RDWidget::subLabelFont() const
}
QFont RDWidget::progressFont() const
{
return widget_progress_font;
}
QFont RDWidget::dataFont() const
{
return widget_data_font;
@@ -109,6 +115,9 @@ void RDWidget::MakeFonts()
widget_sub_label_font=QFont(family,label_size,QFont::Normal);
widget_sub_label_font.setPixelSize(label_size);
widget_progress_font=QFont(family,label_size+4,QFont::Bold);
widget_progress_font.setPixelSize(label_size+4);
widget_data_font=QFont(family,data_size,QFont::Normal);
widget_data_font.setPixelSize(data_size);
}