Skip to content

Commit 049f32e

Browse files
author
dude719
committed
First Commit
0 parents  commit 049f32e

File tree

428 files changed

+290436
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

428 files changed

+290436
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
Thumbs.db
2+
*.obj
3+
*.exe
4+
*.pdb
5+
*.user
6+
*.aps
7+
*.pch
8+
*.vspscc
9+
*_i.c
10+
*_p.c
11+
*.ncb
12+
*.suo
13+
*.sln.docstates
14+
*.tlb
15+
*.tlh
16+
*.bak
17+
*.cache
18+
*.ilk
19+
*.log
20+
[Bb]in
21+
[Dd]ebug*/
22+
*.lib
23+
*.sbr
24+
obj/
25+
[Rr]elease*/
26+
_ReSharper*/
27+
[Tt]est[Rr]esult*
28+
*.vssscc
29+
$tf*/
30+
ipch/reclass 2011-8d0c3c71/reclass_64_dbg-87e0d70c.ipch
31+
ipch/reclass 2011-8d0c3c71/reclass_64-f2ef185a.ipch
32+
ipch/reclass 2011-8d0c3c71/reclass_64-f7637f20.ipch
33+
ipch/reclass 2011-8d0c3c71/reclass_dbg-f6860885.ipch
34+
ipch/reclass 2011-8d0c3c71/reclass-3d20dc19.ipch
35+
ipch/reclass 2011-8d0c3c71/reclass-c7cb1a17.ipch
36+
ipch/reclass 2011-8d0c3c71/reclass-cb66f813.ipch
37+
ReClass.opensdf
38+
ReClass.sdf
39+
SDK/TestPlugin/TestPlugin.sdf

.tfignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
\.git

Images/Untitled-1.psd

186 KB
Binary file not shown.

Images/about.bmp

80.8 KB
Binary file not shown.

Images/about.psd

719 KB
Binary file not shown.

Images/about2.psd

2.28 MB
Binary file not shown.

Images/about_header.bmp

20 KB
Binary file not shown.

Images/add.ico

1.12 KB
Binary file not shown.

Images/array.ico

1.12 KB
Binary file not shown.

Images/arrow_icon.ico

1.12 KB
Binary file not shown.

Images/button.bmp

2.7 KB
Binary file not shown.

Images/camera.ico

1.12 KB
Binary file not shown.

Images/close.ico

1.12 KB
Binary file not shown.

Images/closed.ico

1.12 KB
Binary file not shown.

Images/custom.ico

1.12 KB
Binary file not shown.

Images/enum.ico

1.12 KB
Binary file not shown.

Images/exchange.ico

1.12 KB
Binary file not shown.

Images/float.ico

1.12 KB
Binary file not shown.

Images/general_class_VS.ico

1.12 KB
Binary file not shown.

Images/general_interface_VS.ico

1.12 KB
Binary file not shown.

Images/general_method_VS.ico

1.12 KB
Binary file not shown.

Images/icon.bmp

2.7 KB
Binary file not shown.

Images/icon.ico

4.19 KB
Binary file not shown.

Images/icon.png

5.05 KB
Loading

Images/left.ico

1.12 KB
Binary file not shown.

Images/matrix.ico

1.12 KB
Binary file not shown.

Images/open.ico

1.12 KB
Binary file not shown.

Images/pointer.ico

1.12 KB
Binary file not shown.

Images/right.ico

1.12 KB
Binary file not shown.

Images/signed.ico

1.12 KB
Binary file not shown.

Images/speles_random_ico.ico

1.12 KB
Binary file not shown.

Images/text.ico

1.12 KB
Binary file not shown.

Images/unsigned.ico

1.12 KB
Binary file not shown.

Images/vector.ico

1.12 KB
Binary file not shown.

ReClass 2011.sln.old

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+

2+
Microsoft Visual Studio Solution File, Format Version 9.00
3+
# Visual Studio 2012
4+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ReClass 2011", "ReClass 2011\ReClass 2011.vcxproj", "{FA80DCEB-16C4-43D1-8451-6EE506D5FF82}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Release|Win32 = Release|Win32
9+
Release|x64 = Release|x64
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{FA80DCEB-16C4-43D1-8451-6EE506D5FF82}.Release|Win32.ActiveCfg = Release|Win32
13+
{FA80DCEB-16C4-43D1-8451-6EE506D5FF82}.Release|Win32.Build.0 = Release|Win32
14+
{FA80DCEB-16C4-43D1-8451-6EE506D5FF82}.Release|x64.ActiveCfg = Release|x64
15+
{FA80DCEB-16C4-43D1-8451-6EE506D5FF82}.Release|x64.Build.0 = Release|x64
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

ReClass 2011.suo.old

19 KB
Binary file not shown.

ReClass 2011/ChildFrm.cpp

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
#include "stdafx.h"
2+
#include "ReClass2015.h"
3+
#include "ChildFrm.h"
4+
5+
#ifdef _DEBUG
6+
#define new DEBUG_NEW
7+
#endif
8+
9+
// CChildFrame
10+
11+
IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWndEx)
12+
13+
BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWndEx)
14+
ON_COMMAND(ID_FILE_CLOSE, &CChildFrame::OnFileClose)
15+
ON_WM_SETFOCUS()
16+
ON_WM_CREATE()
17+
END_MESSAGE_MAP()
18+
19+
// CChildFrame construction/destruction
20+
21+
CChildFrame::CChildFrame()
22+
{
23+
// TODO: add member initialization code here
24+
}
25+
26+
CChildFrame::~CChildFrame()
27+
{
28+
}
29+
30+
BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
31+
{
32+
// TODO: Modify the Window class or styles here by modifying the CREATESTRUCT cs
33+
if( !CMDIChildWndEx::PreCreateWindow(cs) )
34+
return FALSE;
35+
36+
cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
37+
cs.lpszClass = AfxRegisterWndClass(0);
38+
return TRUE;
39+
}
40+
41+
// CChildFrame diagnostics
42+
43+
#ifdef _DEBUG
44+
void CChildFrame::AssertValid() const
45+
{
46+
CMDIChildWndEx::AssertValid();
47+
}
48+
49+
void CChildFrame::Dump(CDumpContext& dc) const
50+
{
51+
CMDIChildWndEx::Dump(dc);
52+
}
53+
#endif //_DEBUG
54+
55+
// CChildFrame message handlers
56+
void CChildFrame::OnFileClose()
57+
{
58+
// To close the frame, just send a WM_CLOSE, which is the equivalent
59+
// choosing close from the system menu.
60+
SendMessage(WM_CLOSE);
61+
}
62+
63+
int CChildFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
64+
{
65+
if (CMDIChildWndEx::OnCreate(lpCreateStruct) == -1)
66+
return -1;
67+
68+
// create a view to occupy the client area of the frame
69+
if (!m_wndView.Create(NULL, NULL, AFX_WS_DEFAULT_VIEW, CRect(0, 0, 0, 0), this, AFX_IDW_PANE_FIRST, NULL))
70+
{
71+
TRACE0("Failed to create view window\n");
72+
return -1;
73+
}
74+
75+
return 0;
76+
}
77+
78+
void CChildFrame::OnSetFocus(CWnd* pOldWnd)
79+
{
80+
CMDIChildWndEx::OnSetFocus(pOldWnd);
81+
m_wndView.SetFocus();
82+
}
83+
84+
BOOL CChildFrame::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)
85+
{
86+
// let the view have first crack at the command
87+
if (m_wndView.OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
88+
return TRUE;
89+
// otherwise, do default handling
90+
return CMDIChildWndEx::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);
91+
}

ReClass 2011/ChildFrm.h

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#pragma once
2+
#include "ChildView.h"
3+
4+
class CChildFrame : public CMDIChildWndEx
5+
{
6+
DECLARE_DYNCREATE(CChildFrame)
7+
public:
8+
CChildFrame();
9+
10+
// Attributes
11+
public:
12+
13+
// Operations
14+
public:
15+
16+
// Overrides
17+
public:
18+
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
19+
virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
20+
21+
// Implementation
22+
public:
23+
// view for the client area of the frame.
24+
CChildView m_wndView;
25+
virtual ~CChildFrame();
26+
#ifdef _DEBUG
27+
virtual void AssertValid() const;
28+
virtual void Dump(CDumpContext& dc) const;
29+
#endif
30+
31+
// Generated message map functions
32+
protected:
33+
afx_msg void OnFileClose();
34+
afx_msg void OnSetFocus(CWnd* pOldWnd);
35+
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
36+
DECLARE_MESSAGE_MAP()
37+
};

0 commit comments

Comments
 (0)