Rev | Line | |
---|
[475] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | #include <map>
|
---|
| 4 | #include <string>
|
---|
| 5 | #include <vector>
|
---|
| 6 | #include <fstream>
|
---|
| 7 | #include <iostream>
|
---|
| 8 |
|
---|
| 9 | #include <windows.h>
|
---|
[772] | 10 | #include <windowsx.h>
|
---|
[475] | 11 | #include <stdio.h>
|
---|
| 12 | #include <string.h>
|
---|
| 13 | #include <math.h>
|
---|
| 14 | #include <commctrl.h>
|
---|
| 15 | #include <time.h>
|
---|
| 16 | #include <limits.h>
|
---|
| 17 | #include <shlobj.h>
|
---|
| 18 | #include <process.h>
|
---|
| 19 | #include <fcntl.h>
|
---|
| 20 | #include <io.h>
|
---|
[772] | 21 | #include <assert.h>
|
---|
[475] | 22 |
|
---|
[489] | 23 | #include <atlbase.h>
|
---|
[772] | 24 | #include <atlstr.h>
|
---|
[515] | 25 | #include <atlcom.h>
|
---|
| 26 | #include <atlhost.h>
|
---|
[828] | 27 | #undef _SECURE_ATL
|
---|
| 28 | #define _SECURE_ATL 1
|
---|
| 29 | #pragma warning(push)
|
---|
| 30 | #pragma warning(disable: 6011 6246 6255 6269 6387)
|
---|
[489] | 31 | #include <atlapp.h>
|
---|
[515] | 32 | #include <atlframe.h>
|
---|
[489] | 33 | #include <atlcrack.h>
|
---|
| 34 | #include <atlmisc.h>
|
---|
[651] | 35 | #include <atlctrls.h>
|
---|
[828] | 36 | #pragma warning(pop)
|
---|
[489] | 37 |
|
---|
[475] | 38 | //boost libraries
|
---|
| 39 | #include <boost/foreach.hpp>
|
---|
[515] | 40 | #include <boost/serialization/serialization.hpp>
|
---|
| 41 | #include <boost/serialization/nvp.hpp>
|
---|
| 42 | #include <boost/serialization/export.hpp>
|
---|
[655] | 43 | #include <boost/thread/thread.hpp>
|
---|
[475] | 44 |
|
---|
[681] | 45 | // tinyxml
|
---|
[828] | 46 | #pragma warning(push)
|
---|
| 47 | #pragma warning(disable: 6011)
|
---|
[681] | 48 | #include <tinyxml/tinyxml.h>
|
---|
[828] | 49 | #pragma warning(pop)
|
---|
[681] | 50 |
|
---|
[519] | 51 | #include <jenga/include/jenga.h>
|
---|
[475] | 52 |
|
---|
[515] | 53 | #include <abdev/ab_common/include/ab_common.h>
|
---|
[477] | 54 |
|
---|
[499] | 55 | #ifdef THETEXT
|
---|
| 56 | #include "../res_TheText/resource.h"
|
---|
| 57 | #else
|
---|
[493] | 58 | #include "../res/resource.h"
|
---|
[499] | 59 | #endif
|
---|
[493] | 60 |
|
---|
[681] | 61 | #include <WindowComponents/CodeEditor/Syntax.h>
|
---|
[489] | 62 | #include <WindowComponents/BaseWindow.h>
|
---|
| 63 | #include <WindowComponents/MdiChild.h>
|
---|
| 64 | #include <WindowComponents/MdiWindow.h>
|
---|
| 65 | #include <WindowComponents/DockingWindow.h>
|
---|
| 66 | #include <WindowComponents/TextView.h>
|
---|
| 67 | #include <WindowCollection.h>
|
---|
| 68 | #include <WindowAreaManager.h>
|
---|
| 69 | #include <MainFrame.h>
|
---|
[475] | 70 | #include <Program.h>
|
---|
[615] | 71 | #include <ProjectManager/WindowManager.h>
|
---|
[655] | 72 | #include <ProjectManager/FileManager.h>
|
---|
[609] | 73 |
|
---|
| 74 | #include "Common.h"
|
---|
[613] | 75 |
|
---|
[615] | 76 | #include <ProjectManager/ProjectManager.h>
|
---|
[772] | 77 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.