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 |
#include <spk.h>
|
|
|
11 |
|
|
|
12 |
namespace SpkExplorer {
|
|
|
13 |
|
|
|
14 |
/// <summary>
|
|
|
15 |
/// Summary for PackageInfo
|
|
|
16 |
///
|
|
|
17 |
/// WARNING: If you change the name of this class, you will need to change the
|
|
|
18 |
/// 'Resource File Name' property for the managed resource compiler tool
|
|
|
19 |
/// associated with all .resx files this class depends on. Otherwise,
|
|
|
20 |
/// the designers will not be able to interact properly with localized
|
|
|
21 |
/// resources associated with this form.
|
|
|
22 |
/// </summary>
|
|
|
23 |
public ref class PackageInfo : public System::Windows::Forms::Form
|
|
|
24 |
{
|
|
|
25 |
public:
|
|
|
26 |
PackageInfo(CBaseFile *p, int lang)
|
|
|
27 |
{
|
|
|
28 |
InitializeComponent();
|
|
|
29 |
|
|
|
30 |
m_pPackage = p;
|
|
|
31 |
m_iLang = lang;
|
|
|
32 |
|
|
|
33 |
if ( p )
|
|
|
34 |
this->UpdatePackage();
|
|
|
35 |
else
|
|
|
36 |
this->Close();
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
protected:
|
|
|
40 |
/// <summary>
|
|
|
41 |
/// Clean up any resources being used.
|
|
|
42 |
/// </summary>
|
|
|
43 |
~PackageInfo()
|
|
|
44 |
{
|
|
|
45 |
if (components)
|
|
|
46 |
{
|
|
|
47 |
delete components;
|
|
|
48 |
}
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
void UpdatePackage()
|
|
|
52 |
{
|
171 |
cycrow |
53 |
this->label2->Text = _US(m_pPackage->name(m_iLang));
|
50 |
cycrow |
54 |
this->label3->Text = _US(m_pPackage->author());
|
|
|
55 |
this->label5->Text = _US(m_pPackage->version());
|
|
|
56 |
if ( m_pPackage->creationDate().empty() )
|
1 |
cycrow |
57 |
this->label7->Text = "(none)";
|
|
|
58 |
else
|
50 |
cycrow |
59 |
this->label7->Text = _US(m_pPackage->creationDate());
|
48 |
cycrow |
60 |
if ( m_pPackage->description().empty() )
|
1 |
cycrow |
61 |
this->label9->Text = "(no description)";
|
|
|
62 |
else
|
226 |
cycrow |
63 |
this->label9->Text = _US(m_pPackage->description().findReplace(L"<br>", L"\n").stripHtml());
|
1 |
cycrow |
64 |
|
|
|
65 |
if ( m_pPackage->GetType() == TYPE_SPK )
|
|
|
66 |
{
|
214 |
cycrow |
67 |
this->label11->Text = _US(((CSpkFile *)m_pPackage)->scriptTypeString(m_iLang));
|
48 |
cycrow |
68 |
switch ( m_pPackage->pluginType() )
|
1 |
cycrow |
69 |
{
|
48 |
cycrow |
70 |
case PLUGIN_NORMAL: this->LabelPlugin->Text = "Normal"; break;
|
|
|
71 |
case PLUGIN_STABLE: this->LabelPlugin->Text = "Stable"; break;
|
|
|
72 |
case PLUGIN_EXPERIMENTAL: this->LabelPlugin->Text = "Experimental";break;
|
|
|
73 |
case PLUGIN_CHEAT: this->LabelPlugin->Text = "Cheat"; break;
|
|
|
74 |
case PLUGIN_MOD: this->LabelPlugin->Text = "Mod"; break;
|
1 |
cycrow |
75 |
}
|
|
|
76 |
}
|
|
|
77 |
else if ( m_pPackage->GetType() == TYPE_XSP )
|
|
|
78 |
{
|
|
|
79 |
this->label11->Text = "Ship";
|
|
|
80 |
this->LabelPlugin->Text = "Ship";
|
|
|
81 |
}
|
|
|
82 |
else
|
|
|
83 |
{
|
|
|
84 |
this->label11->Text = "Generic Package";
|
|
|
85 |
this->LabelPlugin->Text = "";
|
|
|
86 |
}
|
|
|
87 |
|
|
|
88 |
CPackages p;
|
226 |
cycrow |
89 |
p.startup(L"", L"", L"", L"");
|
1 |
cycrow |
90 |
|
|
|
91 |
if ( !m_pPackage->AnyGameCompatability() )
|
|
|
92 |
this->label13->Text = "All X Games";
|
|
|
93 |
else
|
152 |
cycrow |
94 |
this->label13->Text = _US(p.getGameTypesString(m_pPackage, true));
|
1 |
cycrow |
95 |
|
|
|
96 |
if ( m_pPackage->IsSigned() )
|
|
|
97 |
this->panel11->Show();
|
|
|
98 |
else
|
|
|
99 |
this->panel11->Hide();
|
|
|
100 |
}
|
|
|
101 |
|
|
|
102 |
CBaseFile *m_pPackage;
|
|
|
103 |
int m_iLang;
|
|
|
104 |
|
|
|
105 |
private: System::Windows::Forms::Label^ label1;
|
|
|
106 |
private: System::Windows::Forms::Panel^ panel1;
|
|
|
107 |
private: System::Windows::Forms::Label^ label2;
|
|
|
108 |
private: System::Windows::Forms::Panel^ panel2;
|
|
|
109 |
private: System::Windows::Forms::Panel^ panel5;
|
|
|
110 |
private: System::Windows::Forms::Label^ label7;
|
|
|
111 |
private: System::Windows::Forms::Label^ label8;
|
|
|
112 |
private: System::Windows::Forms::Panel^ panel4;
|
|
|
113 |
private: System::Windows::Forms::Label^ label5;
|
|
|
114 |
private: System::Windows::Forms::Label^ label6;
|
|
|
115 |
private: System::Windows::Forms::Panel^ panel3;
|
|
|
116 |
private: System::Windows::Forms::Label^ label3;
|
|
|
117 |
private: System::Windows::Forms::Label^ label4;
|
|
|
118 |
private: System::Windows::Forms::Button^ button1;
|
|
|
119 |
private: System::Windows::Forms::Panel^ panel6;
|
|
|
120 |
private: System::Windows::Forms::Panel^ panel7;
|
|
|
121 |
private: System::Windows::Forms::Label^ label9;
|
|
|
122 |
private: System::Windows::Forms::Label^ label10;
|
|
|
123 |
private: System::Windows::Forms::Panel^ panel8;
|
|
|
124 |
private: System::Windows::Forms::Label^ label11;
|
|
|
125 |
private: System::Windows::Forms::Label^ label12;
|
|
|
126 |
private: System::Windows::Forms::Panel^ panel9;
|
|
|
127 |
private: System::Windows::Forms::Label^ label13;
|
|
|
128 |
private: System::Windows::Forms::Label^ label14;
|
|
|
129 |
private: System::Windows::Forms::Panel^ panel10;
|
|
|
130 |
private: System::Windows::Forms::Label^ LabelPlugin;
|
|
|
131 |
private: System::Windows::Forms::Label^ label16;
|
|
|
132 |
private: System::Windows::Forms::Panel^ panel11;
|
|
|
133 |
private: System::Windows::Forms::Label^ label17;
|
|
|
134 |
|
|
|
135 |
/// <summary>
|
|
|
136 |
/// Required designer variable.
|
|
|
137 |
/// </summary>
|
|
|
138 |
System::ComponentModel::Container ^components;
|
|
|
139 |
|
|
|
140 |
#pragma region Windows Form Designer generated code
|
|
|
141 |
/// <summary>
|
|
|
142 |
/// Required method for Designer support - do not modify
|
|
|
143 |
/// the contents of this method with the code editor.
|
|
|
144 |
/// </summary>
|
|
|
145 |
void InitializeComponent(void)
|
|
|
146 |
{
|
|
|
147 |
this->label1 = (gcnew System::Windows::Forms::Label());
|
|
|
148 |
this->panel1 = (gcnew System::Windows::Forms::Panel());
|
|
|
149 |
this->label2 = (gcnew System::Windows::Forms::Label());
|
|
|
150 |
this->panel2 = (gcnew System::Windows::Forms::Panel());
|
|
|
151 |
this->panel9 = (gcnew System::Windows::Forms::Panel());
|
|
|
152 |
this->label13 = (gcnew System::Windows::Forms::Label());
|
|
|
153 |
this->label14 = (gcnew System::Windows::Forms::Label());
|
|
|
154 |
this->panel7 = (gcnew System::Windows::Forms::Panel());
|
|
|
155 |
this->label9 = (gcnew System::Windows::Forms::Label());
|
|
|
156 |
this->label10 = (gcnew System::Windows::Forms::Label());
|
|
|
157 |
this->panel10 = (gcnew System::Windows::Forms::Panel());
|
|
|
158 |
this->LabelPlugin = (gcnew System::Windows::Forms::Label());
|
|
|
159 |
this->label16 = (gcnew System::Windows::Forms::Label());
|
|
|
160 |
this->panel8 = (gcnew System::Windows::Forms::Panel());
|
|
|
161 |
this->label11 = (gcnew System::Windows::Forms::Label());
|
|
|
162 |
this->label12 = (gcnew System::Windows::Forms::Label());
|
|
|
163 |
this->panel5 = (gcnew System::Windows::Forms::Panel());
|
|
|
164 |
this->label7 = (gcnew System::Windows::Forms::Label());
|
|
|
165 |
this->label8 = (gcnew System::Windows::Forms::Label());
|
|
|
166 |
this->panel4 = (gcnew System::Windows::Forms::Panel());
|
|
|
167 |
this->label5 = (gcnew System::Windows::Forms::Label());
|
|
|
168 |
this->label6 = (gcnew System::Windows::Forms::Label());
|
|
|
169 |
this->panel3 = (gcnew System::Windows::Forms::Panel());
|
|
|
170 |
this->label3 = (gcnew System::Windows::Forms::Label());
|
|
|
171 |
this->label4 = (gcnew System::Windows::Forms::Label());
|
|
|
172 |
this->button1 = (gcnew System::Windows::Forms::Button());
|
|
|
173 |
this->panel6 = (gcnew System::Windows::Forms::Panel());
|
|
|
174 |
this->panel11 = (gcnew System::Windows::Forms::Panel());
|
|
|
175 |
this->label17 = (gcnew System::Windows::Forms::Label());
|
|
|
176 |
this->panel1->SuspendLayout();
|
|
|
177 |
this->panel2->SuspendLayout();
|
|
|
178 |
this->panel9->SuspendLayout();
|
|
|
179 |
this->panel7->SuspendLayout();
|
|
|
180 |
this->panel10->SuspendLayout();
|
|
|
181 |
this->panel8->SuspendLayout();
|
|
|
182 |
this->panel5->SuspendLayout();
|
|
|
183 |
this->panel4->SuspendLayout();
|
|
|
184 |
this->panel3->SuspendLayout();
|
|
|
185 |
this->panel6->SuspendLayout();
|
|
|
186 |
this->panel11->SuspendLayout();
|
|
|
187 |
this->SuspendLayout();
|
|
|
188 |
//
|
|
|
189 |
// label1
|
|
|
190 |
//
|
|
|
191 |
this->label1->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
192 |
this->label1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
193 |
static_cast<System::Byte>(0)));
|
|
|
194 |
this->label1->Location = System::Drawing::Point(0, 5);
|
|
|
195 |
this->label1->Name = L"label1";
|
|
|
196 |
this->label1->Size = System::Drawing::Size(139, 18);
|
|
|
197 |
this->label1->TabIndex = 0;
|
|
|
198 |
this->label1->Text = L"Package Name";
|
|
|
199 |
this->label1->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
200 |
//
|
|
|
201 |
// panel1
|
|
|
202 |
//
|
|
|
203 |
this->panel1->Controls->Add(this->label2);
|
|
|
204 |
this->panel1->Controls->Add(this->label1);
|
|
|
205 |
this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
206 |
this->panel1->Location = System::Drawing::Point(10, 10);
|
|
|
207 |
this->panel1->Name = L"panel1";
|
|
|
208 |
this->panel1->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
209 |
this->panel1->Size = System::Drawing::Size(465, 28);
|
|
|
210 |
this->panel1->TabIndex = 1;
|
|
|
211 |
//
|
|
|
212 |
// label2
|
|
|
213 |
//
|
|
|
214 |
this->label2->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
215 |
this->label2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
216 |
static_cast<System::Byte>(0)));
|
|
|
217 |
this->label2->Location = System::Drawing::Point(139, 5);
|
|
|
218 |
this->label2->Name = L"label2";
|
|
|
219 |
this->label2->Size = System::Drawing::Size(326, 18);
|
|
|
220 |
this->label2->TabIndex = 1;
|
|
|
221 |
this->label2->Text = L"label2";
|
|
|
222 |
this->label2->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
223 |
//
|
|
|
224 |
// panel2
|
|
|
225 |
//
|
|
|
226 |
this->panel2->BorderStyle = System::Windows::Forms::BorderStyle::Fixed3D;
|
|
|
227 |
this->panel2->Controls->Add(this->panel11);
|
|
|
228 |
this->panel2->Controls->Add(this->panel9);
|
|
|
229 |
this->panel2->Controls->Add(this->panel7);
|
|
|
230 |
this->panel2->Controls->Add(this->panel10);
|
|
|
231 |
this->panel2->Controls->Add(this->panel8);
|
|
|
232 |
this->panel2->Controls->Add(this->panel5);
|
|
|
233 |
this->panel2->Controls->Add(this->panel4);
|
|
|
234 |
this->panel2->Controls->Add(this->panel3);
|
|
|
235 |
this->panel2->Controls->Add(this->panel1);
|
|
|
236 |
this->panel2->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
237 |
this->panel2->Location = System::Drawing::Point(0, 0);
|
|
|
238 |
this->panel2->Name = L"panel2";
|
|
|
239 |
this->panel2->Padding = System::Windows::Forms::Padding(10);
|
|
|
240 |
this->panel2->Size = System::Drawing::Size(489, 331);
|
|
|
241 |
this->panel2->TabIndex = 2;
|
|
|
242 |
//
|
|
|
243 |
// panel9
|
|
|
244 |
//
|
|
|
245 |
this->panel9->Controls->Add(this->label13);
|
|
|
246 |
this->panel9->Controls->Add(this->label14);
|
|
|
247 |
this->panel9->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
248 |
this->panel9->Location = System::Drawing::Point(10, 261);
|
|
|
249 |
this->panel9->Name = L"panel9";
|
|
|
250 |
this->panel9->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
251 |
this->panel9->Size = System::Drawing::Size(465, 28);
|
|
|
252 |
this->panel9->TabIndex = 7;
|
|
|
253 |
//
|
|
|
254 |
// label13
|
|
|
255 |
//
|
|
|
256 |
this->label13->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
257 |
this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
258 |
static_cast<System::Byte>(0)));
|
|
|
259 |
this->label13->Location = System::Drawing::Point(139, 5);
|
|
|
260 |
this->label13->Name = L"label13";
|
|
|
261 |
this->label13->Size = System::Drawing::Size(326, 18);
|
|
|
262 |
this->label13->TabIndex = 1;
|
|
|
263 |
this->label13->Text = L"label13";
|
|
|
264 |
this->label13->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
265 |
//
|
|
|
266 |
// label14
|
|
|
267 |
//
|
|
|
268 |
this->label14->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
269 |
this->label14->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
270 |
static_cast<System::Byte>(0)));
|
|
|
271 |
this->label14->Location = System::Drawing::Point(0, 5);
|
|
|
272 |
this->label14->Name = L"label14";
|
|
|
273 |
this->label14->Size = System::Drawing::Size(139, 18);
|
|
|
274 |
this->label14->TabIndex = 0;
|
|
|
275 |
this->label14->Text = L"Game Requied";
|
|
|
276 |
this->label14->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
277 |
//
|
|
|
278 |
// panel7
|
|
|
279 |
//
|
|
|
280 |
this->panel7->Controls->Add(this->label9);
|
|
|
281 |
this->panel7->Controls->Add(this->label10);
|
|
|
282 |
this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
283 |
this->panel7->Location = System::Drawing::Point(10, 179);
|
|
|
284 |
this->panel7->Name = L"panel7";
|
|
|
285 |
this->panel7->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
286 |
this->panel7->Size = System::Drawing::Size(465, 82);
|
|
|
287 |
this->panel7->TabIndex = 5;
|
|
|
288 |
//
|
|
|
289 |
// label9
|
|
|
290 |
//
|
|
|
291 |
this->label9->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
292 |
this->label9->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
293 |
static_cast<System::Byte>(0)));
|
|
|
294 |
this->label9->Location = System::Drawing::Point(139, 5);
|
|
|
295 |
this->label9->Name = L"label9";
|
|
|
296 |
this->label9->Size = System::Drawing::Size(326, 72);
|
|
|
297 |
this->label9->TabIndex = 1;
|
|
|
298 |
this->label9->Text = L"label9";
|
|
|
299 |
this->label9->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
300 |
//
|
|
|
301 |
// label10
|
|
|
302 |
//
|
|
|
303 |
this->label10->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
304 |
this->label10->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
305 |
static_cast<System::Byte>(0)));
|
|
|
306 |
this->label10->Location = System::Drawing::Point(0, 5);
|
|
|
307 |
this->label10->Name = L"label10";
|
|
|
308 |
this->label10->Size = System::Drawing::Size(139, 72);
|
|
|
309 |
this->label10->TabIndex = 0;
|
|
|
310 |
this->label10->Text = L"Description";
|
|
|
311 |
this->label10->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
312 |
//
|
|
|
313 |
// panel10
|
|
|
314 |
//
|
|
|
315 |
this->panel10->Controls->Add(this->LabelPlugin);
|
|
|
316 |
this->panel10->Controls->Add(this->label16);
|
|
|
317 |
this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
318 |
this->panel10->Location = System::Drawing::Point(10, 151);
|
|
|
319 |
this->panel10->Name = L"panel10";
|
|
|
320 |
this->panel10->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
321 |
this->panel10->Size = System::Drawing::Size(465, 28);
|
|
|
322 |
this->panel10->TabIndex = 8;
|
|
|
323 |
//
|
|
|
324 |
// LabelPlugin
|
|
|
325 |
//
|
|
|
326 |
this->LabelPlugin->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
327 |
this->LabelPlugin->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
328 |
static_cast<System::Byte>(0)));
|
|
|
329 |
this->LabelPlugin->Location = System::Drawing::Point(139, 5);
|
|
|
330 |
this->LabelPlugin->Name = L"LabelPlugin";
|
|
|
331 |
this->LabelPlugin->Size = System::Drawing::Size(326, 18);
|
|
|
332 |
this->LabelPlugin->TabIndex = 1;
|
|
|
333 |
this->LabelPlugin->Text = L"label15";
|
|
|
334 |
this->LabelPlugin->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
335 |
//
|
|
|
336 |
// label16
|
|
|
337 |
//
|
|
|
338 |
this->label16->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
339 |
this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
340 |
static_cast<System::Byte>(0)));
|
|
|
341 |
this->label16->Location = System::Drawing::Point(0, 5);
|
|
|
342 |
this->label16->Name = L"label16";
|
|
|
343 |
this->label16->Size = System::Drawing::Size(139, 18);
|
|
|
344 |
this->label16->TabIndex = 0;
|
|
|
345 |
this->label16->Text = L"Plugin Type";
|
|
|
346 |
this->label16->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
347 |
//
|
|
|
348 |
// panel8
|
|
|
349 |
//
|
|
|
350 |
this->panel8->Controls->Add(this->label11);
|
|
|
351 |
this->panel8->Controls->Add(this->label12);
|
|
|
352 |
this->panel8->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
353 |
this->panel8->Location = System::Drawing::Point(10, 123);
|
|
|
354 |
this->panel8->Name = L"panel8";
|
|
|
355 |
this->panel8->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
356 |
this->panel8->Size = System::Drawing::Size(465, 28);
|
|
|
357 |
this->panel8->TabIndex = 6;
|
|
|
358 |
//
|
|
|
359 |
// label11
|
|
|
360 |
//
|
|
|
361 |
this->label11->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
362 |
this->label11->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
363 |
static_cast<System::Byte>(0)));
|
|
|
364 |
this->label11->Location = System::Drawing::Point(139, 5);
|
|
|
365 |
this->label11->Name = L"label11";
|
|
|
366 |
this->label11->Size = System::Drawing::Size(326, 18);
|
|
|
367 |
this->label11->TabIndex = 1;
|
|
|
368 |
this->label11->Text = L"label11";
|
|
|
369 |
this->label11->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
370 |
//
|
|
|
371 |
// label12
|
|
|
372 |
//
|
|
|
373 |
this->label12->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
374 |
this->label12->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
375 |
static_cast<System::Byte>(0)));
|
|
|
376 |
this->label12->Location = System::Drawing::Point(0, 5);
|
|
|
377 |
this->label12->Name = L"label12";
|
|
|
378 |
this->label12->Size = System::Drawing::Size(139, 18);
|
|
|
379 |
this->label12->TabIndex = 0;
|
|
|
380 |
this->label12->Text = L"Package Type";
|
|
|
381 |
this->label12->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
382 |
//
|
|
|
383 |
// panel5
|
|
|
384 |
//
|
|
|
385 |
this->panel5->Controls->Add(this->label7);
|
|
|
386 |
this->panel5->Controls->Add(this->label8);
|
|
|
387 |
this->panel5->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
388 |
this->panel5->Location = System::Drawing::Point(10, 95);
|
|
|
389 |
this->panel5->Name = L"panel5";
|
|
|
390 |
this->panel5->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
391 |
this->panel5->Size = System::Drawing::Size(465, 28);
|
|
|
392 |
this->panel5->TabIndex = 4;
|
|
|
393 |
//
|
|
|
394 |
// label7
|
|
|
395 |
//
|
|
|
396 |
this->label7->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
397 |
this->label7->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
398 |
static_cast<System::Byte>(0)));
|
|
|
399 |
this->label7->Location = System::Drawing::Point(139, 5);
|
|
|
400 |
this->label7->Name = L"label7";
|
|
|
401 |
this->label7->Size = System::Drawing::Size(326, 18);
|
|
|
402 |
this->label7->TabIndex = 1;
|
|
|
403 |
this->label7->Text = L"label7";
|
|
|
404 |
this->label7->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
405 |
//
|
|
|
406 |
// label8
|
|
|
407 |
//
|
|
|
408 |
this->label8->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
409 |
this->label8->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
410 |
static_cast<System::Byte>(0)));
|
|
|
411 |
this->label8->Location = System::Drawing::Point(0, 5);
|
|
|
412 |
this->label8->Name = L"label8";
|
|
|
413 |
this->label8->Size = System::Drawing::Size(139, 18);
|
|
|
414 |
this->label8->TabIndex = 0;
|
|
|
415 |
this->label8->Text = L"Creation Date";
|
|
|
416 |
this->label8->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
417 |
//
|
|
|
418 |
// panel4
|
|
|
419 |
//
|
|
|
420 |
this->panel4->Controls->Add(this->label5);
|
|
|
421 |
this->panel4->Controls->Add(this->label6);
|
|
|
422 |
this->panel4->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
423 |
this->panel4->Location = System::Drawing::Point(10, 64);
|
|
|
424 |
this->panel4->Name = L"panel4";
|
|
|
425 |
this->panel4->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
426 |
this->panel4->Size = System::Drawing::Size(465, 31);
|
|
|
427 |
this->panel4->TabIndex = 3;
|
|
|
428 |
//
|
|
|
429 |
// label5
|
|
|
430 |
//
|
|
|
431 |
this->label5->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
432 |
this->label5->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
433 |
static_cast<System::Byte>(0)));
|
|
|
434 |
this->label5->Location = System::Drawing::Point(139, 5);
|
|
|
435 |
this->label5->Name = L"label5";
|
|
|
436 |
this->label5->Size = System::Drawing::Size(326, 21);
|
|
|
437 |
this->label5->TabIndex = 1;
|
|
|
438 |
this->label5->Text = L"label5";
|
|
|
439 |
this->label5->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
440 |
//
|
|
|
441 |
// label6
|
|
|
442 |
//
|
|
|
443 |
this->label6->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
444 |
this->label6->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
445 |
static_cast<System::Byte>(0)));
|
|
|
446 |
this->label6->Location = System::Drawing::Point(0, 5);
|
|
|
447 |
this->label6->Name = L"label6";
|
|
|
448 |
this->label6->Size = System::Drawing::Size(139, 21);
|
|
|
449 |
this->label6->TabIndex = 0;
|
|
|
450 |
this->label6->Text = L"Version";
|
|
|
451 |
this->label6->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
452 |
//
|
|
|
453 |
// panel3
|
|
|
454 |
//
|
|
|
455 |
this->panel3->Controls->Add(this->label3);
|
|
|
456 |
this->panel3->Controls->Add(this->label4);
|
|
|
457 |
this->panel3->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
458 |
this->panel3->Location = System::Drawing::Point(10, 38);
|
|
|
459 |
this->panel3->Name = L"panel3";
|
|
|
460 |
this->panel3->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
461 |
this->panel3->Size = System::Drawing::Size(465, 26);
|
|
|
462 |
this->panel3->TabIndex = 2;
|
|
|
463 |
//
|
|
|
464 |
// label3
|
|
|
465 |
//
|
|
|
466 |
this->label3->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
467 |
this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
|
|
|
468 |
static_cast<System::Byte>(0)));
|
|
|
469 |
this->label3->Location = System::Drawing::Point(139, 5);
|
|
|
470 |
this->label3->Name = L"label3";
|
|
|
471 |
this->label3->Size = System::Drawing::Size(326, 16);
|
|
|
472 |
this->label3->TabIndex = 1;
|
|
|
473 |
this->label3->Text = L"label3";
|
|
|
474 |
this->label3->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
475 |
//
|
|
|
476 |
// label4
|
|
|
477 |
//
|
|
|
478 |
this->label4->Dock = System::Windows::Forms::DockStyle::Left;
|
|
|
479 |
this->label4->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
480 |
static_cast<System::Byte>(0)));
|
|
|
481 |
this->label4->Location = System::Drawing::Point(0, 5);
|
|
|
482 |
this->label4->Name = L"label4";
|
|
|
483 |
this->label4->Size = System::Drawing::Size(139, 16);
|
|
|
484 |
this->label4->TabIndex = 0;
|
|
|
485 |
this->label4->Text = L"Package Author";
|
|
|
486 |
this->label4->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
|
|
487 |
//
|
|
|
488 |
// button1
|
|
|
489 |
//
|
|
|
490 |
this->button1->DialogResult = System::Windows::Forms::DialogResult::OK;
|
|
|
491 |
this->button1->Dock = System::Windows::Forms::DockStyle::Right;
|
|
|
492 |
this->button1->Location = System::Drawing::Point(387, 5);
|
|
|
493 |
this->button1->Name = L"button1";
|
|
|
494 |
this->button1->Size = System::Drawing::Size(97, 34);
|
|
|
495 |
this->button1->TabIndex = 5;
|
|
|
496 |
this->button1->Text = L"Close";
|
|
|
497 |
this->button1->UseVisualStyleBackColor = true;
|
|
|
498 |
//
|
|
|
499 |
// panel6
|
|
|
500 |
//
|
|
|
501 |
this->panel6->Controls->Add(this->button1);
|
|
|
502 |
this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
|
|
|
503 |
this->panel6->Location = System::Drawing::Point(0, 331);
|
|
|
504 |
this->panel6->Name = L"panel6";
|
|
|
505 |
this->panel6->Padding = System::Windows::Forms::Padding(5);
|
|
|
506 |
this->panel6->Size = System::Drawing::Size(489, 44);
|
|
|
507 |
this->panel6->TabIndex = 4;
|
|
|
508 |
//
|
|
|
509 |
// panel11
|
|
|
510 |
//
|
|
|
511 |
this->panel11->Controls->Add(this->label17);
|
|
|
512 |
this->panel11->Dock = System::Windows::Forms::DockStyle::Top;
|
|
|
513 |
this->panel11->Location = System::Drawing::Point(10, 289);
|
|
|
514 |
this->panel11->Name = L"panel11";
|
|
|
515 |
this->panel11->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
|
|
|
516 |
this->panel11->Size = System::Drawing::Size(465, 28);
|
|
|
517 |
this->panel11->TabIndex = 9;
|
|
|
518 |
//
|
|
|
519 |
// label17
|
|
|
520 |
//
|
|
|
521 |
this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
|
|
|
522 |
this->label17->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
|
|
523 |
static_cast<System::Byte>(0)));
|
|
|
524 |
this->label17->Location = System::Drawing::Point(0, 5);
|
|
|
525 |
this->label17->Name = L"label17";
|
|
|
526 |
this->label17->Size = System::Drawing::Size(465, 18);
|
|
|
527 |
this->label17->TabIndex = 0;
|
|
|
528 |
this->label17->Text = L"This Package is Signed";
|
|
|
529 |
this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleCenter;
|
|
|
530 |
//
|
|
|
531 |
// PackageInfo
|
|
|
532 |
//
|
|
|
533 |
this->AcceptButton = this->button1;
|
|
|
534 |
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
|
|
|
535 |
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
|
|
|
536 |
this->ClientSize = System::Drawing::Size(489, 375);
|
|
|
537 |
this->Controls->Add(this->panel2);
|
|
|
538 |
this->Controls->Add(this->panel6);
|
|
|
539 |
this->Name = L"PackageInfo";
|
|
|
540 |
this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
|
|
|
541 |
this->Text = L"Package Info";
|
|
|
542 |
this->panel1->ResumeLayout(false);
|
|
|
543 |
this->panel2->ResumeLayout(false);
|
|
|
544 |
this->panel9->ResumeLayout(false);
|
|
|
545 |
this->panel7->ResumeLayout(false);
|
|
|
546 |
this->panel10->ResumeLayout(false);
|
|
|
547 |
this->panel8->ResumeLayout(false);
|
|
|
548 |
this->panel5->ResumeLayout(false);
|
|
|
549 |
this->panel4->ResumeLayout(false);
|
|
|
550 |
this->panel3->ResumeLayout(false);
|
|
|
551 |
this->panel6->ResumeLayout(false);
|
|
|
552 |
this->panel11->ResumeLayout(false);
|
|
|
553 |
this->ResumeLayout(false);
|
|
|
554 |
|
|
|
555 |
}
|
|
|
556 |
#pragma endregion
|
|
|
557 |
};
|
|
|
558 |
}
|