summaryrefslogtreecommitdiff
path: root/utils/hlfaceposer/mxexpressiontab.h
blob: 2eea9a3306763519efc62f641bb71abfd2dacf95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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