xref: /haiku/headers/private/interface/ToolTipWindow.h (revision 4fd62caa9acc437534c41bbb7d3fc9d53e915005)
1 /*
2  * Copyright 2009-2012, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef TOOL_TIP_WINDOW_H
6 #define TOOL_TIP_WINDOW_H
7 
8 
9 #include <Window.h>
10 
11 
12 namespace BPrivate {
13 
14 
15 class ToolTipWindow : public BWindow {
16 public:
17 							ToolTipWindow(BToolTip* tip, BPoint where,
18 								void* owner);
19 
20 	virtual	void			MessageReceived(BMessage* message);
21 
22 private:
23 			void*			fOwner;
24 };
25 
26 
27 }	// namespace BPrivate
28 
29 
30 #endif	// TOOL_TIP_WINDOW_H
31