1/*
2 * Copyright 2001-2005, Haiku.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Mark Hogben
7 *		DarkWyrm <bpmagic@columbus.rr.com>
8 *		Axel D��rfler, axeld@pinc-software.de
9 */
10#ifndef FONTS_SETTINGS_H
11#define FONTS_SETTINGS_H
12
13
14#include <Point.h>
15
16
17class FontsSettings {
18	public:
19		FontsSettings();
20		~FontsSettings();
21
22		BPoint	WindowCorner() const { return fCorner; }
23		void	SetWindowCorner(BPoint);
24
25		void	SetDefaults();
26
27	private:
28		BPoint	fCorner;
29};
30
31#endif	/* FONTS_SETTINGS_H */
32