Subversion Repositories spk

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 cycrow 1
#pragma once
2
 
3
using namespace System;
4
using namespace System::ComponentModel;
5
using namespace System::Collections;
6
using namespace System::Windows::Forms;
7
using namespace System::Data;
8
using namespace System::Drawing;
9
 
10
//#define DESIGNER
11
 
12
 
13
namespace Creator {
14
 
15
	/// <summary>
16
	/// Summary for WizardCore1
17
	/// </summary>
18
	public ref class WizardCore1 : public System::Windows::Forms::UserControl
19
	{
20
	public:
21
		WizardCore1(System::Windows::Forms::Form ^Wizard, CBaseFile *package)
22
		{
23
			InitializeComponent();
24
 
25
			m_pParent = Wizard;
26
			m_pPackage = package;
27
		}
28
		virtual Windows::Forms::UserControl ^GetNext(CBaseFile *package)
29
		{
30
			return nullptr;
31
		}
32
 
33
		virtual void EnableDone(bool e, int type);
34
		virtual void EnableBack();
35
 
36
 
37
	protected:
38
		/// <summary>
39
		/// Clean up any resources being used.
40
		/// </summary>
41
		~WizardCore1()
42
		{
43
			if (components)
44
			{
45
				delete components;
46
			}
47
		}
48
 
49
		System::Windows::Forms::Form ^m_pParent;
50
		CBaseFile	*m_pPackage;
51
 
52
	private:
53
		/// <summary>
54
		/// Required designer variable.
55
		/// </summary>
56
		System::ComponentModel::Container ^components;
57
 
58
#pragma region Windows Form Designer generated code
59
		/// <summary>
60
		/// Required method for Designer support - do not modify
61
		/// the contents of this method with the code editor.
62
		/// </summary>
63
		void InitializeComponent(void)
64
		{
65
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
66
		}
67
#pragma endregion
68
	};
69
}