diff options
Diffstat (limited to 'blinken/src/fontchecker.h')
-rw-r--r-- | blinken/src/fontchecker.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/blinken/src/fontchecker.h b/blinken/src/fontchecker.h new file mode 100644 index 00000000..b8b60b6f --- /dev/null +++ b/blinken/src/fontchecker.h @@ -0,0 +1,21 @@ +/*************************************************************************** + * Copyright (C) 2005 by Albert Astals Cid <tsdgeos@terra.es> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ + +#ifndef FONTCHECKER_H +#define FONTCHECKER_H + +class QFont; + +class fontChecker +{ + public: + static bool checkInstalled(const QFont &font, const QString &fontPath); +}; + +#endif |