You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.8 KiB
71 lines
1.8 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// This menu bar displays a couple extra labels:
|
||
|
// one which contains the tool name, and one which contains a arbitrary info
|
||
|
//
|
||
|
//=============================================================================
|
||
|
|
||
|
#ifndef TOOLMENUBAR_H
|
||
|
#define TOOLMENUBAR_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include "vgui_controls/menubar.h"
|
||
|
|
||
|
using namespace vgui;
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Forward declarations
|
||
|
//-----------------------------------------------------------------------------
|
||
|
namespace vgui
|
||
|
{
|
||
|
class Panel;
|
||
|
class Label;
|
||
|
}
|
||
|
|
||
|
class CBaseToolSystem;
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Main menu bar
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CToolMenuBar : public vgui::MenuBar
|
||
|
{
|
||
|
DECLARE_CLASS_SIMPLE( CToolMenuBar, vgui::MenuBar );
|
||
|
|
||
|
public:
|
||
|
CToolMenuBar( CBaseToolSystem *parent, const char *panelName );
|
||
|
virtual void PerformLayout();
|
||
|
void SetToolName( const char *name );
|
||
|
void SetInfo( const char *text );
|
||
|
|
||
|
CBaseToolSystem *GetToolSystem();
|
||
|
|
||
|
protected:
|
||
|
Label *m_pInfo;
|
||
|
Label *m_pToolName;
|
||
|
CBaseToolSystem *m_pToolSystem;
|
||
|
};
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Main menu bar version that stores file name on it
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CToolFileMenuBar : public CToolMenuBar
|
||
|
{
|
||
|
DECLARE_CLASS_SIMPLE( CToolFileMenuBar, CToolMenuBar );
|
||
|
|
||
|
public:
|
||
|
CToolFileMenuBar( CBaseToolSystem *parent, const char *panelName );
|
||
|
virtual void PerformLayout();
|
||
|
void SetFileName( const char *pFileName );
|
||
|
|
||
|
private:
|
||
|
Label *m_pFileName;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // TOOLMENUBAR_H
|