]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/xfont_loader.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / xfont_loader.h
index 66cd1c0503d7bae8104019361a3609b643f3e484..2e8beb67dc81a0817294b373536d15137cc1c895 100644 (file)
@@ -1,24 +1,20 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file xfont_loader.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Asger Alstrup
  *
- *           Copyright 1997 Asger Alstrup
- *          and the LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef FONTLOADER_H_
 #define FONTLOADER_H_
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include <X11/Xlib.h>
 #include "lyxfont.h"
-#include "LString.h"
 
 class FontInfo;
 
@@ -27,13 +23,13 @@ intelligent guesses about matching font size, and it tries different tags
 itself in order to match the font loading demands.  Later, I plan to extend
 this with support for T1Lib, probably via a new class building on this.
 (Asger) */
-class FontLoader {
+class xfont_loader {
 public:
        ///
-       FontLoader();
+       xfont_loader();
 
        ///
-       ~FontLoader();
+       ~xfont_loader();
 
        /// Update fonts after zoom, dpi, font names, or norm change
        void update();
@@ -77,6 +73,6 @@ private:
 };
 
 ///
-extern FontLoader fontloader;
+extern xfont_loader fontloader;
 
 #endif