xref: /haiku/src/apps/haikudepot/ui_generic/support.h (revision 17889a8c70dbb3d59c1412f6431968753c767bab)
1 /*
2  * Copyright 2006, 2013 Stephan Aßmus <superstippi@gmx.de>
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef SUPPORT_H
7 #define SUPPORT_H
8 
9 #include <Rect.h>
10 
11 
12 class BMessage;
13 class BResources;
14 class BView;
15 class BWindow;
16 
17 
18 status_t load_settings(BMessage* message, const char* fileName,
19 	const char* folder = NULL);
20 
21 status_t save_settings(const BMessage* message, const char* fileName,
22 	const char* folder = NULL);
23 
24 status_t get_app_resources(BResources& resources);
25 
26 void set_small_font(BView* view);
27 
28 #endif // SUPPORT_H
29