mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-15 21:26:57 +00:00
1
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
//========= 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
|
||||
Reference in New Issue
Block a user