This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

54 lines
1.3 KiB
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef MENUBAR_H
#define MENUBAR_H
#ifdef _WIN32
#pragma once
#endif
#include <utlvector.h>
#include <vgui_controls/Panel.h>
namespace vgui {
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class MenuBar : public Panel {
DECLARE_CLASS_SIMPLE(MenuBar, Panel);
public:
MenuBar(Panel *parent, const char *panelName);
~MenuBar();
virtual void AddButton(
MenuButton *button); // add button to end of menu list
virtual void AddMenu(const char *pButtonName, Menu *pMenu);
virtual void GetContentSize(int &w, int &h);
protected:
virtual void OnKeyCodeTyped(ButtonCode_t code);
virtual void OnKeyTyped(wchar_t unichar);
virtual void ApplySchemeSettings(IScheme *pScheme);
virtual void PerformLayout();
virtual void Paint();
MESSAGE_FUNC(OnMenuClose, "MenuClose");
MESSAGE_FUNC_INT(OnCursorEnteredMenuButton, "CursorEnteredMenuButton",
VPanel);
private:
CUtlVector<MenuButton *> m_pMenuButtons;
int m_nRightEdge;
};
} // namespace vgui
#endif // MENUBAR_H