mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-03 23:53:59 +01:00 
			
		
		
		
	* Renamed the 'RDFontSet' class to 'RDFontEngine'. * Modified the font calculation algorithm in 'RDFontEngine::MakeFonts()' to use fixed defaults.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdfontengine.h
 | 
						|
//
 | 
						|
// Engine for calculating fonts in Rivnedell UIs
 | 
						|
//
 | 
						|
//   (C) Copyright 2019 Fred Gleason <fredg@paravelsystems.com>
 | 
						|
//
 | 
						|
//   This program is free software; you can redistribute it and/or modify
 | 
						|
//   it under the terms of the GNU General Public License version 2 as
 | 
						|
//   published by the Free Software Foundation.
 | 
						|
//
 | 
						|
//   This program is distributed in the hope that it will be useful,
 | 
						|
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
//   GNU General Public License for more details.
 | 
						|
//
 | 
						|
//   You should have received a copy of the GNU General Public
 | 
						|
//   License along with this program; if not, write to the Free Software
 | 
						|
//   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
//
 | 
						|
 | 
						|
#ifndef RDFONTENGINE_H
 | 
						|
#define RDFONTENGINE_H
 | 
						|
 | 
						|
#include <qfont.h>
 | 
						|
 | 
						|
#include <rdapplication.h>
 | 
						|
 | 
						|
class RDFontEngine
 | 
						|
{
 | 
						|
 public:
 | 
						|
  RDFontEngine(const QFont &default_font,RDConfig *c=NULL);
 | 
						|
  RDFontEngine(RDConfig *c=NULL);
 | 
						|
  QFont buttonFont() const;
 | 
						|
  QFont hugeButtonFont() const;
 | 
						|
  QFont bigButtonFont() const;
 | 
						|
  QFont subButtonFont() const;
 | 
						|
  QFont sectionLabelFont() const;
 | 
						|
  QFont labelFont() const;
 | 
						|
  QFont subLabelFont() const;
 | 
						|
  QFont progressFont() const;
 | 
						|
  QFont bannerFont() const;
 | 
						|
  QFont timerFont() const;
 | 
						|
  QFont smallTimerFont() const;
 | 
						|
  QFont defaultFont() const;
 | 
						|
 | 
						|
 private:
 | 
						|
  void MakeFonts(const QFont &default_font);
 | 
						|
  QFont font_button_font;
 | 
						|
  QFont font_huge_button_font;
 | 
						|
  QFont font_big_button_font;
 | 
						|
  QFont font_sub_button_font;
 | 
						|
  QFont font_section_label_font;
 | 
						|
  QFont font_label_font;
 | 
						|
  QFont font_sub_label_font;
 | 
						|
  QFont font_progress_font;
 | 
						|
  QFont font_banner_font;
 | 
						|
  QFont font_timer_font;
 | 
						|
  QFont font_small_timer_font;
 | 
						|
  QFont font_default_font;
 | 
						|
  RDConfig *font_config;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDFONTENGINE_H
 |