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.
54 lines
1.0 KiB
54 lines
1.0 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $Workfile: $
|
||
|
// $Date: $
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// $Log: $
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef TITLEWND_H
|
||
|
#define TITLEWND_H
|
||
|
#pragma once
|
||
|
|
||
|
|
||
|
class CTitleWnd : public CWnd
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
static CTitleWnd *CreateTitleWnd(CWnd *pwndParent, UINT uID);
|
||
|
|
||
|
void SetTitle(LPCTSTR pszTitle);
|
||
|
|
||
|
private:
|
||
|
|
||
|
char m_szTitle[256];
|
||
|
static CFont m_FontNormal;
|
||
|
static CFont m_FontActive;
|
||
|
|
||
|
protected:
|
||
|
|
||
|
CTitleWnd(void);
|
||
|
|
||
|
void OnMouseButton(void);
|
||
|
|
||
|
bool m_bMouseOver;
|
||
|
bool m_bMenuOpen;
|
||
|
|
||
|
afx_msg void OnPaint();
|
||
|
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
||
|
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
|
||
|
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
|
||
|
afx_msg LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam);
|
||
|
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif // TITLEWND_H
|