25 lines
417 B
C
25 lines
417 B
C
|
/*
|
||
|
* Copyright 2009, Haiku, Inc. All Rights Reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef TOOL_TIP_WINDOW_H
|
||
|
#define TOOL_TIP_WINDOW_H
|
||
|
|
||
|
|
||
|
#include <Window.h>
|
||
|
|
||
|
|
||
|
namespace BPrivate {
|
||
|
|
||
|
class ToolTipWindow : public BWindow {
|
||
|
public:
|
||
|
ToolTipWindow(BToolTip* tip, BPoint where);
|
||
|
|
||
|
virtual void MessageReceived(BMessage* message);
|
||
|
};
|
||
|
|
||
|
} // namespace BPrivate
|
||
|
|
||
|
|
||
|
#endif // TOOL_TIP_WINDOW_H
|