1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6#include "Globals.h"
7
8#include <math.h>
9#include <stddef.h>
10
11#include <Font.h>
12
13
14BClipboard* gMouseClipboard = NULL;
15
16
17bool
18IsFontUsable(const BFont& font)
19{
20	if (font.IsFixed() || font.IsFullAndHalfFixed())
21		return true;
22
23	return false;
24}
25