c733893846
is done from inside the BMenu::_track() function, and not inside Pulse() anymore. Patch by Lucasz Zemczak git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19653 a95241bf-73f2-0310-859d-f6bbb57e9c96
45 lines
721 B
C++
45 lines
721 B
C++
/*
|
|
* Copyright 2001-2006, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Marc Flerackers (mflerackers@androme.be)
|
|
* Stefano Ceccherini (burton666@libero.it)
|
|
*/
|
|
#ifndef __MENUWINDOW_H
|
|
#define __MENUWINDOW_H
|
|
|
|
|
|
#include <Window.h>
|
|
|
|
class BMenu;
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
class BMenuFrame;
|
|
class BMenuScroller;
|
|
|
|
|
|
class BMenuWindow : public BWindow {
|
|
public:
|
|
BMenuWindow(const char *name);
|
|
virtual ~BMenuWindow();
|
|
|
|
void AttachMenu(BMenu *menu);
|
|
void DetachMenu();
|
|
|
|
void AttachScrollers();
|
|
void DetachScrollers();
|
|
|
|
bool CheckForScrolling(BPoint cursor);
|
|
|
|
private:
|
|
BMenuScroller *fScroller;
|
|
BMenuFrame *fMenuFrame;
|
|
};
|
|
|
|
} // namespace BPrivate
|
|
|
|
#endif // __MENUWINDOW_H
|