77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
/*
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Description : ArcDia.hpp
|
|
//
|
|
// Dialog edition the arcs
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Creation date: 6 feb 1997 Author: J Thénoz
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Modification date: Author:
|
|
//
|
|
//
|
|
//
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
*/
|
|
|
|
//ANNECY Shaitan Nettoyage (12/05/98) {
|
|
/*
|
|
|
|
#ifndef __ArcDia_HPP__
|
|
#define __ArcDia_HPP__
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// BezierDia dialog
|
|
|
|
class LinkArc;
|
|
class Waypoint_Interface;
|
|
|
|
class ArcDia : public CDialog
|
|
{
|
|
protected:
|
|
LinkArc* m_pLinkArc;
|
|
|
|
// Construction
|
|
public:
|
|
ArcDia (LinkArc* pLinkBez, CWnd* pParent = NULL); // standard constructor
|
|
void fn_vTutRegister (void);
|
|
void fn_vTutUnregister (void);
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(BezierDia)
|
|
enum { IDD = IDD_ARC_DIALOG };
|
|
int m_iSamplingRate;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(BezierDia)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
BOOL OnCommand(WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(ArcDia)
|
|
afx_msg void OnKillfocusArcEdit();
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif
|
|
|
|
*/
|
|
//ENDANNECY Shaitan Nettoyage }
|