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