-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCarEditor.h
More file actions
executable file
·91 lines (65 loc) · 1.75 KB
/
Copy pathCarEditor.h
File metadata and controls
executable file
·91 lines (65 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// CarEditor.h : main header file for the CAREDITOR application
//
#ifndef _CAREDITOR_INCLUDED_H
#define _CAREDITOR_INCLUDED_H
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
class CCarTree;
#include "MainFrm.h"
extern void SetStatusText(LPCSTR text);
/////////////////////////////////////////////////////////////////////////////
// CCarEditorApp:
// See CarEditor.cpp for the implementation of this class
//
class CCarEditorApp : public CWinApp
{
public:
CCarEditorApp();
~CCarEditorApp();
CString getGP2Location();
void OnEditLocation();
void OnGp2exe();
CMultiDocTemplate* pDocTemplate;
CMultiDocTemplate* pJamFileTemplate;
void LoadImages();
CImageList* pImageList;
CImageList* getSharedImageList()
{
return pImageList;
}
void OnJamView(CDocument *pDoc);
CCarTree *m_MainTree;
UINT m_AnimationSpeed;
BOOL useExternalJams;
BOOL drawRCRJam;
CMainFrame* pMainFrame;
void SetMessageText(LPCSTR str)
{
if (pMainFrame)
{
pMainFrame->SetMessageText(str);
}
}
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCarEditorApp)
public:
virtual BOOL InitInstance();
//}}AFX_VIRTUAL
// Implementation
//{{AFX_MSG(CCarEditorApp)
afx_msg void OnAppAbout();
afx_msg void OnEditgp2location();
afx_msg void OnGp2Exe();
afx_msg void OnFileimport();
afx_msg void OnEditDistanceTrigger();
afx_msg void OnSetAnimationDelay();
afx_msg void OnInternalJam();
afx_msg void OnUpdateInternalJam(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif