2009-08-03 18:47:41 +04:00
|
|
|
/*
|
2012-04-29 00:09:14 +04:00
|
|
|
* Copyright 2009-2012, Haiku, Inc. All Rights Reserved.
|
2009-08-03 18:47:41 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef TOOL_TIP_WINDOW_H
|
|
|
|
#define TOOL_TIP_WINDOW_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <Window.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
2012-04-29 00:09:14 +04:00
|
|
|
|
2009-08-03 18:47:41 +04:00
|
|
|
class ToolTipWindow : public BWindow {
|
|
|
|
public:
|
2012-04-29 00:09:14 +04:00
|
|
|
ToolTipWindow(BToolTip* tip, BPoint where,
|
|
|
|
void* owner);
|
2009-08-03 18:47:41 +04:00
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
2012-04-29 00:09:14 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
void* fOwner;
|
2009-08-03 18:47:41 +04:00
|
|
|
};
|
|
|
|
|
2012-04-29 00:09:14 +04:00
|
|
|
|
2009-08-03 18:47:41 +04:00
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
|
|
|
|
|
|
#endif // TOOL_TIP_WINDOW_H
|