1 /* 2 * Copyright 2009, 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 class ToolTipWindow : public BWindow { 15 public: 16 ToolTipWindow(BToolTip* tip, BPoint where); 17 18 virtual void MessageReceived(BMessage* message); 19 }; 20 21 } // namespace BPrivate 22 23 24 #endif // TOOL_TIP_WINDOW_H 25