xref: /haiku/src/apps/terminal/Globals.cpp (revision 7457ccb4b2f4786525d3b7bda42598487d57ab7d)
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 
14 BClipboard* gMouseClipboard = NULL;
15 
16 
17 bool
18 IsFontUsable(const BFont& font)
19 {
20 	if (font.IsFixed() || font.IsFullAndHalfFixed())
21 		return true;
22 
23 	return false;
24 }
25