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.
29 lines
689 B
29 lines
689 B
//========= Copyright © 1996-2005, 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
|