xref: /haiku/src/preferences/datatranslations/DataTranslationsSettings.h (revision a10cf76ef5b9e8c726ebc47183abd6943023cf8f)
1*a10cf76eSAxel Dörfler #ifndef DATA_TRANSLATIONS_SETTINGS_H_
2*a10cf76eSAxel Dörfler #define DATA_TRANSLATIONS_SETTINGS_H_
3*a10cf76eSAxel Dörfler 
4*a10cf76eSAxel Dörfler class DataTranslationsSettings{
5*a10cf76eSAxel Dörfler public :
6*a10cf76eSAxel Dörfler 	DataTranslationsSettings();
7*a10cf76eSAxel Dörfler 	~DataTranslationsSettings();
8*a10cf76eSAxel Dörfler 
9*a10cf76eSAxel Dörfler 	BPoint WindowCorner() const { return fCorner; }
10*a10cf76eSAxel Dörfler 	void SetWindowCorner(BPoint corner);
11*a10cf76eSAxel Dörfler 
12*a10cf76eSAxel Dörfler private:
13*a10cf76eSAxel Dörfler 	static const char 	kDataTranslationsSettingsFile[];
14*a10cf76eSAxel Dörfler 	BPoint				fCorner;
15*a10cf76eSAxel Dörfler };
16*a10cf76eSAxel Dörfler 
17*a10cf76eSAxel Dörfler #endif
18