diff options
Diffstat (limited to 'utils/hlfaceposer/mxexpressiontab.h')
| -rw-r--r-- | utils/hlfaceposer/mxexpressiontab.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/utils/hlfaceposer/mxexpressiontab.h b/utils/hlfaceposer/mxexpressiontab.h new file mode 100644 index 0000000..2eea9a3 --- /dev/null +++ b/utils/hlfaceposer/mxexpressiontab.h @@ -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 |