Path: blob/main/crypto/krb5/src/windows/leash/LeashFrame.h
34889 views
// **************************************************************************************1// File: LeashFrame.h2// By: Arthur David Leather3// Created: 12/02/984// Copyright @1998 Massachusetts Institute of Technology - All rights reserved.5// Description: H file for LeashFrame.cpp. Contains variables and functions6// for Leash7//8// History:9//10// MM/DD/YY Inits Description of Change11// 12/02/98 ADL Original12// **************************************************************************************131415#ifndef _LEASH_PERSISTENT_FRAME16#define _LEASH_PERSISTENT_FRAME1718class CLeashFrame : public CFrameWndEx19{ // remembers where it was on the desktop20DECLARE_DYNAMIC(CLeashFrame)21static const CRect s_rectDefault;22static const char s_profileHeading[];23static const char s_profileRect[];24static const char s_profileIcon[];25static const char s_profileMax[];26static const char s_profileTool[];27static const char s_profileStatus[];2829private:30BOOL m_bFirstTime;3132protected: // Create from serialization only33CLeashFrame();34~CLeashFrame();3536//{{AFX_VIRTUAL(CLeashFrame)37public:38virtual void ActivateFrame(int nCmdShow = -1);39protected:40//}}AFX_VIRTUAL4142//{{AFX_MSG(CLeashFrame)43afx_msg void OnDestroy();44//}}AFX_MSG4546DECLARE_MESSAGE_MAP()47};4849#endif // _LEASH_PERSISTENT_FRAME505152