-
Notifications
You must be signed in to change notification settings - Fork 5
/
sredit.h
204 lines (155 loc) · 6.96 KB
/
sredit.h
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*===========================================================================
*
* File: Sredit.H
* Author: Dave Humphrey ([email protected])
* Created On: Thursday, 27 July, 2006
*
* Main header file for the SREDIT application.
*
*=========================================================================*/
#ifndef __SREDIT_H
#define __SREDIT_H
/*===========================================================================
*
* Begin Required Include Files
*
*=========================================================================*/
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h"
#include "modfile/srespfile.h"
#include "srprogressdlg.h"
#include "windows/srrecordfilter.h"
#include "srerrordlg.h"
#include "modfile/srmultirecordhandler.h"
#include "common/srconfigfile.h"
#include "bsafile/srresourcehandler.h"
#include "mainfrm.h"
#include "srresourceview.h"
#include "dialogs/SrScriptView.h"
/*===========================================================================
* End of Required Include Files
*=========================================================================*/
/*===========================================================================
*
* Begin Definitions
*
*=========================================================================*/
/* Default options filename */
#define SREDIT_OPTIONS_FILE "skyedit.ini"
/* Default colors */
#define SREDIT_COLOR_GRAY RGB(212,208,200)
/* Base registry section */
#define SREDIT_REGISTRY_BASE "Software\\UESP\\skyedit\\"
/*===========================================================================
* End of Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin Class CSrEditApp Definition
*
*=========================================================================*/
class CSrEditApp : public CWinAppEx {
/*---------- Begin Protected Class Members -----------------------*/
protected:
CMainFrame* m_pMainFrame;
srfileloadinfo_t* m_pCurrentLoadInfo; /* Used when loading a file */
CSrProgressDlg* m_pCurrentProgressDlg;
CSrCallback* m_pCurrentLoadCallback;
CSrConfigFile m_ConfigFile;
CSString m_AppPath;
dword m_NewFileIndex;
CSrResourceHandler m_ResourceHandler;
CSrBsaFileArray m_BsaFiles;
bool m_InitResourceHandler;
bool m_LoadAllScripts;
public:
bool m_EditScriptExternalByDefault;
protected:
/*--------- Begin Public Class Methods ---------------------------*/
public:
/* Class Constructor */
CSrEditApp();
virtual ~CSrEditApp();
bool CreateNewScript (CString& ScriptName);
bool LoadAllScripts (void);
bool EditScriptFromData (const char* pFilename, const bool UseInternal);
bool EditScript (const char* pFilename, const bool UseInternal);
bool EditScript (const char* pFilename);
bool EditScriptExternal (const char* pFilename);
bool EditScriptFromData (const char* pFilename);
bool EditScriptExternalFromData (const char* pFilename);
bool EditScriptName (const char* pScriptName, const bool UseInternal);
bool EditResourceExternal (const char* pFilename);
dword FindInScripts (srfinddata_t& FindData, CSrCallback* pCallback);
/* Get class members */
srfileloadinfo_t* GetCurrentLoadInfo (void) { return (m_pCurrentLoadInfo); }
CSrProgressDlg* GetCurrentProgressDlg (void) { return (m_pCurrentProgressDlg); }
CSrCallback* GetCurrentLoadCallback (void) { return (m_pCurrentLoadCallback); }
CSrConfigFile& GetConfigFile (void) { return (m_ConfigFile); }
const char* GetAppPath (void) { return (m_AppPath); }
/* Load/save/update options */
bool LoadOptions (const TCHAR* pFilename);
bool SaveOptions (const TCHAR* pFilename);
void UpdateOptions (const bool Set);
//void UpdateScriptColorOptions (CCustomCompiler& Compiler, const bool Set);
//void UpdateScriptErrorOptions (const bool Set);
void ResolveOptionPaths (void);
bool OpenWebHelp (const char* pPage);
bool OpenWebHelp (const char* pUESPPage, const char* pCSPage);
void OpenResourceView (const char* pResource);
CFrameWnd* FindResourceView (void);
bool InitResourceHandler (void);
CSrResourceView* CreateResourceView (void);
CSrResourceView* OpenResourceView (void);
CFrameWnd* FindScriptsFrame (void);
CSrScriptView* CreateScriptsView (void);
CSrScriptView* OpenScriptsView (void);
CSrScriptView* FindScriptsView (void);
void OpenScriptsResourceView (void);
CSrScriptFile* FindScriptName (const char* pScriptName);
bool UpdateScript (const char* pScriptName);
bool UpdateScriptView (const char* pScriptName);
void ResetListState (void);
bool AddBsaFile (const char* pFilename);
public:
virtual BOOL InitInstance();
virtual CDocument* OpenDocumentFile(LPCTSTR lpszFileName);
virtual int ExitInstance();
afx_msg void OnAppAbout();
afx_msg void OnFileOpen();
afx_msg void OnFileNew();
DECLARE_MESSAGE_MAP()
};
/*===========================================================================
* End of Class CSrEditApp Definition
*=========================================================================*/
/*===========================================================================
*
* Begin External Definitions
*
*=========================================================================*/
CSrEditApp& GetSrEditApp (void);
CSrConfigFile& GetSrEditConfigFile (void);
bool SrEditShowError (const dword Flags, const TCHAR* pTitle, const TCHAR* pString, ...);
bool SrEditShowError (const TCHAR* pTitle, const TCHAR* pString, ...);
bool SrEditShowError (const TCHAR* pString, ...);
bool SrEditShowLastError (const TCHAR* pString, ...);
bool OpenWebPage (const char* pAddress);
void SrLockUndoUpdates (const bool Lock);
void WINAPI SetInternalWindowText(HWND hwnd, LPCTSTR lpText);
void SrGlobClipAddCondition(srconditioninfo_t* pCondition, const bool Clear = false);
void SrGlobClipClearConditions();
CSrConditionArray& SrGlobClipGetConditions (void);
void SrGlobClipAddScript(srvmadscript_t* pScript, const bool Clear = false);
void SrGlobClipClearScripts();
CSrVmadScriptArray& SrGlobClipGetScripts (void);
void OnInitMenuPopupHelper (CWnd* pThis, CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
/*===========================================================================
* End of External Definitions
*=========================================================================*/
#endif
/*===========================================================================
* End of File SrEdit.h
*=========================================================================*/