From a3dff518f009319d8efd049ee6e8e901a83d9c68 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini <stefano.ceccherini@gmail.com> Date: Tue, 4 Jan 2005 13:00:33 +0000 Subject: [PATCH] Updated header git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10583 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/interface/MenuWindow.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/headers/private/interface/MenuWindow.h b/headers/private/interface/MenuWindow.h index 6b9c83865d..2a586f9856 100644 --- a/headers/private/interface/MenuWindow.h +++ b/headers/private/interface/MenuWindow.h @@ -1,5 +1,5 @@ //------------------------------------------------------------------------------ -// Copyright (c) 2003-2005, Haiku, Inc. +// Copyright (c) 2003-2004, Haiku, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), @@ -30,15 +30,18 @@ #include <Window.h> class BMenu; +class BMenuScroller; + class BMenuWindow : public BWindow { public: - BMenuWindow(BMenu *menu); + BMenuWindow(const char *name); virtual ~BMenuWindow(); - - virtual void WindowActivated(bool active); + + void UpdateScrollers(); private: - BMenu *fMenu; + BMenuScroller *fUpperScroller; + BMenuScroller *fLowerScroller; }; #endif