xref: /haiku/headers/private/interface/DecoratorPrivate.h (revision c329950ca70fbc8c9e130ab512db13f33e80c266)
1 /*
2  * Copyright 2011, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef DECORATOR_PRIVATE_H
6 #define DECORATOR_PRIVATE_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 class BString;
13 class BWindow;
14 
15 
16 namespace BPrivate {
17 
18 
19 bool get_decorator(BString& name);
20 status_t set_decorator(const BString& name);
21 status_t preview_decorator(const BString& name, BWindow* window);
22 
23 
24 }	// namespace BPrivate
25 
26 
27 #endif	// DECORATOR_PRIVATE_H
28