Subversion Repositories spk

Rev

Rev 161 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 161 Rev 163
Line 18... Line 18...
18
	///          'Resource File Name' property for the managed resource compiler tool
18
	///          'Resource File Name' property for the managed resource compiler tool
19
	///          associated with all .resx files this class depends on.  Otherwise,
19
	///          associated with all .resx files this class depends on.  Otherwise,
20
	///          the designers will not be able to interact properly with localized
20
	///          the designers will not be able to interact properly with localized
21
	///          resources associated with this form.
21
	///          resources associated with this form.
22
	/// </summary>
22
	/// </summary>
-
 
23
	/// 
-
 
24
 
-
 
25
	ref class MainGui;
-
 
26
 
23
	public ref class PackageBrowser : public System::Windows::Forms::Form
27
	public ref class PackageBrowser : public System::Windows::Forms::Form
24
	{
28
	{
25
	public:
29
	public:
26
		PackageBrowser(CPackages *p, CLinkList<CBaseFile> *available, ImageList ^imageList)
30
		PackageBrowser(CPackages *p, CLinkList<CBaseFile> *available, ImageList ^imageList, MainGui ^mainGui)
27
		{
31
		{
28
			InitializeComponent();
32
			InitializeComponent();
29
 
33
 
-
 
34
			m_pMainGui = mainGui;
30
			m_sCurrentDir = _US(p->getCurrentDirectory());
35
			m_sCurrentDir = _US(p->getCurrentDirectory());
31
			m_pImageList = imageList;
36
			m_pImageList = imageList;
32
			m_bReverse = false;
37
			m_bReverse = false;
33
			m_iLastCol = 0;
38
			m_iLastCol = 0;
34
			m_lAvailablePackages = available;
39
			m_lAvailablePackages = available;
Line 146... Line 151...
146
 
151
 
147
		bool m_bReverse;
152
		bool m_bReverse;
148
		int m_iLastCol;
153
		int m_iLastCol;
149
		ImageList ^m_pImageList;
154
		ImageList ^m_pImageList;
150
		String ^m_sCurrentDir;
155
		String ^m_sCurrentDir;
-
 
156
		MainGui^ m_pMainGui;
151
private: System::ComponentModel::IContainer^  components;
157
private: System::ComponentModel::IContainer^  components;
152
 
158
 
153
		/// <summary>
159
		/// <summary>
154
		/// Required designer variable.
160
		/// Required designer variable.
155
		/// </summary>
161
		/// </summary>