mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
20 lines
244 B
C++
20 lines
244 B
C++
#pragma once
|
|
|
|
#include "RGBAColor.h"
|
|
#include "SharedTypes.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class FontFamily;
|
|
|
|
struct QDState
|
|
{
|
|
QDState();
|
|
|
|
FontFamily *m_fontFamily;
|
|
int m_fontVariationFlags;
|
|
int m_fontSize;
|
|
Rect m_clipRect;
|
|
};
|
|
}
|