mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-14 12:46:58 +00:00
1
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
#ifndef MXEXPRESSIONTAB_H
|
||||
#define MXEXPRESSIONTAB_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "tabwindow.h"
|
||||
|
||||
class mxExpressionTab : public CTabWindow
|
||||
{
|
||||
public:
|
||||
mxExpressionTab( mxWindow *parent, int x, int y, int w, int h, int id = 0, int style = 0 )
|
||||
: CTabWindow( parent, x, y, w, h, id, style )
|
||||
{
|
||||
}
|
||||
|
||||
virtual void ShowRightClickMenu( int mx, int my );
|
||||
virtual int getSelectedIndex () const;
|
||||
};
|
||||
|
||||
extern mxExpressionTab *g_pExpressionClass;
|
||||
|
||||
#endif // MXEXPRESSIONTAB_H
|
||||
Reference in New Issue
Block a user