summaryrefslogtreecommitdiffstats
path: root/khangman/khangman/fontchecker.h
diff options
context:
space:
mode:
Diffstat (limited to 'khangman/khangman/fontchecker.h')
-rw-r--r--khangman/khangman/fontchecker.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/khangman/khangman/fontchecker.h b/khangman/khangman/fontchecker.h
new file mode 100644
index 00000000..b8b60b6f
--- /dev/null
+++ b/khangman/khangman/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