summaryrefslogtreecommitdiff
path: root/src/drivers/Wayland/Fl_Font.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-03-06 19:47:06 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-03-06 19:47:06 +0100
commitf8db18597a545c245b885ad18dbfb8862161966a (patch)
treee093eea6a0fcb62f9a110e85b80b40ba64a17930 /src/drivers/Wayland/Fl_Font.H
parent272bc2560cad49bc5d504e2cede7c55d4518791a (diff)
Complete class Fl_Cairo_Graphics_Driver using Fl_Wayland_Graphics_Driver
Diffstat (limited to 'src/drivers/Wayland/Fl_Font.H')
-rw-r--r--src/drivers/Wayland/Fl_Font.H33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/drivers/Wayland/Fl_Font.H b/src/drivers/Wayland/Fl_Font.H
deleted file mode 100644
index eca2f32ca..000000000
--- a/src/drivers/Wayland/Fl_Font.H
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Font definitions for the Fast Light Tool Kit (FLTK).
-//
-// Copyright 2021 by Bill Spitzak and others.
-//
-// This library is free software. Distribution and use rights are outlined in
-// the file "COPYING" which should have been included with this file. If this
-// file is missing or damaged, see the license at:
-//
-// https://www.fltk.org/COPYING.php
-//
-// Please see the following page on how to report bugs and issues:
-//
-// https://www.fltk.org/bugs.php
-//
-
-#ifndef FL_FONT_
-#define FL_FONT_
-
-#include <config.h>
-#include "Fl_Wayland_Graphics_Driver.H"
-
-class Fl_Wayland_Font_Descriptor : public Fl_Font_Descriptor {
-public:
- Fl_Wayland_Font_Descriptor(const char* fontname, Fl_Fontsize size);
- FL_EXPORT ~Fl_Wayland_Font_Descriptor();
- PangoFontDescription *fontref;
- int **width; // array of arrays of character widths
-};
-
-extern FL_EXPORT Fl_Fontdesc *fl_fonts; // the table
-
-#endif // FL_FONT_