Counter Strike : Global Offensive Source Code
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

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef MXEXPRESSIONTAB_H
  8. #define MXEXPRESSIONTAB_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "tabwindow.h"
  13. class mxExpressionTab : public CTabWindow
  14. {
  15. public:
  16. mxExpressionTab( mxWindow *parent, int x, int y, int w, int h, int id = 0, int style = 0 )
  17. : CTabWindow( parent, x, y, w, h, id, style )
  18. {
  19. }
  20. virtual void ShowRightClickMenu( int mx, int my );
  21. virtual int getSelectedIndex () const;
  22. };
  23. extern mxExpressionTab *g_pExpressionClass;
  24. #endif // MXEXPRESSIONTAB_H