You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
749 B
C++
28 lines
749 B
C++
#pragma once
|
|
#include "MyDlgView.h"
|
|
|
|
|
|
//żÉÍŁżżśÔť°żňÄŁ°ĺ
|
|
class CPaneDialogTmp : public CDockablePane
|
|
{
|
|
DECLARE_DYNAMIC(CPaneDialogTmp)
|
|
public:
|
|
CPaneDialogTmp();
|
|
virtual ~CPaneDialogTmp();
|
|
void SetDlg(CMyDlgView *p){m_Dlg = p;};
|
|
|
|
//virtual BOOL CanBeClosed() const { return FALSE; }
|
|
//virtual BOOL CanAutoHide() const { return FALSE; }
|
|
//virtual BOOL FloatPane(CRect rectFloat, AFX_DOCK_METHOD dockMethod = DM_UNKNOWN, bool bShow = true) { return FALSE; }
|
|
//virtual BOOL CanFloat() const { return FALSE; }
|
|
|
|
private:
|
|
CMyDlgView *m_Dlg;
|
|
protected:
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|