Subversion Repositories spk

Rev

Rev 1 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 36
Line 22... Line 22...
22
	///          resources associated with this form.
22
	///          resources associated with this form.
23
	/// </summary>
23
	/// </summary>
24
	public ref class BaseForm : public System::Windows::Forms::Form
24
	public ref class BaseForm : public System::Windows::Forms::Form
25
	{
25
	{
26
	public:
26
	public:
27
		BaseForm(System::Windows::Forms::Form ^parent, System::Windows::Forms::TabControl ^ctrl, System::Windows::Forms::TabPage ^page, System::Windows::Forms::ToolStripMenuItem ^tool, CPackages *p, Windows::Forms::ImageList ^imagelist, Collections::Hashtable ^hash, SSettings *set)
27
		BaseForm(System::Windows::Forms::Form ^parent, System::Windows::Forms::TabControl ^ctrl, System::Windows::Forms::TabPage ^page, System::Windows::Forms::ToolStripMenuItem ^tool, CPackages *p, Windows::Forms::ImageList ^imagelist, SSettings *set)
28
		{
28
		{
29
			InitializeComponent();
29
			InitializeComponent();
30
 
30
 
31
			m_bClosing = false;
31
			m_bClosing = false;
32
			m_bLoading = true;
32
			m_bLoading = true;
33
			m_pSettings = set;
33
			m_pSettings = set;
34
			m_iFormType = FORMTYPE_BASE;
34
			m_iFormType = FORMTYPE_BASE;
35
			textList = hash;
-
 
36
			imageList1 = imagelist;
35
			imageList1 = imagelist;
37
			m_pP = p;
36
			m_pP = p;
38
			this->MdiParent = parent;
37
			this->MdiParent = parent;
39
			m_pTabCtrl = ctrl;
38
			m_pTabCtrl = ctrl;
40
			m_pTabPage = page;
39
			m_pTabPage = page;
Line 82... Line 81...
82
 
81
 
83
		System::Windows::Forms::TabControl			^m_pTabCtrl;
82
		System::Windows::Forms::TabControl			^m_pTabCtrl;
84
		System::Windows::Forms::TabPage				^m_pTabPage;
83
		System::Windows::Forms::TabPage				^m_pTabPage;
85
		System::Windows::Forms::ToolStripMenuItem	^m_pMenuItem;
84
		System::Windows::Forms::ToolStripMenuItem	^m_pMenuItem;
86
		Windows::Forms::ImageList					^imageList1;
85
		Windows::Forms::ImageList					^imageList1;
87
		System::Collections::Hashtable				^textList;
86
		//System::Collections::Hashtable				^textList;
88
		CPackages									*m_pP;
87
		CPackages									*m_pP;
89
		System::String								^m_sFilename;
88
		System::String								^m_sFilename;
90
		int											 m_iFormType;
89
		int											 m_iFormType;
91
		SSettings									*m_pSettings;
90
		SSettings									*m_pSettings;
92
		bool	m_bLoading;
91
		bool	m_bLoading;