Serious-Engine/Sources/WorldEditor/CtrlEditString.h

50 lines
1.0 KiB
C
Raw Normal View History

2016-03-11 14:57:17 +01:00
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
// CtrlEditString.h : header file
//
#ifndef CTRLEDITSTRING_H
#define CTRLEDITSTRING_H 1
class CPropertyComboBar;
/////////////////////////////////////////////////////////////////////////////
// CCtrlEditString window
class CCtrlEditString : public CEdit
{
// Construction
public:
CCtrlEditString();
// Attributes
public:
// ptr to parent dialog
CPropertyComboBar *m_pDialog;
// Operations
public:
// sets ptr to parent dialog
void SetDialogPtr( CPropertyComboBar *pDialog);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCtrlEditString)
public:
virtual BOOL PreTranslateMessage(MSG* pMsg);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CCtrlEditString();
// Generated message map functions
protected:
//{{AFX_MSG(CCtrlEditString)
afx_msg void OnChange();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // CTRLEDITSTRING_H