Files
TestEGr/SelectDlg.h
Dario Sassi 578cbb2b55 TestEgr 1.5j1 :
- aggiornamento per selezione con mouse
- aggiornamento per distanza con punti notevoli.
2014-10-10 06:43:42 +00:00

32 lines
724 B
C++

#pragma once
class IEGrScene ;
//----------------------------------------------------------------------------
// CSelectDlg dialog used for Select
//----------------------------------------------------------------------------
class CSelectDlg : public CDialog
{
public :
CSelectDlg( IEGrScene* pScene) ;
int GetCurrId( void)
{ return m_nCurrId ; }
protected :
virtual BOOL OnInitDialog( void) ;
virtual void OnOK( void) ;
virtual void OnCancel( void) ;
afx_msg void OnLBSelChange( void) ;
afx_msg void OnLBDblClk( void) ;
private :
IEGrScene* m_pScene ;
int m_nCurrId ;
DECLARE_MESSAGE_MAP()
} ;