Line 37... |
Line 37... |
37 |
/// the designers will not be able to interact properly with localized
|
37 |
/// the designers will not be able to interact properly with localized
|
38 |
/// resources associated with this form.
|
38 |
/// resources associated with this form.
|
39 |
/// </summary>
|
39 |
/// </summary>
|
40 |
///
|
40 |
///
|
41 |
public ref class PackageForm : public System::Windows::Forms::Form
|
41 |
public ref class PackageForm : public System::Windows::Forms::Form
|
- |
|
42 |
|
42 |
/*
|
43 |
/*
|
43 |
#ifdef DESIGNER
|
44 |
#ifdef DESIGNER
|
- |
|
45 |
public ref class PackageForm : public System::Windows::Forms::Form
|
44 |
#else
|
46 |
#else
|
45 |
public ref class PackageForm : public Creator::BaseForm
|
47 |
public ref class PackageForm : public Creator::BaseForm
|
46 |
#endif
|
48 |
#endif
|
47 |
*/
|
49 |
*/
|
48 |
{
|
50 |
{
|
49 |
public:
|
51 |
public:
|
50 |
PackageForm(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)
|
52 |
PackageForm(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)
|
51 |
/*
|
- |
|
52 |
#ifndef DESIGNER
|
53 |
#ifndef DESIGNER
|
53 |
: BaseForm(parent, ctrl, page, tool, p, imagelist, set),
|
54 |
: BaseForm(parent, ctrl, page, tool, p, imagelist, set),
|
54 |
_addGameItem(nullptr),
|
55 |
_addGameItem(nullptr),
|
55 |
_removeGameItem(nullptr)
|
56 |
_removeGameItem(nullptr)
|
56 |
#endif
|
57 |
#endif
|
57 |
*/
|
58 |
|
58 |
{
|
59 |
{
|
59 |
InitializeComponent();
|
60 |
InitializeComponent();
|
60 |
m_pSettings = set;
|
61 |
m_pSettings = set;
|
61 |
_init();
|
62 |
_init();
|
62 |
}
|
63 |
}
|
63 |
|
64 |
|
64 |
void _init();
|
65 |
void _init();
|
65 |
|
66 |
|
66 |
void SetImageLists(ImageList ^smallList, ImageList ^largeList, ImageList ^gameList, ImageList ^fileList);
|
67 |
void SetImageLists(ImageList ^smallList, ImageList ^largeList, ImageList ^gameList, ImageList ^fileList);
|
67 |
CGameDirectories *gameDirectories();
|
68 |
CGameDirectories *gameDirectories();
|
68 |
|
69 |
|
69 |
void CreateShip() {
|
70 |
void CreateShip() {
|
70 |
if ( m_pPackage ) delete m_pPackage;
|
71 |
if ( m_pPackage ) delete m_pPackage;
|
Line 93... |
Line 94... |
93 |
return;
|
94 |
return;
|
94 |
|
95 |
|
95 |
String ^text = _US(CFileIO(m_pPackage->filename()).filename());
|
96 |
String ^text = _US(CFileIO(m_pPackage->filename()).filename());
|
96 |
String ^addonText = "";
|
97 |
String ^addonText = "";
|
97 |
if ( text->Length < 1 )
|
98 |
if ( text->Length < 1 )
|
98 |
{
|
99 |
{
|
99 |
if ( m_pPackage->GetType() == TYPE_XSP )
|
100 |
if ( m_pPackage->GetType() == TYPE_XSP )
|
100 |
text = "New Ship";
|
101 |
text = "New Ship";
|
101 |
else
|
102 |
else
|
102 |
text = "New Package";
|
103 |
text = "New Package";
|
103 |
}
|
104 |
}
|
Line 171... |
Line 172... |
171 |
void UpdateWareText();
|
172 |
void UpdateWareText();
|
172 |
void UpdateShipText();
|
173 |
void UpdateShipText();
|
173 |
void LoadShipData();
|
174 |
void LoadShipData();
|
174 |
void UpdateShipPartList();
|
175 |
void UpdateShipPartList();
|
175 |
void UpdateDependacies();
|
176 |
void UpdateDependacies();
|
- |
|
177 |
void UpdateGlobals();
|
176 |
void DoToolTips();
|
178 |
void DoToolTips();
|
177 |
void EditShipParts(bool edit);
|
179 |
void EditShipParts(bool edit);
|
178 |
void RemoveSelectedFiles();
|
180 |
void RemoveSelectedFiles();
|
179 |
void UpdateScriptType();
|
181 |
void UpdateScriptType();
|
180 |
void ImportData(String ^file, int type);
|
182 |
void ImportData(String ^file, int type);
|
181 |
void ImportAnimations(String ^file);
|
183 |
void ImportAnimations(String ^file);
|
182 |
String ^ExtractImport(String ^text, String ^type);
|
184 |
String ^ExtractImport(String ^text, String ^type);
|
183 |
void EditDepend();
|
185 |
void EditDepend();
|
- |
|
186 |
void AddNewGlobal();
|
- |
|
187 |
void EditGlobal();
|
184 |
|
188 |
|
185 |
Windows::Forms::ImageList ^imageListFiles;
|
189 |
Windows::Forms::ImageList ^imageListFiles;
|
186 |
CBaseFile *m_pPackage;
|
190 |
CBaseFile *m_pPackage;
|
187 |
bool m_bSortingAsc;
|
191 |
bool m_bSortingAsc;
|
188 |
int m_iSortingCol;
|
192 |
int m_iSortingCol;
|
Line 467... |
Line 471... |
467 |
private: System::Windows::Forms::ColumnHeader^ columnHeader1;
|
471 |
private: System::Windows::Forms::ColumnHeader^ columnHeader1;
|
468 |
private: System::Windows::Forms::ColumnHeader^ columnHeader2;
|
472 |
private: System::Windows::Forms::ColumnHeader^ columnHeader2;
|
469 |
private: System::Windows::Forms::ColumnHeader^ columnHeader3;
|
473 |
private: System::Windows::Forms::ColumnHeader^ columnHeader3;
|
470 |
private: System::Windows::Forms::ColumnHeader^ columnHeader4;
|
474 |
private: System::Windows::Forms::ColumnHeader^ columnHeader4;
|
471 |
private: System::Windows::Forms::ColumnHeader^ columnHeader5;
|
475 |
private: System::Windows::Forms::ColumnHeader^ columnHeader5;
|
- |
|
476 |
private: System::Windows::Forms::TabPage^ tabGlobals;
|
- |
|
477 |
private: System::Windows::Forms::Button^ butGlobalClear;
|
- |
|
478 |
private: System::Windows::Forms::Button^ butAddGlobal;
|
- |
|
479 |
private: System::Windows::Forms::ListView^ listGlobals;
|
- |
|
480 |
private: System::Windows::Forms::ColumnHeader^ ColGlobalName;
|
- |
|
481 |
private: System::Windows::Forms::ColumnHeader^ ColGlobalValue;
|
- |
|
482 |
private: System::Windows::Forms::ContextMenuStrip^ contextGlobal;
|
- |
|
483 |
private: System::Windows::Forms::ToolStripMenuItem^ addNewToolStripMenuItem;
|
- |
|
484 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator6;
|
- |
|
485 |
private: System::Windows::Forms::ToolStripMenuItem^ editSelectedToolStripMenuItem1;
|
- |
|
486 |
private: System::Windows::Forms::ToolStripMenuItem^ removeSelectedToolStripMenuItem;
|
- |
|
487 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator7;
|
- |
|
488 |
private: System::Windows::Forms::ToolStripMenuItem^ clearAllToolStripMenuItem2;
|
- |
|
489 |
|
- |
|
490 |
|
- |
|
491 |
|
472 |
private: System::ComponentModel::IContainer^ components;
|
492 |
private: System::ComponentModel::IContainer^ components;
|
473 |
|
493 |
|
474 |
/// <summary>
|
494 |
/// <summary>
|
475 |
/// Required designer variable.
|
495 |
/// Required designer variable.
|
476 |
/// </summary>
|
496 |
/// </summary>
|
477 |
|
497 |
|
Line 730... |
Line 750... |
730 |
this->ContextShipPartSep2 = (gcnew System::Windows::Forms::ToolStripSeparator());
|
750 |
this->ContextShipPartSep2 = (gcnew System::Windows::Forms::ToolStripSeparator());
|
731 |
this->ContextShipPartClear = (gcnew System::Windows::Forms::ToolStripMenuItem());
|
751 |
this->ContextShipPartClear = (gcnew System::Windows::Forms::ToolStripMenuItem());
|
732 |
this->panel25 = (gcnew System::Windows::Forms::Panel());
|
752 |
this->panel25 = (gcnew System::Windows::Forms::Panel());
|
733 |
this->ComboShipPart = (gcnew System::Windows::Forms::ComboBox());
|
753 |
this->ComboShipPart = (gcnew System::Windows::Forms::ComboBox());
|
734 |
this->label18 = (gcnew System::Windows::Forms::Label());
|
754 |
this->label18 = (gcnew System::Windows::Forms::Label());
|
- |
|
755 |
this->tabGlobals = (gcnew System::Windows::Forms::TabPage());
|
- |
|
756 |
this->butGlobalClear = (gcnew System::Windows::Forms::Button());
|
- |
|
757 |
this->butAddGlobal = (gcnew System::Windows::Forms::Button());
|
- |
|
758 |
this->listGlobals = (gcnew System::Windows::Forms::ListView());
|
- |
|
759 |
this->ColGlobalName = (gcnew System::Windows::Forms::ColumnHeader());
|
- |
|
760 |
this->ColGlobalValue = (gcnew System::Windows::Forms::ColumnHeader());
|
- |
|
761 |
this->contextGlobal = (gcnew System::Windows::Forms::ContextMenuStrip(this->components));
|
- |
|
762 |
this->addNewToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
|
- |
|
763 |
this->toolStripSeparator6 = (gcnew System::Windows::Forms::ToolStripSeparator());
|
- |
|
764 |
this->editSelectedToolStripMenuItem1 = (gcnew System::Windows::Forms::ToolStripMenuItem());
|
- |
|
765 |
this->removeSelectedToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
|
- |
|
766 |
this->toolStripSeparator7 = (gcnew System::Windows::Forms::ToolStripSeparator());
|
- |
|
767 |
this->clearAllToolStripMenuItem2 = (gcnew System::Windows::Forms::ToolStripMenuItem());
|
735 |
this->CheckShipID = (gcnew System::Windows::Forms::CheckBox());
|
768 |
this->CheckShipID = (gcnew System::Windows::Forms::CheckBox());
|
736 |
this->panel1 = (gcnew System::Windows::Forms::Panel());
|
769 |
this->panel1 = (gcnew System::Windows::Forms::Panel());
|
737 |
this->TextName = (gcnew System::Windows::Forms::TextBox());
|
770 |
this->TextName = (gcnew System::Windows::Forms::TextBox());
|
738 |
this->label1 = (gcnew System::Windows::Forms::Label());
|
771 |
this->label1 = (gcnew System::Windows::Forms::Label());
|
739 |
this->panel2 = (gcnew System::Windows::Forms::Panel());
|
772 |
this->panel2 = (gcnew System::Windows::Forms::Panel());
|
Line 836... |
Line 869... |
836 |
this->flowLayoutPanel3->SuspendLayout();
|
869 |
this->flowLayoutPanel3->SuspendLayout();
|
837 |
this->PageShipComp->SuspendLayout();
|
870 |
this->PageShipComp->SuspendLayout();
|
838 |
this->panel26->SuspendLayout();
|
871 |
this->panel26->SuspendLayout();
|
839 |
this->ContextShipPart->SuspendLayout();
|
872 |
this->ContextShipPart->SuspendLayout();
|
840 |
this->panel25->SuspendLayout();
|
873 |
this->panel25->SuspendLayout();
|
- |
|
874 |
this->tabGlobals->SuspendLayout();
|
- |
|
875 |
this->contextGlobal->SuspendLayout();
|
841 |
this->panel1->SuspendLayout();
|
876 |
this->panel1->SuspendLayout();
|
842 |
this->panel2->SuspendLayout();
|
877 |
this->panel2->SuspendLayout();
|
843 |
this->panel3->SuspendLayout();
|
878 |
this->panel3->SuspendLayout();
|
844 |
this->panel4->SuspendLayout();
|
879 |
this->panel4->SuspendLayout();
|
845 |
this->PanelShip->SuspendLayout();
|
880 |
this->PanelShip->SuspendLayout();
|
Line 1080... |
Line 1115... |
1080 |
this->panel6->Controls->Add(this->button2);
|
1115 |
this->panel6->Controls->Add(this->button2);
|
1081 |
this->panel6->Controls->Add(this->button1);
|
1116 |
this->panel6->Controls->Add(this->button1);
|
1082 |
this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1117 |
this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1083 |
this->panel6->Location = System::Drawing::Point(3, 287);
|
1118 |
this->panel6->Location = System::Drawing::Point(3, 287);
|
1084 |
this->panel6->Name = L"panel6";
|
1119 |
this->panel6->Name = L"panel6";
|
1085 |
this->panel6->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
|
1120 |
this->panel6->Padding = System::Windows::Forms::Padding(5);
|
1086 |
this->panel6->Size = System::Drawing::Size(750, 40);
|
1121 |
this->panel6->Size = System::Drawing::Size(750, 40);
|
1087 |
this->panel6->TabIndex = 2;
|
1122 |
this->panel6->TabIndex = 2;
|
1088 |
//
|
1123 |
//
|
1089 |
// ButRemoveFile
|
1124 |
// ButRemoveFile
|
1090 |
//
|
1125 |
//
|
Line 1174... |
Line 1209... |
1174 |
this->tabControl1->Controls->Add(this->tabPage4);
|
1209 |
this->tabControl1->Controls->Add(this->tabPage4);
|
1175 |
this->tabControl1->Controls->Add(this->PageWares);
|
1210 |
this->tabControl1->Controls->Add(this->PageWares);
|
1176 |
this->tabControl1->Controls->Add(this->PageShip);
|
1211 |
this->tabControl1->Controls->Add(this->PageShip);
|
1177 |
this->tabControl1->Controls->Add(this->PageRaw);
|
1212 |
this->tabControl1->Controls->Add(this->PageRaw);
|
1178 |
this->tabControl1->Controls->Add(this->PageShipComp);
|
1213 |
this->tabControl1->Controls->Add(this->PageShipComp);
|
- |
|
1214 |
this->tabControl1->Controls->Add(this->tabGlobals);
|
1179 |
this->tabControl1->Dock = System::Windows::Forms::DockStyle::Top;
|
1215 |
this->tabControl1->Dock = System::Windows::Forms::DockStyle::Top;
|
1180 |
this->tabControl1->Location = System::Drawing::Point(5, 133);
|
1216 |
this->tabControl1->Location = System::Drawing::Point(5, 133);
|
1181 |
this->tabControl1->Margin = System::Windows::Forms::Padding(6, 6, 6, 6);
|
1217 |
this->tabControl1->Margin = System::Windows::Forms::Padding(6);
|
1182 |
this->tabControl1->Multiline = true;
|
1218 |
this->tabControl1->Multiline = true;
|
1183 |
this->tabControl1->Name = L"tabControl1";
|
1219 |
this->tabControl1->Name = L"tabControl1";
|
1184 |
this->tabControl1->SelectedIndex = 0;
|
1220 |
this->tabControl1->SelectedIndex = 0;
|
1185 |
this->tabControl1->Size = System::Drawing::Size(756, 242);
|
1221 |
this->tabControl1->Size = System::Drawing::Size(756, 242);
|
1186 |
this->tabControl1->TabIndex = 1;
|
1222 |
this->tabControl1->TabIndex = 1;
|
Line 1190... |
Line 1226... |
1190 |
this->tabPage1->Controls->Add(this->groupBox2);
|
1226 |
this->tabPage1->Controls->Add(this->groupBox2);
|
1191 |
this->tabPage1->Controls->Add(this->panel13);
|
1227 |
this->tabPage1->Controls->Add(this->panel13);
|
1192 |
this->tabPage1->Controls->Add(this->panel12);
|
1228 |
this->tabPage1->Controls->Add(this->panel12);
|
1193 |
this->tabPage1->Controls->Add(this->panel11);
|
1229 |
this->tabPage1->Controls->Add(this->panel11);
|
1194 |
this->tabPage1->Controls->Add(this->LabelShipWarning);
|
1230 |
this->tabPage1->Controls->Add(this->LabelShipWarning);
|
1195 |
this->tabPage1->Location = System::Drawing::Point(4, 22);
|
1231 |
this->tabPage1->Location = System::Drawing::Point(4, 40);
|
1196 |
this->tabPage1->Name = L"tabPage1";
|
1232 |
this->tabPage1->Name = L"tabPage1";
|
1197 |
this->tabPage1->Padding = System::Windows::Forms::Padding(8, 8, 8, 8);
|
1233 |
this->tabPage1->Padding = System::Windows::Forms::Padding(8);
|
1198 |
this->tabPage1->Size = System::Drawing::Size(748, 216);
|
1234 |
this->tabPage1->Size = System::Drawing::Size(748, 198);
|
1199 |
this->tabPage1->TabIndex = 0;
|
1235 |
this->tabPage1->TabIndex = 0;
|
1200 |
this->tabPage1->Text = L"Basic Settings";
|
1236 |
this->tabPage1->Text = L"Basic Settings";
|
1201 |
this->tabPage1->UseVisualStyleBackColor = true;
|
1237 |
this->tabPage1->UseVisualStyleBackColor = true;
|
1202 |
//
|
1238 |
//
|
1203 |
// groupBox2
|
1239 |
// groupBox2
|
1204 |
//
|
1240 |
//
|
1205 |
this->groupBox2->Controls->Add(this->TextDesc);
|
1241 |
this->groupBox2->Controls->Add(this->TextDesc);
|
1206 |
this->groupBox2->Dock = System::Windows::Forms::DockStyle::Fill;
|
1242 |
this->groupBox2->Dock = System::Windows::Forms::DockStyle::Fill;
|
1207 |
this->groupBox2->Location = System::Drawing::Point(8, 89);
|
1243 |
this->groupBox2->Location = System::Drawing::Point(8, 89);
|
1208 |
this->groupBox2->Name = L"groupBox2";
|
1244 |
this->groupBox2->Name = L"groupBox2";
|
1209 |
this->groupBox2->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
|
1245 |
this->groupBox2->Padding = System::Windows::Forms::Padding(5);
|
1210 |
this->groupBox2->Size = System::Drawing::Size(732, 119);
|
1246 |
this->groupBox2->Size = System::Drawing::Size(732, 101);
|
1211 |
this->groupBox2->TabIndex = 1;
|
1247 |
this->groupBox2->TabIndex = 1;
|
1212 |
this->groupBox2->TabStop = false;
|
1248 |
this->groupBox2->TabStop = false;
|
1213 |
this->groupBox2->Text = L"Description";
|
1249 |
this->groupBox2->Text = L"Description";
|
1214 |
//
|
1250 |
//
|
1215 |
// TextDesc
|
1251 |
// TextDesc
|
1216 |
//
|
1252 |
//
|
1217 |
this->TextDesc->Dock = System::Windows::Forms::DockStyle::Fill;
|
1253 |
this->TextDesc->Dock = System::Windows::Forms::DockStyle::Fill;
|
1218 |
this->TextDesc->Location = System::Drawing::Point(5, 18);
|
1254 |
this->TextDesc->Location = System::Drawing::Point(5, 18);
|
1219 |
this->TextDesc->Name = L"TextDesc";
|
1255 |
this->TextDesc->Name = L"TextDesc";
|
1220 |
this->TextDesc->Size = System::Drawing::Size(722, 96);
|
1256 |
this->TextDesc->Size = System::Drawing::Size(722, 78);
|
1221 |
this->TextDesc->TabIndex = 0;
|
1257 |
this->TextDesc->TabIndex = 0;
|
1222 |
this->TextDesc->Text = L"";
|
1258 |
this->TextDesc->Text = L"";
|
1223 |
this->TextDesc->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextDesc_TextChanged);
|
1259 |
this->TextDesc->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextDesc_TextChanged);
|
1224 |
//
|
1260 |
//
|
1225 |
// panel13
|
1261 |
// panel13
|
Line 1333... |
Line 1369... |
1333 |
//
|
1369 |
//
|
1334 |
// tabPage5
|
1370 |
// tabPage5
|
1335 |
//
|
1371 |
//
|
1336 |
this->tabPage5->Controls->Add(this->ListGames);
|
1372 |
this->tabPage5->Controls->Add(this->ListGames);
|
1337 |
this->tabPage5->Controls->Add(this->groupBox8);
|
1373 |
this->tabPage5->Controls->Add(this->groupBox8);
|
1338 |
this->tabPage5->Location = System::Drawing::Point(4, 22);
|
1374 |
this->tabPage5->Location = System::Drawing::Point(4, 40);
|
1339 |
this->tabPage5->Name = L"tabPage5";
|
1375 |
this->tabPage5->Name = L"tabPage5";
|
1340 |
this->tabPage5->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
1376 |
this->tabPage5->Padding = System::Windows::Forms::Padding(3);
|
1341 |
this->tabPage5->Size = System::Drawing::Size(747, 216);
|
1377 |
this->tabPage5->Size = System::Drawing::Size(748, 198);
|
1342 |
this->tabPage5->TabIndex = 10;
|
1378 |
this->tabPage5->TabIndex = 10;
|
1343 |
this->tabPage5->Text = L"Game Compatability";
|
1379 |
this->tabPage5->Text = L"Game Compatability";
|
1344 |
this->tabPage5->UseVisualStyleBackColor = true;
|
1380 |
this->tabPage5->UseVisualStyleBackColor = true;
|
1345 |
//
|
1381 |
//
|
1346 |
// ListGames
|
1382 |
// ListGames
|
Line 1350... |
Line 1386... |
1350 |
this->ListGames->FullRowSelect = true;
|
1386 |
this->ListGames->FullRowSelect = true;
|
1351 |
this->ListGames->HideSelection = false;
|
1387 |
this->ListGames->HideSelection = false;
|
1352 |
this->ListGames->Location = System::Drawing::Point(3, 3);
|
1388 |
this->ListGames->Location = System::Drawing::Point(3, 3);
|
1353 |
this->ListGames->MultiSelect = false;
|
1389 |
this->ListGames->MultiSelect = false;
|
1354 |
this->ListGames->Name = L"ListGames";
|
1390 |
this->ListGames->Name = L"ListGames";
|
1355 |
this->ListGames->Size = System::Drawing::Size(741, 140);
|
1391 |
this->ListGames->Size = System::Drawing::Size(742, 122);
|
1356 |
this->ListGames->TabIndex = 2;
|
1392 |
this->ListGames->TabIndex = 2;
|
1357 |
this->ListGames->UseCompatibleStateImageBehavior = false;
|
1393 |
this->ListGames->UseCompatibleStateImageBehavior = false;
|
1358 |
this->ListGames->View = System::Windows::Forms::View::Details;
|
1394 |
this->ListGames->View = System::Windows::Forms::View::Details;
|
1359 |
this->ListGames->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListGames_SelectedIndexChanged);
|
1395 |
this->ListGames->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListGames_SelectedIndexChanged);
|
1360 |
this->ListGames->DoubleClick += gcnew System::EventHandler(this, &PackageForm::ListGames_DoubleClick);
|
1396 |
this->ListGames->DoubleClick += gcnew System::EventHandler(this, &PackageForm::ListGames_DoubleClick);
|
Line 1369... |
Line 1405... |
1369 |
//
|
1405 |
//
|
1370 |
// groupBox8
|
1406 |
// groupBox8
|
1371 |
//
|
1407 |
//
|
1372 |
this->groupBox8->Controls->Add(this->panel10);
|
1408 |
this->groupBox8->Controls->Add(this->panel10);
|
1373 |
this->groupBox8->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1409 |
this->groupBox8->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1374 |
this->groupBox8->Location = System::Drawing::Point(3, 143);
|
1410 |
this->groupBox8->Location = System::Drawing::Point(3, 125);
|
1375 |
this->groupBox8->Name = L"groupBox8";
|
1411 |
this->groupBox8->Name = L"groupBox8";
|
1376 |
this->groupBox8->Size = System::Drawing::Size(741, 70);
|
1412 |
this->groupBox8->Size = System::Drawing::Size(742, 70);
|
1377 |
this->groupBox8->TabIndex = 1;
|
1413 |
this->groupBox8->TabIndex = 1;
|
1378 |
this->groupBox8->TabStop = false;
|
1414 |
this->groupBox8->TabStop = false;
|
1379 |
this->groupBox8->Text = L"Add/Edit Game";
|
1415 |
this->groupBox8->Text = L"Add/Edit Game";
|
1380 |
//
|
1416 |
//
|
1381 |
// panel10
|
1417 |
// panel10
|
Line 1383... |
Line 1419... |
1383 |
this->panel10->Controls->Add(this->panel21);
|
1419 |
this->panel10->Controls->Add(this->panel21);
|
1384 |
this->panel10->Controls->Add(this->ButGame);
|
1420 |
this->panel10->Controls->Add(this->ButGame);
|
1385 |
this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
|
1421 |
this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
|
1386 |
this->panel10->Location = System::Drawing::Point(3, 16);
|
1422 |
this->panel10->Location = System::Drawing::Point(3, 16);
|
1387 |
this->panel10->Name = L"panel10";
|
1423 |
this->panel10->Name = L"panel10";
|
1388 |
this->panel10->Size = System::Drawing::Size(735, 43);
|
1424 |
this->panel10->Size = System::Drawing::Size(736, 43);
|
1389 |
this->panel10->TabIndex = 44;
|
1425 |
this->panel10->TabIndex = 44;
|
1390 |
//
|
1426 |
//
|
1391 |
// panel21
|
1427 |
// panel21
|
1392 |
//
|
1428 |
//
|
1393 |
this->panel21->Controls->Add(this->ComboVersion);
|
1429 |
this->panel21->Controls->Add(this->ComboVersion);
|
1394 |
this->panel21->Controls->Add(this->TextExactVersion);
|
1430 |
this->panel21->Controls->Add(this->TextExactVersion);
|
1395 |
this->panel21->Controls->Add(this->ButGameAdd);
|
1431 |
this->panel21->Controls->Add(this->ButGameAdd);
|
1396 |
this->panel21->Dock = System::Windows::Forms::DockStyle::Fill;
|
1432 |
this->panel21->Dock = System::Windows::Forms::DockStyle::Fill;
|
1397 |
this->panel21->Location = System::Drawing::Point(218, 0);
|
1433 |
this->panel21->Location = System::Drawing::Point(218, 0);
|
1398 |
this->panel21->Name = L"panel21";
|
1434 |
this->panel21->Name = L"panel21";
|
1399 |
this->panel21->Size = System::Drawing::Size(517, 43);
|
1435 |
this->panel21->Size = System::Drawing::Size(518, 43);
|
1400 |
this->panel21->TabIndex = 44;
|
1436 |
this->panel21->TabIndex = 44;
|
1401 |
//
|
1437 |
//
|
1402 |
// ComboVersion
|
1438 |
// ComboVersion
|
1403 |
//
|
1439 |
//
|
1404 |
this->ComboVersion->Dock = System::Windows::Forms::DockStyle::Fill;
|
1440 |
this->ComboVersion->Dock = System::Windows::Forms::DockStyle::Fill;
|
1405 |
this->ComboVersion->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
|
1441 |
this->ComboVersion->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
|
1406 |
this->ComboVersion->Enabled = false;
|
1442 |
this->ComboVersion->Enabled = false;
|
1407 |
this->ComboVersion->FormattingEnabled = true;
|
1443 |
this->ComboVersion->FormattingEnabled = true;
|
1408 |
this->ComboVersion->Location = System::Drawing::Point(0, 0);
|
1444 |
this->ComboVersion->Location = System::Drawing::Point(0, 0);
|
1409 |
this->ComboVersion->Name = L"ComboVersion";
|
1445 |
this->ComboVersion->Name = L"ComboVersion";
|
1410 |
this->ComboVersion->Size = System::Drawing::Size(464, 21);
|
1446 |
this->ComboVersion->Size = System::Drawing::Size(465, 21);
|
1411 |
this->ComboVersion->TabIndex = 41;
|
1447 |
this->ComboVersion->TabIndex = 41;
|
1412 |
this->ComboVersion->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboVersion_SelectedIndexChanged);
|
1448 |
this->ComboVersion->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboVersion_SelectedIndexChanged);
|
1413 |
//
|
1449 |
//
|
1414 |
// TextExactVersion
|
1450 |
// TextExactVersion
|
1415 |
//
|
1451 |
//
|
1416 |
this->TextExactVersion->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1452 |
this->TextExactVersion->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1417 |
this->TextExactVersion->Location = System::Drawing::Point(0, 23);
|
1453 |
this->TextExactVersion->Location = System::Drawing::Point(0, 23);
|
1418 |
this->TextExactVersion->Name = L"TextExactVersion";
|
1454 |
this->TextExactVersion->Name = L"TextExactVersion";
|
1419 |
this->TextExactVersion->Size = System::Drawing::Size(464, 20);
|
1455 |
this->TextExactVersion->Size = System::Drawing::Size(465, 20);
|
1420 |
this->TextExactVersion->TabIndex = 42;
|
1456 |
this->TextExactVersion->TabIndex = 42;
|
1421 |
//
|
1457 |
//
|
1422 |
// ButGameAdd
|
1458 |
// ButGameAdd
|
1423 |
//
|
1459 |
//
|
1424 |
this->ButGameAdd->Dock = System::Windows::Forms::DockStyle::Right;
|
1460 |
this->ButGameAdd->Dock = System::Windows::Forms::DockStyle::Right;
|
1425 |
this->ButGameAdd->ForeColor = System::Drawing::Color::Green;
|
1461 |
this->ButGameAdd->ForeColor = System::Drawing::Color::Green;
|
1426 |
this->ButGameAdd->Location = System::Drawing::Point(464, 0);
|
1462 |
this->ButGameAdd->Location = System::Drawing::Point(465, 0);
|
1427 |
this->ButGameAdd->Name = L"ButGameAdd";
|
1463 |
this->ButGameAdd->Name = L"ButGameAdd";
|
1428 |
this->ButGameAdd->Size = System::Drawing::Size(53, 43);
|
1464 |
this->ButGameAdd->Size = System::Drawing::Size(53, 43);
|
1429 |
this->ButGameAdd->TabIndex = 43;
|
1465 |
this->ButGameAdd->TabIndex = 43;
|
1430 |
this->ButGameAdd->Text = L"Save!";
|
1466 |
this->ButGameAdd->Text = L"Save!";
|
1431 |
this->ButGameAdd->UseVisualStyleBackColor = true;
|
1467 |
this->ButGameAdd->UseVisualStyleBackColor = true;
|
Line 1459... |
Line 1495... |
1459 |
// PagePackage
|
1495 |
// PagePackage
|
1460 |
//
|
1496 |
//
|
1461 |
this->PagePackage->Controls->Add(this->groupBox3);
|
1497 |
this->PagePackage->Controls->Add(this->groupBox3);
|
1462 |
this->PagePackage->Controls->Add(this->panel22);
|
1498 |
this->PagePackage->Controls->Add(this->panel22);
|
1463 |
this->PagePackage->Controls->Add(this->panel7);
|
1499 |
this->PagePackage->Controls->Add(this->panel7);
|
1464 |
this->PagePackage->Location = System::Drawing::Point(4, 22);
|
1500 |
this->PagePackage->Location = System::Drawing::Point(4, 40);
|
1465 |
this->PagePackage->Name = L"PagePackage";
|
1501 |
this->PagePackage->Name = L"PagePackage";
|
1466 |
this->PagePackage->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
1502 |
this->PagePackage->Padding = System::Windows::Forms::Padding(3);
|
1467 |
this->PagePackage->Size = System::Drawing::Size(747, 216);
|
1503 |
this->PagePackage->Size = System::Drawing::Size(748, 198);
|
1468 |
this->PagePackage->TabIndex = 2;
|
1504 |
this->PagePackage->TabIndex = 2;
|
1469 |
this->PagePackage->Text = L"Package Settings";
|
1505 |
this->PagePackage->Text = L"Package Settings";
|
1470 |
this->PagePackage->UseVisualStyleBackColor = true;
|
1506 |
this->PagePackage->UseVisualStyleBackColor = true;
|
1471 |
//
|
1507 |
//
|
1472 |
// groupBox3
|
1508 |
// groupBox3
|
Line 1477... |
Line 1513... |
1477 |
this->groupBox3->Controls->Add(this->CheckOther);
|
1513 |
this->groupBox3->Controls->Add(this->CheckOther);
|
1478 |
this->groupBox3->Controls->Add(this->TextOtherAuthor);
|
1514 |
this->groupBox3->Controls->Add(this->TextOtherAuthor);
|
1479 |
this->groupBox3->Controls->Add(this->ButFromFile);
|
1515 |
this->groupBox3->Controls->Add(this->ButFromFile);
|
1480 |
this->groupBox3->Dock = System::Windows::Forms::DockStyle::Top;
|
1516 |
this->groupBox3->Dock = System::Windows::Forms::DockStyle::Top;
|
1481 |
this->groupBox3->Location = System::Drawing::Point(3, 95);
|
1517 |
this->groupBox3->Location = System::Drawing::Point(3, 95);
|
1482 |
this->groupBox3->Margin = System::Windows::Forms::Padding(10, 10, 10, 10);
|
1518 |
this->groupBox3->Margin = System::Windows::Forms::Padding(10);
|
1483 |
this->groupBox3->Name = L"groupBox3";
|
1519 |
this->groupBox3->Name = L"groupBox3";
|
1484 |
this->groupBox3->Padding = System::Windows::Forms::Padding(10, 10, 10, 10);
|
1520 |
this->groupBox3->Padding = System::Windows::Forms::Padding(10);
|
1485 |
this->groupBox3->Size = System::Drawing::Size(741, 53);
|
1521 |
this->groupBox3->Size = System::Drawing::Size(742, 53);
|
1486 |
this->groupBox3->TabIndex = 1;
|
1522 |
this->groupBox3->TabIndex = 1;
|
1487 |
this->groupBox3->TabStop = false;
|
1523 |
this->groupBox3->TabStop = false;
|
1488 |
this->groupBox3->Text = L"Requires Parent Mod/Package";
|
1524 |
this->groupBox3->Text = L"Requires Parent Mod/Package";
|
1489 |
//
|
1525 |
//
|
1490 |
// TextOtherName
|
1526 |
// TextOtherName
|
1491 |
//
|
1527 |
//
|
1492 |
this->TextOtherName->Dock = System::Windows::Forms::DockStyle::Fill;
|
1528 |
this->TextOtherName->Dock = System::Windows::Forms::DockStyle::Fill;
|
1493 |
this->TextOtherName->Location = System::Drawing::Point(107, 23);
|
1529 |
this->TextOtherName->Location = System::Drawing::Point(107, 23);
|
1494 |
this->TextOtherName->Name = L"TextOtherName";
|
1530 |
this->TextOtherName->Name = L"TextOtherName";
|
1495 |
this->TextOtherName->Size = System::Drawing::Size(333, 20);
|
1531 |
this->TextOtherName->Size = System::Drawing::Size(334, 20);
|
1496 |
this->TextOtherName->TabIndex = 1;
|
1532 |
this->TextOtherName->TabIndex = 1;
|
1497 |
this->TextOtherName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
|
1533 |
this->TextOtherName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
|
1498 |
//
|
1534 |
//
|
1499 |
// label13
|
1535 |
// label13
|
1500 |
//
|
1536 |
//
|
1501 |
this->label13->Dock = System::Windows::Forms::DockStyle::Right;
|
1537 |
this->label13->Dock = System::Windows::Forms::DockStyle::Right;
|
1502 |
this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
1538 |
this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
1503 |
static_cast<System::Byte>(0)));
|
1539 |
static_cast<System::Byte>(0)));
|
1504 |
this->label13->Location = System::Drawing::Point(440, 23);
|
1540 |
this->label13->Location = System::Drawing::Point(441, 23);
|
1505 |
this->label13->Name = L"label13";
|
1541 |
this->label13->Name = L"label13";
|
1506 |
this->label13->Size = System::Drawing::Size(77, 20);
|
1542 |
this->label13->Size = System::Drawing::Size(77, 20);
|
1507 |
this->label13->TabIndex = 3;
|
1543 |
this->label13->TabIndex = 3;
|
1508 |
this->label13->Text = L"Author";
|
1544 |
this->label13->Text = L"Author";
|
1509 |
this->label13->TextAlign = System::Drawing::ContentAlignment::MiddleRight;
|
1545 |
this->label13->TextAlign = System::Drawing::ContentAlignment::MiddleRight;
|
Line 1534... |
Line 1570... |
1534 |
this->CheckOther->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckOther_CheckedChanged);
|
1570 |
this->CheckOther->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckOther_CheckedChanged);
|
1535 |
//
|
1571 |
//
|
1536 |
// TextOtherAuthor
|
1572 |
// TextOtherAuthor
|
1537 |
//
|
1573 |
//
|
1538 |
this->TextOtherAuthor->Dock = System::Windows::Forms::DockStyle::Right;
|
1574 |
this->TextOtherAuthor->Dock = System::Windows::Forms::DockStyle::Right;
|
1539 |
this->TextOtherAuthor->Location = System::Drawing::Point(517, 23);
|
1575 |
this->TextOtherAuthor->Location = System::Drawing::Point(518, 23);
|
1540 |
this->TextOtherAuthor->Name = L"TextOtherAuthor";
|
1576 |
this->TextOtherAuthor->Name = L"TextOtherAuthor";
|
1541 |
this->TextOtherAuthor->Size = System::Drawing::Size(139, 20);
|
1577 |
this->TextOtherAuthor->Size = System::Drawing::Size(139, 20);
|
1542 |
this->TextOtherAuthor->TabIndex = 4;
|
1578 |
this->TextOtherAuthor->TabIndex = 4;
|
1543 |
this->TextOtherAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
|
1579 |
this->TextOtherAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
|
1544 |
//
|
1580 |
//
|
1545 |
// ButFromFile
|
1581 |
// ButFromFile
|
1546 |
//
|
1582 |
//
|
1547 |
this->ButFromFile->Dock = System::Windows::Forms::DockStyle::Right;
|
1583 |
this->ButFromFile->Dock = System::Windows::Forms::DockStyle::Right;
|
1548 |
this->ButFromFile->Location = System::Drawing::Point(656, 23);
|
1584 |
this->ButFromFile->Location = System::Drawing::Point(657, 23);
|
1549 |
this->ButFromFile->Name = L"ButFromFile";
|
1585 |
this->ButFromFile->Name = L"ButFromFile";
|
1550 |
this->ButFromFile->Size = System::Drawing::Size(75, 20);
|
1586 |
this->ButFromFile->Size = System::Drawing::Size(75, 20);
|
1551 |
this->ButFromFile->TabIndex = 5;
|
1587 |
this->ButFromFile->TabIndex = 5;
|
1552 |
this->ButFromFile->Text = L"From File";
|
1588 |
this->ButFromFile->Text = L"From File";
|
1553 |
this->ButFromFile->UseVisualStyleBackColor = true;
|
1589 |
this->ButFromFile->UseVisualStyleBackColor = true;
|
Line 1558... |
Line 1594... |
1558 |
this->panel22->Controls->Add(this->ComboPluginType);
|
1594 |
this->panel22->Controls->Add(this->ComboPluginType);
|
1559 |
this->panel22->Controls->Add(this->label15);
|
1595 |
this->panel22->Controls->Add(this->label15);
|
1560 |
this->panel22->Dock = System::Windows::Forms::DockStyle::Top;
|
1596 |
this->panel22->Dock = System::Windows::Forms::DockStyle::Top;
|
1561 |
this->panel22->Location = System::Drawing::Point(3, 63);
|
1597 |
this->panel22->Location = System::Drawing::Point(3, 63);
|
1562 |
this->panel22->Name = L"panel22";
|
1598 |
this->panel22->Name = L"panel22";
|
1563 |
this->panel22->Size = System::Drawing::Size(741, 32);
|
1599 |
this->panel22->Size = System::Drawing::Size(742, 32);
|
1564 |
this->panel22->TabIndex = 2;
|
1600 |
this->panel22->TabIndex = 2;
|
1565 |
//
|
1601 |
//
|
1566 |
// ComboPluginType
|
1602 |
// ComboPluginType
|
1567 |
//
|
1603 |
//
|
1568 |
this->ComboPluginType->Dock = System::Windows::Forms::DockStyle::Fill;
|
1604 |
this->ComboPluginType->Dock = System::Windows::Forms::DockStyle::Fill;
|
Line 1572... |
Line 1608... |
1572 |
L"Normal", L"Stable", L"Experimental", L"Cheat",
|
1608 |
L"Normal", L"Stable", L"Experimental", L"Cheat",
|
1573 |
L"Mod"
|
1609 |
L"Mod"
|
1574 |
});
|
1610 |
});
|
1575 |
this->ComboPluginType->Location = System::Drawing::Point(157, 0);
|
1611 |
this->ComboPluginType->Location = System::Drawing::Point(157, 0);
|
1576 |
this->ComboPluginType->Name = L"ComboPluginType";
|
1612 |
this->ComboPluginType->Name = L"ComboPluginType";
|
1577 |
this->ComboPluginType->Size = System::Drawing::Size(584, 21);
|
1613 |
this->ComboPluginType->Size = System::Drawing::Size(585, 21);
|
1578 |
this->ComboPluginType->TabIndex = 7;
|
1614 |
this->ComboPluginType->TabIndex = 7;
|
1579 |
this->ComboPluginType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboPluginType_SelectedIndexChanged);
|
1615 |
this->ComboPluginType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboPluginType_SelectedIndexChanged);
|
1580 |
//
|
1616 |
//
|
1581 |
// label15
|
1617 |
// label15
|
1582 |
//
|
1618 |
//
|
Line 1595... |
Line 1631... |
1595 |
this->panel7->Controls->Add(this->label7);
|
1631 |
this->panel7->Controls->Add(this->label7);
|
1596 |
this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
|
1632 |
this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
|
1597 |
this->panel7->Location = System::Drawing::Point(3, 3);
|
1633 |
this->panel7->Location = System::Drawing::Point(3, 3);
|
1598 |
this->panel7->Name = L"panel7";
|
1634 |
this->panel7->Name = L"panel7";
|
1599 |
this->panel7->Padding = System::Windows::Forms::Padding(5, 5, 5, 10);
|
1635 |
this->panel7->Padding = System::Windows::Forms::Padding(5, 5, 5, 10);
|
1600 |
this->panel7->Size = System::Drawing::Size(741, 60);
|
1636 |
this->panel7->Size = System::Drawing::Size(742, 60);
|
1601 |
this->panel7->TabIndex = 0;
|
1637 |
this->panel7->TabIndex = 0;
|
1602 |
//
|
1638 |
//
|
1603 |
// panel8
|
1639 |
// panel8
|
1604 |
//
|
1640 |
//
|
1605 |
this->panel8->Controls->Add(this->flowLayoutPanel1);
|
1641 |
this->panel8->Controls->Add(this->flowLayoutPanel1);
|
1606 |
this->panel8->Controls->Add(this->panel9);
|
1642 |
this->panel8->Controls->Add(this->panel9);
|
1607 |
this->panel8->Dock = System::Windows::Forms::DockStyle::Fill;
|
1643 |
this->panel8->Dock = System::Windows::Forms::DockStyle::Fill;
|
1608 |
this->panel8->Location = System::Drawing::Point(162, 5);
|
1644 |
this->panel8->Location = System::Drawing::Point(162, 5);
|
1609 |
this->panel8->Name = L"panel8";
|
1645 |
this->panel8->Name = L"panel8";
|
1610 |
this->panel8->Size = System::Drawing::Size(574, 45);
|
1646 |
this->panel8->Size = System::Drawing::Size(575, 45);
|
1611 |
this->panel8->TabIndex = 2;
|
1647 |
this->panel8->TabIndex = 2;
|
1612 |
//
|
1648 |
//
|
1613 |
// flowLayoutPanel1
|
1649 |
// flowLayoutPanel1
|
1614 |
//
|
1650 |
//
|
1615 |
this->flowLayoutPanel1->Controls->Add(this->RadioTypeUpdate);
|
1651 |
this->flowLayoutPanel1->Controls->Add(this->RadioTypeUpdate);
|
Line 1617... |
Line 1653... |
1617 |
this->flowLayoutPanel1->Controls->Add(this->RadioTypeStart);
|
1653 |
this->flowLayoutPanel1->Controls->Add(this->RadioTypeStart);
|
1618 |
this->flowLayoutPanel1->Controls->Add(this->RadioTypePatch);
|
1654 |
this->flowLayoutPanel1->Controls->Add(this->RadioTypePatch);
|
1619 |
this->flowLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
|
1655 |
this->flowLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
|
1620 |
this->flowLayoutPanel1->Location = System::Drawing::Point(0, 0);
|
1656 |
this->flowLayoutPanel1->Location = System::Drawing::Point(0, 0);
|
1621 |
this->flowLayoutPanel1->Name = L"flowLayoutPanel1";
|
1657 |
this->flowLayoutPanel1->Name = L"flowLayoutPanel1";
|
1622 |
this->flowLayoutPanel1->Size = System::Drawing::Size(574, 22);
|
1658 |
this->flowLayoutPanel1->Size = System::Drawing::Size(575, 22);
|
1623 |
this->flowLayoutPanel1->TabIndex = 4;
|
1659 |
this->flowLayoutPanel1->TabIndex = 4;
|
1624 |
//
|
1660 |
//
|
1625 |
// RadioTypeUpdate
|
1661 |
// RadioTypeUpdate
|
1626 |
//
|
1662 |
//
|
1627 |
this->RadioTypeUpdate->AutoSize = true;
|
1663 |
this->RadioTypeUpdate->AutoSize = true;
|
Line 1676... |
Line 1712... |
1676 |
this->panel9->Controls->Add(this->ComboType);
|
1712 |
this->panel9->Controls->Add(this->ComboType);
|
1677 |
this->panel9->Controls->Add(this->RadioTypeScript);
|
1713 |
this->panel9->Controls->Add(this->RadioTypeScript);
|
1678 |
this->panel9->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1714 |
this->panel9->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1679 |
this->panel9->Location = System::Drawing::Point(0, 22);
|
1715 |
this->panel9->Location = System::Drawing::Point(0, 22);
|
1680 |
this->panel9->Name = L"panel9";
|
1716 |
this->panel9->Name = L"panel9";
|
1681 |
this->panel9->Size = System::Drawing::Size(574, 23);
|
1717 |
this->panel9->Size = System::Drawing::Size(575, 23);
|
1682 |
this->panel9->TabIndex = 6;
|
1718 |
this->panel9->TabIndex = 6;
|
1683 |
//
|
1719 |
//
|
1684 |
// TextCustomType
|
1720 |
// TextCustomType
|
1685 |
//
|
1721 |
//
|
1686 |
this->TextCustomType->Dock = System::Windows::Forms::DockStyle::Fill;
|
1722 |
this->TextCustomType->Dock = System::Windows::Forms::DockStyle::Fill;
|
1687 |
this->TextCustomType->Location = System::Drawing::Point(146, 0);
|
1723 |
this->TextCustomType->Location = System::Drawing::Point(146, 0);
|
1688 |
this->TextCustomType->Name = L"TextCustomType";
|
1724 |
this->TextCustomType->Name = L"TextCustomType";
|
1689 |
this->TextCustomType->Size = System::Drawing::Size(428, 20);
|
1725 |
this->TextCustomType->Size = System::Drawing::Size(429, 20);
|
1690 |
this->TextCustomType->TabIndex = 7;
|
1726 |
this->TextCustomType->TabIndex = 7;
|
1691 |
this->TextCustomType->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextCustomType_TextChanged);
|
1727 |
this->TextCustomType->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextCustomType_TextChanged);
|
1692 |
//
|
1728 |
//
|
1693 |
// ComboType
|
1729 |
// ComboType
|
1694 |
//
|
1730 |
//
|
Line 1729... |
Line 1765... |
1729 |
//
|
1765 |
//
|
1730 |
this->tabPage3->Controls->Add(this->groupBox7);
|
1766 |
this->tabPage3->Controls->Add(this->groupBox7);
|
1731 |
this->tabPage3->Controls->Add(this->groupBox6);
|
1767 |
this->tabPage3->Controls->Add(this->groupBox6);
|
1732 |
this->tabPage3->Controls->Add(this->groupBox5);
|
1768 |
this->tabPage3->Controls->Add(this->groupBox5);
|
1733 |
this->tabPage3->Controls->Add(this->panel15);
|
1769 |
this->tabPage3->Controls->Add(this->panel15);
|
1734 |
this->tabPage3->Location = System::Drawing::Point(4, 22);
|
1770 |
this->tabPage3->Location = System::Drawing::Point(4, 40);
|
1735 |
this->tabPage3->Name = L"tabPage3";
|
1771 |
this->tabPage3->Name = L"tabPage3";
|
1736 |
this->tabPage3->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
1772 |
this->tabPage3->Padding = System::Windows::Forms::Padding(3);
|
1737 |
this->tabPage3->Size = System::Drawing::Size(747, 216);
|
1773 |
this->tabPage3->Size = System::Drawing::Size(748, 198);
|
1738 |
this->tabPage3->TabIndex = 4;
|
1774 |
this->tabPage3->TabIndex = 4;
|
1739 |
this->tabPage3->Text = L"Display";
|
1775 |
this->tabPage3->Text = L"Display";
|
1740 |
this->tabPage3->UseVisualStyleBackColor = true;
|
1776 |
this->tabPage3->UseVisualStyleBackColor = true;
|
1741 |
//
|
1777 |
//
|
1742 |
// groupBox7
|
1778 |
// groupBox7
|
Line 1746... |
Line 1782... |
1746 |
this->groupBox7->Controls->Add(this->panel18);
|
1782 |
this->groupBox7->Controls->Add(this->panel18);
|
1747 |
this->groupBox7->Dock = System::Windows::Forms::DockStyle::Fill;
|
1783 |
this->groupBox7->Dock = System::Windows::Forms::DockStyle::Fill;
|
1748 |
this->groupBox7->Location = System::Drawing::Point(210, 66);
|
1784 |
this->groupBox7->Location = System::Drawing::Point(210, 66);
|
1749 |
this->groupBox7->Name = L"groupBox7";
|
1785 |
this->groupBox7->Name = L"groupBox7";
|
1750 |
this->groupBox7->Padding = System::Windows::Forms::Padding(5, 0, 5, 5);
|
1786 |
this->groupBox7->Padding = System::Windows::Forms::Padding(5, 0, 5, 5);
|
1751 |
this->groupBox7->Size = System::Drawing::Size(534, 147);
|
1787 |
this->groupBox7->Size = System::Drawing::Size(535, 129);
|
1752 |
this->groupBox7->TabIndex = 4;
|
1788 |
this->groupBox7->TabIndex = 4;
|
1753 |
this->groupBox7->TabStop = false;
|
1789 |
this->groupBox7->TabStop = false;
|
1754 |
this->groupBox7->Text = L"Text";
|
1790 |
this->groupBox7->Text = L"Text";
|
1755 |
//
|
1791 |
//
|
1756 |
// TextText
|
1792 |
// TextText
|
1757 |
//
|
1793 |
//
|
1758 |
this->TextText->Dock = System::Windows::Forms::DockStyle::Fill;
|
1794 |
this->TextText->Dock = System::Windows::Forms::DockStyle::Fill;
|
1759 |
this->TextText->Location = System::Drawing::Point(104, 40);
|
1795 |
this->TextText->Location = System::Drawing::Point(104, 40);
|
1760 |
this->TextText->Name = L"TextText";
|
1796 |
this->TextText->Name = L"TextText";
|
1761 |
this->TextText->Size = System::Drawing::Size(425, 102);
|
1797 |
this->TextText->Size = System::Drawing::Size(426, 84);
|
1762 |
this->TextText->TabIndex = 3;
|
1798 |
this->TextText->TabIndex = 3;
|
1763 |
this->TextText->Text = L"";
|
1799 |
this->TextText->Text = L"";
|
1764 |
this->TextText->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextText_TextChanged);
|
1800 |
this->TextText->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextText_TextChanged);
|
1765 |
//
|
1801 |
//
|
1766 |
// panel19
|
1802 |
// panel19
|
Line 1768... |
Line 1804... |
1768 |
this->panel19->Controls->Add(this->ListLang);
|
1804 |
this->panel19->Controls->Add(this->ListLang);
|
1769 |
this->panel19->Controls->Add(this->panel20);
|
1805 |
this->panel19->Controls->Add(this->panel20);
|
1770 |
this->panel19->Dock = System::Windows::Forms::DockStyle::Left;
|
1806 |
this->panel19->Dock = System::Windows::Forms::DockStyle::Left;
|
1771 |
this->panel19->Location = System::Drawing::Point(5, 40);
|
1807 |
this->panel19->Location = System::Drawing::Point(5, 40);
|
1772 |
this->panel19->Name = L"panel19";
|
1808 |
this->panel19->Name = L"panel19";
|
1773 |
this->panel19->Size = System::Drawing::Size(99, 102);
|
1809 |
this->panel19->Size = System::Drawing::Size(99, 84);
|
1774 |
this->panel19->TabIndex = 5;
|
1810 |
this->panel19->TabIndex = 5;
|
1775 |
//
|
1811 |
//
|
1776 |
// ListLang
|
1812 |
// ListLang
|
1777 |
//
|
1813 |
//
|
1778 |
this->ListLang->Dock = System::Windows::Forms::DockStyle::Fill;
|
1814 |
this->ListLang->Dock = System::Windows::Forms::DockStyle::Fill;
|
1779 |
this->ListLang->FormattingEnabled = true;
|
1815 |
this->ListLang->FormattingEnabled = true;
|
1780 |
this->ListLang->Items->AddRange(gcnew cli::array< System::Object^ >(1) { L"- Default -" });
|
1816 |
this->ListLang->Items->AddRange(gcnew cli::array< System::Object^ >(1) { L"- Default -" });
|
1781 |
this->ListLang->Location = System::Drawing::Point(0, 0);
|
1817 |
this->ListLang->Location = System::Drawing::Point(0, 0);
|
1782 |
this->ListLang->Name = L"ListLang";
|
1818 |
this->ListLang->Name = L"ListLang";
|
1783 |
this->ListLang->Size = System::Drawing::Size(99, 82);
|
1819 |
this->ListLang->Size = System::Drawing::Size(99, 64);
|
1784 |
this->ListLang->TabIndex = 4;
|
1820 |
this->ListLang->TabIndex = 4;
|
1785 |
this->ListLang->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListLang_SelectedIndexChanged);
|
1821 |
this->ListLang->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListLang_SelectedIndexChanged);
|
1786 |
//
|
1822 |
//
|
1787 |
// panel20
|
1823 |
// panel20
|
1788 |
//
|
1824 |
//
|
1789 |
this->panel20->Controls->Add(this->ButTextDel);
|
1825 |
this->panel20->Controls->Add(this->ButTextDel);
|
1790 |
this->panel20->Controls->Add(this->ButTextAdd);
|
1826 |
this->panel20->Controls->Add(this->ButTextAdd);
|
1791 |
this->panel20->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1827 |
this->panel20->Dock = System::Windows::Forms::DockStyle::Bottom;
|
1792 |
this->panel20->Location = System::Drawing::Point(0, 82);
|
1828 |
this->panel20->Location = System::Drawing::Point(0, 64);
|
1793 |
this->panel20->Name = L"panel20";
|
1829 |
this->panel20->Name = L"panel20";
|
1794 |
this->panel20->Size = System::Drawing::Size(99, 20);
|
1830 |
this->panel20->Size = System::Drawing::Size(99, 20);
|
1795 |
this->panel20->TabIndex = 7;
|
1831 |
this->panel20->TabIndex = 7;
|
1796 |
//
|
1832 |
//
|
1797 |
// ButTextDel
|
1833 |
// ButTextDel
|
Line 1823... |
Line 1859... |
1823 |
this->panel18->Controls->Add(this->RadioInstallAfter);
|
1859 |
this->panel18->Controls->Add(this->RadioInstallAfter);
|
1824 |
this->panel18->Controls->Add(this->RadioInstallBefore);
|
1860 |
this->panel18->Controls->Add(this->RadioInstallBefore);
|
1825 |
this->panel18->Dock = System::Windows::Forms::DockStyle::Top;
|
1861 |
this->panel18->Dock = System::Windows::Forms::DockStyle::Top;
|
1826 |
this->panel18->Location = System::Drawing::Point(5, 13);
|
1862 |
this->panel18->Location = System::Drawing::Point(5, 13);
|
1827 |
this->panel18->Name = L"panel18";
|
1863 |
this->panel18->Name = L"panel18";
|
1828 |
this->panel18->Size = System::Drawing::Size(524, 27);
|
1864 |
this->panel18->Size = System::Drawing::Size(525, 27);
|
1829 |
this->panel18->TabIndex = 2;
|
1865 |
this->panel18->TabIndex = 2;
|
1830 |
//
|
1866 |
//
|
1831 |
// RadioUninstallAfter
|
1867 |
// RadioUninstallAfter
|
1832 |
//
|
1868 |
//
|
1833 |
this->RadioUninstallAfter->AutoSize = true;
|
1869 |
this->RadioUninstallAfter->AutoSize = true;
|
Line 1884... |
Line 1920... |
1884 |
//
|
1920 |
//
|
1885 |
this->groupBox6->Controls->Add(this->panel17);
|
1921 |
this->groupBox6->Controls->Add(this->panel17);
|
1886 |
this->groupBox6->Dock = System::Windows::Forms::DockStyle::Top;
|
1922 |
this->groupBox6->Dock = System::Windows::Forms::DockStyle::Top;
|
1887 |
this->groupBox6->Location = System::Drawing::Point(210, 3);
|
1923 |
this->groupBox6->Location = System::Drawing::Point(210, 3);
|
1888 |
this->groupBox6->Name = L"groupBox6";
|
1924 |
this->groupBox6->Name = L"groupBox6";
|
1889 |
this->groupBox6->Size = System::Drawing::Size(534, 63);
|
1925 |
this->groupBox6->Size = System::Drawing::Size(535, 63);
|
1890 |
this->groupBox6->TabIndex = 3;
|
1926 |
this->groupBox6->TabIndex = 3;
|
1891 |
this->groupBox6->TabStop = false;
|
1927 |
this->groupBox6->TabStop = false;
|
1892 |
this->groupBox6->Text = L"Ratings";
|
1928 |
this->groupBox6->Text = L"Ratings";
|
1893 |
//
|
1929 |
//
|
1894 |
// panel17
|
1930 |
// panel17
|
Line 1897... |
Line 1933... |
1897 |
this->panel17->Controls->Add(this->GroupRec);
|
1933 |
this->panel17->Controls->Add(this->GroupRec);
|
1898 |
this->panel17->Controls->Add(this->GroupEase);
|
1934 |
this->panel17->Controls->Add(this->GroupEase);
|
1899 |
this->panel17->Dock = System::Windows::Forms::DockStyle::Fill;
|
1935 |
this->panel17->Dock = System::Windows::Forms::DockStyle::Fill;
|
1900 |
this->panel17->Location = System::Drawing::Point(3, 16);
|
1936 |
this->panel17->Location = System::Drawing::Point(3, 16);
|
1901 |
this->panel17->Name = L"panel17";
|
1937 |
this->panel17->Name = L"panel17";
|
1902 |
this->panel17->Size = System::Drawing::Size(528, 44);
|
1938 |
this->panel17->Size = System::Drawing::Size(529, 44);
|
1903 |
this->panel17->TabIndex = 4;
|
1939 |
this->panel17->TabIndex = 4;
|
1904 |
//
|
1940 |
//
|
1905 |
// GroupChange
|
1941 |
// GroupChange
|
1906 |
//
|
1942 |
//
|
1907 |
this->GroupChange->Controls->Add(this->PicChange5);
|
1943 |
this->GroupChange->Controls->Add(this->PicChange5);
|
Line 2097... |
Line 2133... |
2097 |
this->groupBox5->Controls->Add(this->DisplayIcon);
|
2133 |
this->groupBox5->Controls->Add(this->DisplayIcon);
|
2098 |
this->groupBox5->Controls->Add(this->button4);
|
2134 |
this->groupBox5->Controls->Add(this->button4);
|
2099 |
this->groupBox5->Dock = System::Windows::Forms::DockStyle::Left;
|
2135 |
this->groupBox5->Dock = System::Windows::Forms::DockStyle::Left;
|
2100 |
this->groupBox5->Location = System::Drawing::Point(153, 3);
|
2136 |
this->groupBox5->Location = System::Drawing::Point(153, 3);
|
2101 |
this->groupBox5->Name = L"groupBox5";
|
2137 |
this->groupBox5->Name = L"groupBox5";
|
2102 |
this->groupBox5->Size = System::Drawing::Size(57, 210);
|
2138 |
this->groupBox5->Size = System::Drawing::Size(57, 192);
|
2103 |
this->groupBox5->TabIndex = 2;
|
2139 |
this->groupBox5->TabIndex = 2;
|
2104 |
this->groupBox5->TabStop = false;
|
2140 |
this->groupBox5->TabStop = false;
|
2105 |
this->groupBox5->Text = L"Icon";
|
2141 |
this->groupBox5->Text = L"Icon";
|
2106 |
//
|
2142 |
//
|
2107 |
// ButIconDel
|
2143 |
// ButIconDel
|
Line 2142... |
Line 2178... |
2142 |
this->panel15->Controls->Add(this->DisplayPicture);
|
2178 |
this->panel15->Controls->Add(this->DisplayPicture);
|
2143 |
this->panel15->Controls->Add(this->panel16);
|
2179 |
this->panel15->Controls->Add(this->panel16);
|
2144 |
this->panel15->Dock = System::Windows::Forms::DockStyle::Left;
|
2180 |
this->panel15->Dock = System::Windows::Forms::DockStyle::Left;
|
2145 |
this->panel15->Location = System::Drawing::Point(3, 3);
|
2181 |
this->panel15->Location = System::Drawing::Point(3, 3);
|
2146 |
this->panel15->Name = L"panel15";
|
2182 |
this->panel15->Name = L"panel15";
|
2147 |
this->panel15->Size = System::Drawing::Size(150, 210);
|
2183 |
this->panel15->Size = System::Drawing::Size(150, 192);
|
2148 |
this->panel15->TabIndex = 1;
|
2184 |
this->panel15->TabIndex = 1;
|
2149 |
//
|
2185 |
//
|
2150 |
// DisplayPicture
|
2186 |
// DisplayPicture
|
2151 |
//
|
2187 |
//
|
2152 |
this->DisplayPicture->Dock = System::Windows::Forms::DockStyle::Fill;
|
2188 |
this->DisplayPicture->Dock = System::Windows::Forms::DockStyle::Fill;
|
2153 |
this->DisplayPicture->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayPicture.Image")));
|
2189 |
this->DisplayPicture->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayPicture.Image")));
|
2154 |
this->DisplayPicture->Location = System::Drawing::Point(0, 0);
|
2190 |
this->DisplayPicture->Location = System::Drawing::Point(0, 0);
|
2155 |
this->DisplayPicture->Name = L"DisplayPicture";
|
2191 |
this->DisplayPicture->Name = L"DisplayPicture";
|
2156 |
this->DisplayPicture->Size = System::Drawing::Size(150, 181);
|
2192 |
this->DisplayPicture->Size = System::Drawing::Size(150, 163);
|
2157 |
this->DisplayPicture->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
|
2193 |
this->DisplayPicture->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
|
2158 |
this->DisplayPicture->TabIndex = 0;
|
2194 |
this->DisplayPicture->TabIndex = 0;
|
2159 |
this->DisplayPicture->TabStop = false;
|
2195 |
this->DisplayPicture->TabStop = false;
|
2160 |
//
|
2196 |
//
|
2161 |
// panel16
|
2197 |
// panel16
|
Line 2163... |
Line 2199... |
2163 |
this->panel16->Controls->Add(this->ButPicAdd);
|
2199 |
this->panel16->Controls->Add(this->ButPicAdd);
|
2164 |
this->panel16->Controls->Add(this->ButPicDel);
|
2200 |
this->panel16->Controls->Add(this->ButPicDel);
|
2165 |
this->panel16->Controls->Add(this->ButPicNext);
|
2201 |
this->panel16->Controls->Add(this->ButPicNext);
|
2166 |
this->panel16->Controls->Add(this->ButPicBack);
|
2202 |
this->panel16->Controls->Add(this->ButPicBack);
|
2167 |
this->panel16->Dock = System::Windows::Forms::DockStyle::Bottom;
|
2203 |
this->panel16->Dock = System::Windows::Forms::DockStyle::Bottom;
|
2168 |
this->panel16->Location = System::Drawing::Point(0, 181);
|
2204 |
this->panel16->Location = System::Drawing::Point(0, 163);
|
2169 |
this->panel16->Name = L"panel16";
|
2205 |
this->panel16->Name = L"panel16";
|
2170 |
this->panel16->Size = System::Drawing::Size(150, 29);
|
2206 |
this->panel16->Size = System::Drawing::Size(150, 29);
|
2171 |
this->panel16->TabIndex = 2;
|
2207 |
this->panel16->TabIndex = 2;
|
2172 |
//
|
2208 |
//
|
2173 |
// ButPicAdd
|
2209 |
// ButPicAdd
|
Line 2219... |
Line 2255... |
2219 |
//
|
2255 |
//
|
2220 |
// tabPage2
|
2256 |
// tabPage2
|
2221 |
//
|
2257 |
//
|
2222 |
this->tabPage2->Controls->Add(this->ListNames);
|
2258 |
this->tabPage2->Controls->Add(this->ListNames);
|
2223 |
this->tabPage2->Controls->Add(this->groupBox4);
|
2259 |
this->tabPage2->Controls->Add(this->groupBox4);
|
2224 |
this->tabPage2->Location = System::Drawing::Point(4, 22);
|
2260 |
this->tabPage2->Location = System::Drawing::Point(4, 40);
|
2225 |
this->tabPage2->Name = L"tabPage2";
|
2261 |
this->tabPage2->Name = L"tabPage2";
|
2226 |
this->tabPage2->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
2262 |
this->tabPage2->Padding = System::Windows::Forms::Padding(3);
|
2227 |
this->tabPage2->Size = System::Drawing::Size(747, 216);
|
2263 |
this->tabPage2->Size = System::Drawing::Size(748, 198);
|
2228 |
this->tabPage2->TabIndex = 3;
|
2264 |
this->tabPage2->TabIndex = 3;
|
2229 |
this->tabPage2->Text = L"Advanced";
|
2265 |
this->tabPage2->Text = L"Advanced";
|
2230 |
this->tabPage2->UseVisualStyleBackColor = true;
|
2266 |
this->tabPage2->UseVisualStyleBackColor = true;
|
2231 |
//
|
2267 |
//
|
2232 |
// ListNames
|
2268 |
// ListNames
|
Line 2236... |
Line 2272... |
2236 |
this->ListNames->Dock = System::Windows::Forms::DockStyle::Fill;
|
2272 |
this->ListNames->Dock = System::Windows::Forms::DockStyle::Fill;
|
2237 |
this->ListNames->FullRowSelect = true;
|
2273 |
this->ListNames->FullRowSelect = true;
|
2238 |
this->ListNames->HideSelection = false;
|
2274 |
this->ListNames->HideSelection = false;
|
2239 |
this->ListNames->Location = System::Drawing::Point(3, 121);
|
2275 |
this->ListNames->Location = System::Drawing::Point(3, 121);
|
2240 |
this->ListNames->Name = L"ListNames";
|
2276 |
this->ListNames->Name = L"ListNames";
|
2241 |
this->ListNames->Size = System::Drawing::Size(741, 92);
|
2277 |
this->ListNames->Size = System::Drawing::Size(742, 74);
|
2242 |
this->ListNames->TabIndex = 1;
|
2278 |
this->ListNames->TabIndex = 1;
|
2243 |
this->ListNames->UseCompatibleStateImageBehavior = false;
|
2279 |
this->ListNames->UseCompatibleStateImageBehavior = false;
|
2244 |
this->ListNames->View = System::Windows::Forms::View::Details;
|
2280 |
this->ListNames->View = System::Windows::Forms::View::Details;
|
2245 |
this->ListNames->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListNames_MouseDoubleClick);
|
2281 |
this->ListNames->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListNames_MouseDoubleClick);
|
2246 |
//
|
2282 |
//
|
Line 2316... |
Line 2352... |
2316 |
this->groupBox4->Controls->Add(this->ListMirrors);
|
2352 |
this->groupBox4->Controls->Add(this->ListMirrors);
|
2317 |
this->groupBox4->Controls->Add(this->panel14);
|
2353 |
this->groupBox4->Controls->Add(this->panel14);
|
2318 |
this->groupBox4->Dock = System::Windows::Forms::DockStyle::Top;
|
2354 |
this->groupBox4->Dock = System::Windows::Forms::DockStyle::Top;
|
2319 |
this->groupBox4->Location = System::Drawing::Point(3, 3);
|
2355 |
this->groupBox4->Location = System::Drawing::Point(3, 3);
|
2320 |
this->groupBox4->Name = L"groupBox4";
|
2356 |
this->groupBox4->Name = L"groupBox4";
|
2321 |
this->groupBox4->Size = System::Drawing::Size(741, 118);
|
2357 |
this->groupBox4->Size = System::Drawing::Size(742, 118);
|
2322 |
this->groupBox4->TabIndex = 0;
|
2358 |
this->groupBox4->TabIndex = 0;
|
2323 |
this->groupBox4->TabStop = false;
|
2359 |
this->groupBox4->TabStop = false;
|
2324 |
this->groupBox4->Text = L"Automatic Update";
|
2360 |
this->groupBox4->Text = L"Automatic Update";
|
2325 |
//
|
2361 |
//
|
2326 |
// ListMirrors
|
2362 |
// ListMirrors
|
Line 2334... |
Line 2370... |
2334 |
this->ListMirrors->LabelWrap = false;
|
2370 |
this->ListMirrors->LabelWrap = false;
|
2335 |
this->ListMirrors->Location = System::Drawing::Point(3, 40);
|
2371 |
this->ListMirrors->Location = System::Drawing::Point(3, 40);
|
2336 |
this->ListMirrors->MultiSelect = false;
|
2372 |
this->ListMirrors->MultiSelect = false;
|
2337 |
this->ListMirrors->Name = L"ListMirrors";
|
2373 |
this->ListMirrors->Name = L"ListMirrors";
|
2338 |
this->ListMirrors->ShowGroups = false;
|
2374 |
this->ListMirrors->ShowGroups = false;
|
2339 |
this->ListMirrors->Size = System::Drawing::Size(735, 75);
|
2375 |
this->ListMirrors->Size = System::Drawing::Size(736, 75);
|
2340 |
this->ListMirrors->Sorting = System::Windows::Forms::SortOrder::Ascending;
|
2376 |
this->ListMirrors->Sorting = System::Windows::Forms::SortOrder::Ascending;
|
2341 |
this->ListMirrors->TabIndex = 1;
|
2377 |
this->ListMirrors->TabIndex = 1;
|
2342 |
this->ListMirrors->UseCompatibleStateImageBehavior = false;
|
2378 |
this->ListMirrors->UseCompatibleStateImageBehavior = false;
|
2343 |
this->ListMirrors->View = System::Windows::Forms::View::Details;
|
2379 |
this->ListMirrors->View = System::Windows::Forms::View::Details;
|
2344 |
this->ListMirrors->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListMirrors_MouseDoubleClick);
|
2380 |
this->ListMirrors->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListMirrors_MouseDoubleClick);
|
Line 2396... |
Line 2432... |
2396 |
this->panel14->Controls->Add(this->TextWebAddress);
|
2432 |
this->panel14->Controls->Add(this->TextWebAddress);
|
2397 |
this->panel14->Controls->Add(this->label14);
|
2433 |
this->panel14->Controls->Add(this->label14);
|
2398 |
this->panel14->Dock = System::Windows::Forms::DockStyle::Top;
|
2434 |
this->panel14->Dock = System::Windows::Forms::DockStyle::Top;
|
2399 |
this->panel14->Location = System::Drawing::Point(3, 16);
|
2435 |
this->panel14->Location = System::Drawing::Point(3, 16);
|
2400 |
this->panel14->Name = L"panel14";
|
2436 |
this->panel14->Name = L"panel14";
|
2401 |
this->panel14->Size = System::Drawing::Size(735, 24);
|
2437 |
this->panel14->Size = System::Drawing::Size(736, 24);
|
2402 |
this->panel14->TabIndex = 2;
|
2438 |
this->panel14->TabIndex = 2;
|
2403 |
//
|
2439 |
//
|
2404 |
// TextWebAddress
|
2440 |
// TextWebAddress
|
2405 |
//
|
2441 |
//
|
2406 |
this->TextWebAddress->DetectUrls = false;
|
2442 |
this->TextWebAddress->DetectUrls = false;
|
2407 |
this->TextWebAddress->Dock = System::Windows::Forms::DockStyle::Fill;
|
2443 |
this->TextWebAddress->Dock = System::Windows::Forms::DockStyle::Fill;
|
2408 |
this->TextWebAddress->Location = System::Drawing::Point(142, 0);
|
2444 |
this->TextWebAddress->Location = System::Drawing::Point(142, 0);
|
2409 |
this->TextWebAddress->Name = L"TextWebAddress";
|
2445 |
this->TextWebAddress->Name = L"TextWebAddress";
|
2410 |
this->TextWebAddress->Size = System::Drawing::Size(593, 24);
|
2446 |
this->TextWebAddress->Size = System::Drawing::Size(594, 24);
|
2411 |
this->TextWebAddress->TabIndex = 1;
|
2447 |
this->TextWebAddress->TabIndex = 1;
|
2412 |
this->TextWebAddress->Text = L"";
|
2448 |
this->TextWebAddress->Text = L"";
|
2413 |
this->TextWebAddress->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebAddress_TextChanged_1);
|
2449 |
this->TextWebAddress->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebAddress_TextChanged_1);
|
2414 |
//
|
2450 |
//
|
2415 |
// label14
|
2451 |
// label14
|
Line 2424... |
Line 2460... |
2424 |
this->label14->Text = L"Primary Address";
|
2460 |
this->label14->Text = L"Primary Address";
|
2425 |
//
|
2461 |
//
|
2426 |
// tabPage4
|
2462 |
// tabPage4
|
2427 |
//
|
2463 |
//
|
2428 |
this->tabPage4->Controls->Add(this->ListDep);
|
2464 |
this->tabPage4->Controls->Add(this->ListDep);
|
2429 |
this->tabPage4->Location = System::Drawing::Point(4, 22);
|
2465 |
this->tabPage4->Location = System::Drawing::Point(4, 40);
|
2430 |
this->tabPage4->Name = L"tabPage4";
|
2466 |
this->tabPage4->Name = L"tabPage4";
|
2431 |
this->tabPage4->Padding = System::Windows::Forms::Padding(15, 15, 15, 15);
|
2467 |
this->tabPage4->Padding = System::Windows::Forms::Padding(15);
|
2432 |
this->tabPage4->Size = System::Drawing::Size(747, 216);
|
2468 |
this->tabPage4->Size = System::Drawing::Size(748, 198);
|
2433 |
this->tabPage4->TabIndex = 9;
|
2469 |
this->tabPage4->TabIndex = 9;
|
2434 |
this->tabPage4->Text = L"Dependacies";
|
2470 |
this->tabPage4->Text = L"Dependacies";
|
2435 |
this->tabPage4->UseVisualStyleBackColor = true;
|
2471 |
this->tabPage4->UseVisualStyleBackColor = true;
|
2436 |
//
|
2472 |
//
|
2437 |
// ListDep
|
2473 |
// ListDep
|
Line 2445... |
Line 2481... |
2445 |
this->ListDep->FullRowSelect = true;
|
2481 |
this->ListDep->FullRowSelect = true;
|
2446 |
this->ListDep->HideSelection = false;
|
2482 |
this->ListDep->HideSelection = false;
|
2447 |
this->ListDep->Location = System::Drawing::Point(15, 15);
|
2483 |
this->ListDep->Location = System::Drawing::Point(15, 15);
|
2448 |
this->ListDep->MultiSelect = false;
|
2484 |
this->ListDep->MultiSelect = false;
|
2449 |
this->ListDep->Name = L"ListDep";
|
2485 |
this->ListDep->Name = L"ListDep";
|
2450 |
this->ListDep->Size = System::Drawing::Size(717, 186);
|
2486 |
this->ListDep->Size = System::Drawing::Size(718, 168);
|
2451 |
this->ListDep->TabIndex = 0;
|
2487 |
this->ListDep->TabIndex = 0;
|
2452 |
this->ListDep->UseCompatibleStateImageBehavior = false;
|
2488 |
this->ListDep->UseCompatibleStateImageBehavior = false;
|
2453 |
this->ListDep->View = System::Windows::Forms::View::Details;
|
2489 |
this->ListDep->View = System::Windows::Forms::View::Details;
|
2454 |
this->ListDep->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListDep_MouseDoubleClick);
|
2490 |
this->ListDep->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListDep_MouseDoubleClick);
|
2455 |
//
|
2491 |
//
|
Line 2544... |
Line 2580... |
2544 |
this->ContextDepClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepClear_Click);
|
2580 |
this->ContextDepClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepClear_Click);
|
2545 |
//
|
2581 |
//
|
2546 |
// PageWares
|
2582 |
// PageWares
|
2547 |
//
|
2583 |
//
|
2548 |
this->PageWares->Controls->Add(this->splitContainer1);
|
2584 |
this->PageWares->Controls->Add(this->splitContainer1);
|
2549 |
this->PageWares->Location = System::Drawing::Point(4, 22);
|
2585 |
this->PageWares->Location = System::Drawing::Point(4, 40);
|
2550 |
this->PageWares->Name = L"PageWares";
|
2586 |
this->PageWares->Name = L"PageWares";
|
2551 |
this->PageWares->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
2587 |
this->PageWares->Padding = System::Windows::Forms::Padding(3);
|
2552 |
this->PageWares->Size = System::Drawing::Size(747, 216);
|
2588 |
this->PageWares->Size = System::Drawing::Size(748, 198);
|
2553 |
this->PageWares->TabIndex = 5;
|
2589 |
this->PageWares->TabIndex = 5;
|
2554 |
this->PageWares->Text = L"Custom Wares";
|
2590 |
this->PageWares->Text = L"Custom Wares";
|
2555 |
this->PageWares->UseVisualStyleBackColor = true;
|
2591 |
this->PageWares->UseVisualStyleBackColor = true;
|
2556 |
//
|
2592 |
//
|
2557 |
// splitContainer1
|
2593 |
// splitContainer1
|
Line 2566... |
Line 2602... |
2566 |
this->splitContainer1->Panel1->Controls->Add(this->ListWares);
|
2602 |
this->splitContainer1->Panel1->Controls->Add(this->ListWares);
|
2567 |
//
|
2603 |
//
|
2568 |
// splitContainer1.Panel2
|
2604 |
// splitContainer1.Panel2
|
2569 |
//
|
2605 |
//
|
2570 |
this->splitContainer1->Panel2->Controls->Add(this->ListWareText);
|
2606 |
this->splitContainer1->Panel2->Controls->Add(this->ListWareText);
|
2571 |
this->splitContainer1->Size = System::Drawing::Size(741, 210);
|
2607 |
this->splitContainer1->Size = System::Drawing::Size(742, 192);
|
2572 |
this->splitContainer1->SplitterDistance = 107;
|
2608 |
this->splitContainer1->SplitterDistance = 97;
|
2573 |
this->splitContainer1->TabIndex = 0;
|
2609 |
this->splitContainer1->TabIndex = 0;
|
2574 |
//
|
2610 |
//
|
2575 |
// ListWares
|
2611 |
// ListWares
|
2576 |
//
|
2612 |
//
|
2577 |
this->ListWares->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^ >(7) {
|
2613 |
this->ListWares->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^ >(7) {
|
Line 2583... |
Line 2619... |
2583 |
this->ListWares->FullRowSelect = true;
|
2619 |
this->ListWares->FullRowSelect = true;
|
2584 |
this->ListWares->HideSelection = false;
|
2620 |
this->ListWares->HideSelection = false;
|
2585 |
this->ListWares->Location = System::Drawing::Point(0, 0);
|
2621 |
this->ListWares->Location = System::Drawing::Point(0, 0);
|
2586 |
this->ListWares->MultiSelect = false;
|
2622 |
this->ListWares->MultiSelect = false;
|
2587 |
this->ListWares->Name = L"ListWares";
|
2623 |
this->ListWares->Name = L"ListWares";
|
2588 |
this->ListWares->Size = System::Drawing::Size(741, 107);
|
2624 |
this->ListWares->Size = System::Drawing::Size(742, 97);
|
2589 |
this->ListWares->TabIndex = 0;
|
2625 |
this->ListWares->TabIndex = 0;
|
2590 |
this->ListWares->UseCompatibleStateImageBehavior = false;
|
2626 |
this->ListWares->UseCompatibleStateImageBehavior = false;
|
2591 |
this->ListWares->View = System::Windows::Forms::View::Details;
|
2627 |
this->ListWares->View = System::Windows::Forms::View::Details;
|
2592 |
this->ListWares->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListWares_SelectedIndexChanged);
|
2628 |
this->ListWares->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListWares_SelectedIndexChanged);
|
2593 |
this->ListWares->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWares_MouseDoubleClick);
|
2629 |
this->ListWares->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWares_MouseDoubleClick);
|
Line 2689... |
Line 2725... |
2689 |
this->ListWareText->FullRowSelect = true;
|
2725 |
this->ListWareText->FullRowSelect = true;
|
2690 |
this->ListWareText->HideSelection = false;
|
2726 |
this->ListWareText->HideSelection = false;
|
2691 |
this->ListWareText->Location = System::Drawing::Point(0, 0);
|
2727 |
this->ListWareText->Location = System::Drawing::Point(0, 0);
|
2692 |
this->ListWareText->MultiSelect = false;
|
2728 |
this->ListWareText->MultiSelect = false;
|
2693 |
this->ListWareText->Name = L"ListWareText";
|
2729 |
this->ListWareText->Name = L"ListWareText";
|
2694 |
this->ListWareText->Size = System::Drawing::Size(741, 99);
|
2730 |
this->ListWareText->Size = System::Drawing::Size(742, 91);
|
2695 |
this->ListWareText->TabIndex = 0;
|
2731 |
this->ListWareText->TabIndex = 0;
|
2696 |
this->ListWareText->UseCompatibleStateImageBehavior = false;
|
2732 |
this->ListWareText->UseCompatibleStateImageBehavior = false;
|
2697 |
this->ListWareText->View = System::Windows::Forms::View::Details;
|
2733 |
this->ListWareText->View = System::Windows::Forms::View::Details;
|
2698 |
this->ListWareText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWareText_MouseDoubleClick);
|
2734 |
this->ListWareText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWareText_MouseDoubleClick);
|
2699 |
//
|
2735 |
//
|
Line 2771... |
Line 2807... |
2771 |
// PageShip
|
2807 |
// PageShip
|
2772 |
//
|
2808 |
//
|
2773 |
this->PageShip->Controls->Add(this->ListShipText);
|
2809 |
this->PageShip->Controls->Add(this->ListShipText);
|
2774 |
this->PageShip->Controls->Add(this->PanelTextID);
|
2810 |
this->PageShip->Controls->Add(this->PanelTextID);
|
2775 |
this->PageShip->Controls->Add(this->flowLayoutPanel2);
|
2811 |
this->PageShip->Controls->Add(this->flowLayoutPanel2);
|
2776 |
this->PageShip->Location = System::Drawing::Point(4, 22);
|
2812 |
this->PageShip->Location = System::Drawing::Point(4, 40);
|
2777 |
this->PageShip->Name = L"PageShip";
|
2813 |
this->PageShip->Name = L"PageShip";
|
2778 |
this->PageShip->Padding = System::Windows::Forms::Padding(8, 8, 8, 8);
|
2814 |
this->PageShip->Padding = System::Windows::Forms::Padding(8);
|
2779 |
this->PageShip->Size = System::Drawing::Size(747, 216);
|
2815 |
this->PageShip->Size = System::Drawing::Size(748, 198);
|
2780 |
this->PageShip->TabIndex = 6;
|
2816 |
this->PageShip->TabIndex = 6;
|
2781 |
this->PageShip->Text = L"Ship Settings";
|
2817 |
this->PageShip->Text = L"Ship Settings";
|
2782 |
this->PageShip->UseVisualStyleBackColor = true;
|
2818 |
this->PageShip->UseVisualStyleBackColor = true;
|
2783 |
//
|
2819 |
//
|
2784 |
// ListShipText
|
2820 |
// ListShipText
|
Line 2792... |
Line 2828... |
2792 |
this->ListShipText->FullRowSelect = true;
|
2828 |
this->ListShipText->FullRowSelect = true;
|
2793 |
this->ListShipText->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
|
2829 |
this->ListShipText->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
|
2794 |
this->ListShipText->HideSelection = false;
|
2830 |
this->ListShipText->HideSelection = false;
|
2795 |
this->ListShipText->Location = System::Drawing::Point(8, 110);
|
2831 |
this->ListShipText->Location = System::Drawing::Point(8, 110);
|
2796 |
this->ListShipText->Name = L"ListShipText";
|
2832 |
this->ListShipText->Name = L"ListShipText";
|
2797 |
this->ListShipText->Size = System::Drawing::Size(731, 98);
|
2833 |
this->ListShipText->Size = System::Drawing::Size(732, 80);
|
2798 |
this->ListShipText->TabIndex = 8;
|
2834 |
this->ListShipText->TabIndex = 8;
|
2799 |
this->ListShipText->UseCompatibleStateImageBehavior = false;
|
2835 |
this->ListShipText->UseCompatibleStateImageBehavior = false;
|
2800 |
this->ListShipText->View = System::Windows::Forms::View::Details;
|
2836 |
this->ListShipText->View = System::Windows::Forms::View::Details;
|
2801 |
this->ListShipText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipText_MouseDoubleClick);
|
2837 |
this->ListShipText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipText_MouseDoubleClick);
|
2802 |
//
|
2838 |
//
|
Line 2914... |
Line 2950... |
2914 |
this->PanelTextID->Controls->Add(this->NumTextID);
|
2950 |
this->PanelTextID->Controls->Add(this->NumTextID);
|
2915 |
this->PanelTextID->Controls->Add(this->CheckExistingText);
|
2951 |
this->PanelTextID->Controls->Add(this->CheckExistingText);
|
2916 |
this->PanelTextID->Dock = System::Windows::Forms::DockStyle::Top;
|
2952 |
this->PanelTextID->Dock = System::Windows::Forms::DockStyle::Top;
|
2917 |
this->PanelTextID->Location = System::Drawing::Point(8, 90);
|
2953 |
this->PanelTextID->Location = System::Drawing::Point(8, 90);
|
2918 |
this->PanelTextID->Name = L"PanelTextID";
|
2954 |
this->PanelTextID->Name = L"PanelTextID";
|
2919 |
this->PanelTextID->Size = System::Drawing::Size(731, 20);
|
2955 |
this->PanelTextID->Size = System::Drawing::Size(732, 20);
|
2920 |
this->PanelTextID->TabIndex = 9;
|
2956 |
this->PanelTextID->TabIndex = 9;
|
2921 |
//
|
2957 |
//
|
2922 |
// NumTextID
|
2958 |
// NumTextID
|
2923 |
//
|
2959 |
//
|
2924 |
this->NumTextID->Dock = System::Windows::Forms::DockStyle::Left;
|
2960 |
this->NumTextID->Dock = System::Windows::Forms::DockStyle::Left;
|
Line 2960... |
Line 2996... |
2960 |
this->flowLayoutPanel2->Controls->Add(this->CheckSYATF);
|
2996 |
this->flowLayoutPanel2->Controls->Add(this->CheckSYATF);
|
2961 |
this->flowLayoutPanel2->Controls->Add(this->CheckSYYaki);
|
2997 |
this->flowLayoutPanel2->Controls->Add(this->CheckSYYaki);
|
2962 |
this->flowLayoutPanel2->Dock = System::Windows::Forms::DockStyle::Top;
|
2998 |
this->flowLayoutPanel2->Dock = System::Windows::Forms::DockStyle::Top;
|
2963 |
this->flowLayoutPanel2->Location = System::Drawing::Point(8, 8);
|
2999 |
this->flowLayoutPanel2->Location = System::Drawing::Point(8, 8);
|
2964 |
this->flowLayoutPanel2->Name = L"flowLayoutPanel2";
|
3000 |
this->flowLayoutPanel2->Name = L"flowLayoutPanel2";
|
2965 |
this->flowLayoutPanel2->Size = System::Drawing::Size(731, 82);
|
3001 |
this->flowLayoutPanel2->Size = System::Drawing::Size(732, 82);
|
2966 |
this->flowLayoutPanel2->TabIndex = 7;
|
3002 |
this->flowLayoutPanel2->TabIndex = 7;
|
2967 |
//
|
3003 |
//
|
2968 |
// label16
|
3004 |
// label16
|
2969 |
//
|
3005 |
//
|
2970 |
this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
3006 |
this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
Line 3123... |
Line 3159... |
3123 |
//
|
3159 |
//
|
3124 |
// PageRaw
|
3160 |
// PageRaw
|
3125 |
//
|
3161 |
//
|
3126 |
this->PageRaw->Controls->Add(this->panel23);
|
3162 |
this->PageRaw->Controls->Add(this->panel23);
|
3127 |
this->PageRaw->Controls->Add(this->flowLayoutPanel3);
|
3163 |
this->PageRaw->Controls->Add(this->flowLayoutPanel3);
|
3128 |
this->PageRaw->Location = System::Drawing::Point(4, 22);
|
3164 |
this->PageRaw->Location = System::Drawing::Point(4, 40);
|
3129 |
this->PageRaw->Name = L"PageRaw";
|
3165 |
this->PageRaw->Name = L"PageRaw";
|
3130 |
this->PageRaw->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
3166 |
this->PageRaw->Padding = System::Windows::Forms::Padding(3);
|
3131 |
this->PageRaw->Size = System::Drawing::Size(747, 216);
|
3167 |
this->PageRaw->Size = System::Drawing::Size(748, 198);
|
3132 |
this->PageRaw->TabIndex = 7;
|
3168 |
this->PageRaw->TabIndex = 7;
|
3133 |
this->PageRaw->Text = L"Ship Data";
|
3169 |
this->PageRaw->Text = L"Ship Data";
|
3134 |
this->PageRaw->UseVisualStyleBackColor = true;
|
3170 |
this->PageRaw->UseVisualStyleBackColor = true;
|
3135 |
//
|
3171 |
//
|
3136 |
// panel23
|
3172 |
// panel23
|
Line 3138... |
Line 3174... |
3138 |
this->panel23->Controls->Add(this->TextShipData);
|
3174 |
this->panel23->Controls->Add(this->TextShipData);
|
3139 |
this->panel23->Controls->Add(this->panel24);
|
3175 |
this->panel23->Controls->Add(this->panel24);
|
3140 |
this->panel23->Dock = System::Windows::Forms::DockStyle::Fill;
|
3176 |
this->panel23->Dock = System::Windows::Forms::DockStyle::Fill;
|
3141 |
this->panel23->Location = System::Drawing::Point(3, 42);
|
3177 |
this->panel23->Location = System::Drawing::Point(3, 42);
|
3142 |
this->panel23->Name = L"panel23";
|
3178 |
this->panel23->Name = L"panel23";
|
3143 |
this->panel23->Padding = System::Windows::Forms::Padding(10, 10, 10, 10);
|
3179 |
this->panel23->Padding = System::Windows::Forms::Padding(10);
|
3144 |
this->panel23->Size = System::Drawing::Size(741, 171);
|
3180 |
this->panel23->Size = System::Drawing::Size(742, 153);
|
3145 |
this->panel23->TabIndex = 3;
|
3181 |
this->panel23->TabIndex = 3;
|
3146 |
//
|
3182 |
//
|
3147 |
// TextShipData
|
3183 |
// TextShipData
|
3148 |
//
|
3184 |
//
|
3149 |
this->TextShipData->BackColor = System::Drawing::SystemColors::Control;
|
3185 |
this->TextShipData->BackColor = System::Drawing::SystemColors::Control;
|
3150 |
this->TextShipData->Dock = System::Windows::Forms::DockStyle::Fill;
|
3186 |
this->TextShipData->Dock = System::Windows::Forms::DockStyle::Fill;
|
3151 |
this->TextShipData->Location = System::Drawing::Point(10, 34);
|
3187 |
this->TextShipData->Location = System::Drawing::Point(10, 34);
|
3152 |
this->TextShipData->Name = L"TextShipData";
|
3188 |
this->TextShipData->Name = L"TextShipData";
|
3153 |
this->TextShipData->ReadOnly = true;
|
3189 |
this->TextShipData->ReadOnly = true;
|
3154 |
this->TextShipData->Size = System::Drawing::Size(721, 127);
|
3190 |
this->TextShipData->Size = System::Drawing::Size(722, 109);
|
3155 |
this->TextShipData->TabIndex = 0;
|
3191 |
this->TextShipData->TabIndex = 0;
|
3156 |
this->TextShipData->Text = L"";
|
3192 |
this->TextShipData->Text = L"";
|
3157 |
this->TextShipData->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipData_TextChanged);
|
3193 |
this->TextShipData->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipData_TextChanged);
|
3158 |
//
|
3194 |
//
|
3159 |
// panel24
|
3195 |
// panel24
|
Line 3161... |
Line 3197... |
3161 |
this->panel24->Controls->Add(this->label17);
|
3197 |
this->panel24->Controls->Add(this->label17);
|
3162 |
this->panel24->Controls->Add(this->checkBox1);
|
3198 |
this->panel24->Controls->Add(this->checkBox1);
|
3163 |
this->panel24->Dock = System::Windows::Forms::DockStyle::Top;
|
3199 |
this->panel24->Dock = System::Windows::Forms::DockStyle::Top;
|
3164 |
this->panel24->Location = System::Drawing::Point(10, 10);
|
3200 |
this->panel24->Location = System::Drawing::Point(10, 10);
|
3165 |
this->panel24->Name = L"panel24";
|
3201 |
this->panel24->Name = L"panel24";
|
3166 |
this->panel24->Size = System::Drawing::Size(721, 24);
|
3202 |
this->panel24->Size = System::Drawing::Size(722, 24);
|
3167 |
this->panel24->TabIndex = 2;
|
3203 |
this->panel24->TabIndex = 2;
|
3168 |
//
|
3204 |
//
|
3169 |
// label17
|
3205 |
// label17
|
3170 |
//
|
3206 |
//
|
3171 |
this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
|
3207 |
this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
|
3172 |
this->label17->Location = System::Drawing::Point(107, 0);
|
3208 |
this->label17->Location = System::Drawing::Point(107, 0);
|
3173 |
this->label17->Name = L"label17";
|
3209 |
this->label17->Name = L"label17";
|
3174 |
this->label17->Size = System::Drawing::Size(614, 24);
|
3210 |
this->label17->Size = System::Drawing::Size(615, 24);
|
3175 |
this->label17->TabIndex = 2;
|
3211 |
this->label17->TabIndex = 2;
|
3176 |
this->label17->Text = L"(Warning: Making changes could break the ship if you dont know what your doing)";
|
3212 |
this->label17->Text = L"(Warning: Making changes could break the ship if you dont know what your doing)";
|
3177 |
this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
3213 |
this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
3178 |
//
|
3214 |
//
|
3179 |
// checkBox1
|
3215 |
// checkBox1
|
Line 3195... |
Line 3231... |
3195 |
this->flowLayoutPanel3->Controls->Add(this->button3);
|
3231 |
this->flowLayoutPanel3->Controls->Add(this->button3);
|
3196 |
this->flowLayoutPanel3->Controls->Add(this->button5);
|
3232 |
this->flowLayoutPanel3->Controls->Add(this->button5);
|
3197 |
this->flowLayoutPanel3->Dock = System::Windows::Forms::DockStyle::Top;
|
3233 |
this->flowLayoutPanel3->Dock = System::Windows::Forms::DockStyle::Top;
|
3198 |
this->flowLayoutPanel3->Location = System::Drawing::Point(3, 3);
|
3234 |
this->flowLayoutPanel3->Location = System::Drawing::Point(3, 3);
|
3199 |
this->flowLayoutPanel3->Name = L"flowLayoutPanel3";
|
3235 |
this->flowLayoutPanel3->Name = L"flowLayoutPanel3";
|
3200 |
this->flowLayoutPanel3->Size = System::Drawing::Size(741, 39);
|
3236 |
this->flowLayoutPanel3->Size = System::Drawing::Size(742, 39);
|
3201 |
this->flowLayoutPanel3->TabIndex = 4;
|
3237 |
this->flowLayoutPanel3->TabIndex = 4;
|
3202 |
//
|
3238 |
//
|
3203 |
// button3
|
3239 |
// button3
|
3204 |
//
|
3240 |
//
|
3205 |
this->button3->AutoSize = true;
|
3241 |
this->button3->AutoSize = true;
|
Line 3231... |
Line 3267... |
3231 |
//
|
3267 |
//
|
3232 |
// PageShipComp
|
3268 |
// PageShipComp
|
3233 |
//
|
3269 |
//
|
3234 |
this->PageShipComp->Controls->Add(this->panel26);
|
3270 |
this->PageShipComp->Controls->Add(this->panel26);
|
3235 |
this->PageShipComp->Controls->Add(this->panel25);
|
3271 |
this->PageShipComp->Controls->Add(this->panel25);
|
3236 |
this->PageShipComp->Location = System::Drawing::Point(4, 22);
|
3272 |
this->PageShipComp->Location = System::Drawing::Point(4, 40);
|
3237 |
this->PageShipComp->Name = L"PageShipComp";
|
3273 |
this->PageShipComp->Name = L"PageShipComp";
|
3238 |
this->PageShipComp->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
|
3274 |
this->PageShipComp->Padding = System::Windows::Forms::Padding(3);
|
3239 |
this->PageShipComp->Size = System::Drawing::Size(747, 216);
|
3275 |
this->PageShipComp->Size = System::Drawing::Size(748, 198);
|
3240 |
this->PageShipComp->TabIndex = 8;
|
3276 |
this->PageShipComp->TabIndex = 8;
|
3241 |
this->PageShipComp->Text = L"Ship Parts";
|
3277 |
this->PageShipComp->Text = L"Ship Parts";
|
3242 |
this->PageShipComp->UseVisualStyleBackColor = true;
|
3278 |
this->PageShipComp->UseVisualStyleBackColor = true;
|
3243 |
//
|
3279 |
//
|
3244 |
// panel26
|
3280 |
// panel26
|
3245 |
//
|
3281 |
//
|
3246 |
this->panel26->Controls->Add(this->ListShipPart);
|
3282 |
this->panel26->Controls->Add(this->ListShipPart);
|
3247 |
this->panel26->Dock = System::Windows::Forms::DockStyle::Fill;
|
3283 |
this->panel26->Dock = System::Windows::Forms::DockStyle::Fill;
|
3248 |
this->panel26->Location = System::Drawing::Point(3, 35);
|
3284 |
this->panel26->Location = System::Drawing::Point(3, 35);
|
3249 |
this->panel26->Name = L"panel26";
|
3285 |
this->panel26->Name = L"panel26";
|
3250 |
this->panel26->Padding = System::Windows::Forms::Padding(10, 10, 10, 10);
|
3286 |
this->panel26->Padding = System::Windows::Forms::Padding(10);
|
3251 |
this->panel26->Size = System::Drawing::Size(741, 178);
|
3287 |
this->panel26->Size = System::Drawing::Size(742, 160);
|
3252 |
this->panel26->TabIndex = 4;
|
3288 |
this->panel26->TabIndex = 4;
|
3253 |
//
|
3289 |
//
|
3254 |
// ListShipPart
|
3290 |
// ListShipPart
|
3255 |
//
|
3291 |
//
|
3256 |
this->ListShipPart->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^ >(3) {
|
3292 |
this->ListShipPart->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^ >(3) {
|
Line 3261... |
Line 3297... |
3261 |
this->ListShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
|
3297 |
this->ListShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
|
3262 |
this->ListShipPart->FullRowSelect = true;
|
3298 |
this->ListShipPart->FullRowSelect = true;
|
3263 |
this->ListShipPart->HideSelection = false;
|
3299 |
this->ListShipPart->HideSelection = false;
|
3264 |
this->ListShipPart->Location = System::Drawing::Point(10, 10);
|
3300 |
this->ListShipPart->Location = System::Drawing::Point(10, 10);
|
3265 |
this->ListShipPart->Name = L"ListShipPart";
|
3301 |
this->ListShipPart->Name = L"ListShipPart";
|
3266 |
this->ListShipPart->Size = System::Drawing::Size(721, 158);
|
3302 |
this->ListShipPart->Size = System::Drawing::Size(722, 140);
|
3267 |
this->ListShipPart->TabIndex = 3;
|
3303 |
this->ListShipPart->TabIndex = 3;
|
3268 |
this->ListShipPart->UseCompatibleStateImageBehavior = false;
|
3304 |
this->ListShipPart->UseCompatibleStateImageBehavior = false;
|
3269 |
this->ListShipPart->View = System::Windows::Forms::View::Details;
|
3305 |
this->ListShipPart->View = System::Windows::Forms::View::Details;
|
3270 |
this->ListShipPart->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipPart_MouseDoubleClick);
|
3306 |
this->ListShipPart->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipPart_MouseDoubleClick);
|
3271 |
//
|
3307 |
//
|
Line 3341... |
Line 3377... |
3341 |
this->panel25->Controls->Add(this->ComboShipPart);
|
3377 |
this->panel25->Controls->Add(this->ComboShipPart);
|
3342 |
this->panel25->Controls->Add(this->label18);
|
3378 |
this->panel25->Controls->Add(this->label18);
|
3343 |
this->panel25->Dock = System::Windows::Forms::DockStyle::Top;
|
3379 |
this->panel25->Dock = System::Windows::Forms::DockStyle::Top;
|
3344 |
this->panel25->Location = System::Drawing::Point(3, 3);
|
3380 |
this->panel25->Location = System::Drawing::Point(3, 3);
|
3345 |
this->panel25->Name = L"panel25";
|
3381 |
this->panel25->Name = L"panel25";
|
3346 |
this->panel25->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
|
3382 |
this->panel25->Padding = System::Windows::Forms::Padding(5);
|
3347 |
this->panel25->Size = System::Drawing::Size(741, 32);
|
3383 |
this->panel25->Size = System::Drawing::Size(742, 32);
|
3348 |
this->panel25->TabIndex = 2;
|
3384 |
this->panel25->TabIndex = 2;
|
3349 |
//
|
3385 |
//
|
3350 |
// ComboShipPart
|
3386 |
// ComboShipPart
|
3351 |
//
|
3387 |
//
|
3352 |
this->ComboShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
|
3388 |
this->ComboShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
|
Line 3356... |
Line 3392... |
3356 |
L"Componants", L"Dummies", L"Cockpits", L"CutData",
|
3392 |
L"Componants", L"Dummies", L"Cockpits", L"CutData",
|
3357 |
L"Bodies", L"Animations"
|
3393 |
L"Bodies", L"Animations"
|
3358 |
});
|
3394 |
});
|
3359 |
this->ComboShipPart->Location = System::Drawing::Point(105, 5);
|
3395 |
this->ComboShipPart->Location = System::Drawing::Point(105, 5);
|
3360 |
this->ComboShipPart->Name = L"ComboShipPart";
|
3396 |
this->ComboShipPart->Name = L"ComboShipPart";
|
3361 |
this->ComboShipPart->Size = System::Drawing::Size(631, 21);
|
3397 |
this->ComboShipPart->Size = System::Drawing::Size(632, 21);
|
3362 |
this->ComboShipPart->TabIndex = 0;
|
3398 |
this->ComboShipPart->TabIndex = 0;
|
3363 |
this->ComboShipPart->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboShipPart_SelectedIndexChanged);
|
3399 |
this->ComboShipPart->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboShipPart_SelectedIndexChanged);
|
3364 |
//
|
3400 |
//
|
3365 |
// label18
|
3401 |
// label18
|
3366 |
//
|
3402 |
//
|
Line 3371... |
Line 3407... |
3371 |
this->label18->Name = L"label18";
|
3407 |
this->label18->Name = L"label18";
|
3372 |
this->label18->Size = System::Drawing::Size(100, 22);
|
3408 |
this->label18->Size = System::Drawing::Size(100, 22);
|
3373 |
this->label18->TabIndex = 1;
|
3409 |
this->label18->TabIndex = 1;
|
3374 |
this->label18->Text = L"Part Type";
|
3410 |
this->label18->Text = L"Part Type";
|
3375 |
this->label18->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
3411 |
this->label18->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
|
- |
|
3412 |
//
|
- |
|
3413 |
// tabGlobals
|
- |
|
3414 |
//
|
- |
|
3415 |
this->tabGlobals->Controls->Add(this->butGlobalClear);
|
- |
|
3416 |
this->tabGlobals->Controls->Add(this->butAddGlobal);
|
- |
|
3417 |
this->tabGlobals->Controls->Add(this->listGlobals);
|
- |
|
3418 |
this->tabGlobals->Location = System::Drawing::Point(4, 40);
|
- |
|
3419 |
this->tabGlobals->Name = L"tabGlobals";
|
- |
|
3420 |
this->tabGlobals->Padding = System::Windows::Forms::Padding(3);
|
- |
|
3421 |
this->tabGlobals->Size = System::Drawing::Size(748, 198);
|
- |
|
3422 |
this->tabGlobals->TabIndex = 11;
|
- |
|
3423 |
this->tabGlobals->Text = L"Globals";
|
- |
|
3424 |
this->tabGlobals->UseVisualStyleBackColor = true;
|
- |
|
3425 |
//
|
- |
|
3426 |
// butGlobalClear
|
- |
|
3427 |
//
|
- |
|
3428 |
this->butGlobalClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"butGlobalClear.Image")));
|
- |
|
3429 |
this->butGlobalClear->Location = System::Drawing::Point(621, 156);
|
- |
|
3430 |
this->butGlobalClear->Name = L"butGlobalClear";
|
- |
|
3431 |
this->butGlobalClear->Size = System::Drawing::Size(121, 36);
|
- |
|
3432 |
this->butGlobalClear->TabIndex = 2;
|
- |
|
3433 |
this->butGlobalClear->Text = L"Clear All";
|
- |
|
3434 |
this->butGlobalClear->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
|
- |
|
3435 |
this->butGlobalClear->UseVisualStyleBackColor = true;
|
- |
|
3436 |
this->butGlobalClear->Click += gcnew System::EventHandler(this, &PackageForm::butGlobalClear_Click);
|
- |
|
3437 |
//
|
- |
|
3438 |
// butAddGlobal
|
- |
|
3439 |
//
|
- |
|
3440 |
this->butAddGlobal->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"butAddGlobal.Image")));
|
- |
|
3441 |
this->butAddGlobal->Location = System::Drawing::Point(6, 156);
|
- |
|
3442 |
this->butAddGlobal->Name = L"butAddGlobal";
|
- |
|
3443 |
this->butAddGlobal->Size = System::Drawing::Size(121, 36);
|
- |
|
3444 |
this->butAddGlobal->TabIndex = 1;
|
- |
|
3445 |
this->butAddGlobal->Text = L"Add New";
|
- |
|
3446 |
this->butAddGlobal->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
|
- |
|
3447 |
this->butAddGlobal->UseVisualStyleBackColor = true;
|
- |
|
3448 |
this->butAddGlobal->Click += gcnew System::EventHandler(this, &PackageForm::butAddGlobal_Click);
|
- |
|
3449 |
//
|
- |
|
3450 |
// listGlobals
|
- |
|
3451 |
//
|
- |
|
3452 |
this->listGlobals->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^ >(2) {
|
- |
|
3453 |
this->ColGlobalName,
|
- |
|
3454 |
this->ColGlobalValue
|
- |
|
3455 |
});
|
- |
|
3456 |
this->listGlobals->ContextMenuStrip = this->contextGlobal;
|
- |
|
3457 |
this->listGlobals->HideSelection = false;
|
- |
|
3458 |
this->listGlobals->Location = System::Drawing::Point(6, 6);
|
- |
|
3459 |
this->listGlobals->Name = L"listGlobals";
|
- |
|
3460 |
this->listGlobals->Size = System::Drawing::Size(736, 144);
|
- |
|
3461 |
this->listGlobals->TabIndex = 0;
|
- |
|
3462 |
this->listGlobals->UseCompatibleStateImageBehavior = false;
|
- |
|
3463 |
this->listGlobals->View = System::Windows::Forms::View::Details;
|
- |
|
3464 |
//
|
- |
|
3465 |
// ColGlobalName
|
- |
|
3466 |
//
|
- |
|
3467 |
this->ColGlobalName->Text = L"Global";
|
- |
|
3468 |
//
|
- |
|
3469 |
// ColGlobalValue
|
- |
|
3470 |
//
|
- |
|
3471 |
this->ColGlobalValue->Text = L"Value";
|
- |
|
3472 |
//
|
- |
|
3473 |
// contextGlobal
|
- |
|
3474 |
//
|
- |
|
3475 |
this->contextGlobal->ImageScalingSize = System::Drawing::Size(20, 20);
|
- |
|
3476 |
this->contextGlobal->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(6) {
|
- |
|
3477 |
this->addNewToolStripMenuItem,
|
- |
|
3478 |
this->toolStripSeparator6, this->editSelectedToolStripMenuItem1, this->removeSelectedToolStripMenuItem, this->toolStripSeparator7,
|
- |
|
3479 |
this->clearAllToolStripMenuItem2
|
- |
|
3480 |
});
|
- |
|
3481 |
this->contextGlobal->Name = L"contextGlobal";
|
- |
|
3482 |
this->contextGlobal->Size = System::Drawing::Size(169, 120);
|
- |
|
3483 |
//
|
- |
|
3484 |
// addNewToolStripMenuItem
|
- |
|
3485 |
//
|
- |
|
3486 |
this->addNewToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addNewToolStripMenuItem.Image")));
|
- |
|
3487 |
this->addNewToolStripMenuItem->Name = L"addNewToolStripMenuItem";
|
- |
|
3488 |
this->addNewToolStripMenuItem->Size = System::Drawing::Size(168, 26);
|
- |
|
3489 |
this->addNewToolStripMenuItem->Text = L"Add New";
|
- |
|
3490 |
//
|
- |
|
3491 |
// toolStripSeparator6
|
- |
|
3492 |
//
|
- |
|
3493 |
this->toolStripSeparator6->Name = L"toolStripSeparator6";
|
- |
|
3494 |
this->toolStripSeparator6->Size = System::Drawing::Size(165, 6);
|
- |
|
3495 |
//
|
- |
|
3496 |
// editSelectedToolStripMenuItem1
|
- |
|
3497 |
//
|
- |
|
3498 |
this->editSelectedToolStripMenuItem1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"editSelectedToolStripMenuItem1.Image")));
|
- |
|
3499 |
this->editSelectedToolStripMenuItem1->Name = L"editSelectedToolStripMenuItem1";
|
- |
|
3500 |
this->editSelectedToolStripMenuItem1->Size = System::Drawing::Size(168, 26);
|
- |
|
3501 |
this->editSelectedToolStripMenuItem1->Text = L"Edit Selected";
|
- |
|
3502 |
//
|
- |
|
3503 |
// removeSelectedToolStripMenuItem
|
- |
|
3504 |
//
|
- |
|
3505 |
this->removeSelectedToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"removeSelectedToolStripMenuItem.Image")));
|
- |
|
3506 |
this->removeSelectedToolStripMenuItem->Name = L"removeSelectedToolStripMenuItem";
|
- |
|
3507 |
this->removeSelectedToolStripMenuItem->Size = System::Drawing::Size(168, 26);
|
- |
|
3508 |
this->removeSelectedToolStripMenuItem->Text = L"Remove Selected";
|
- |
|
3509 |
//
|
- |
|
3510 |
// toolStripSeparator7
|
- |
|
3511 |
//
|
- |
|
3512 |
this->toolStripSeparator7->Name = L"toolStripSeparator7";
|
- |
|
3513 |
this->toolStripSeparator7->Size = System::Drawing::Size(165, 6);
|
- |
|
3514 |
//
|
- |
|
3515 |
// clearAllToolStripMenuItem2
|
- |
|
3516 |
//
|
- |
|
3517 |
this->clearAllToolStripMenuItem2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"clearAllToolStripMenuItem2.Image")));
|
- |
|
3518 |
this->clearAllToolStripMenuItem2->Name = L"clearAllToolStripMenuItem2";
|
- |
|
3519 |
this->clearAllToolStripMenuItem2->Size = System::Drawing::Size(168, 26);
|
- |
|
3520 |
this->clearAllToolStripMenuItem2->Text = L"Clear All";
|
3376 |
//
|
3521 |
//
|
3377 |
// CheckShipID
|
3522 |
// CheckShipID
|
3378 |
//
|
3523 |
//
|
3379 |
this->CheckShipID->AutoSize = true;
|
3524 |
this->CheckShipID->AutoSize = true;
|
3380 |
this->CheckShipID->Dock = System::Windows::Forms::DockStyle::Left;
|
3525 |
this->CheckShipID->Dock = System::Windows::Forms::DockStyle::Left;
|
Line 3384... |
Line 3529... |
3384 |
this->CheckShipID->TabIndex = 2;
|
3529 |
this->CheckShipID->TabIndex = 2;
|
3385 |
this->CheckShipID->Text = L"Replace Existing Ship";
|
3530 |
this->CheckShipID->Text = L"Replace Existing Ship";
|
3386 |
this->CheckShipID->UseVisualStyleBackColor = true;
|
3531 |
this->CheckShipID->UseVisualStyleBackColor = true;
|
3387 |
this->CheckShipID->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckShipID_CheckedChanged);
|
3532 |
this->CheckShipID->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckShipID_CheckedChanged);
|
3388 |
//
|
3533 |
//
|
3389 |
// panel1
|
3534 |
// panel1
|
3390 |
//
|
3535 |
//
|
3391 |
this->panel1->Controls->Add(this->TextName);
|
3536 |
this->panel1->Controls->Add(this->TextName);
|
3392 |
this->panel1->Controls->Add(this->label1);
|
3537 |
this->panel1->Controls->Add(this->label1);
|
3393 |
this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
|
3538 |
this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
|
3394 |
this->panel1->Location = System::Drawing::Point(5, 36);
|
3539 |
this->panel1->Location = System::Drawing::Point(5, 36);
|
3395 |
this->panel1->Name = L"panel1";
|
3540 |
this->panel1->Name = L"panel1";
|
3396 |
this->panel1->Size = System::Drawing::Size(756, 17);
|
3541 |
this->panel1->Size = System::Drawing::Size(756, 17);
|
3397 |
this->panel1->TabIndex = 2;
|
3542 |
this->panel1->TabIndex = 2;
|
3398 |
//
|
3543 |
//
|
3399 |
// TextName
|
3544 |
// TextName
|
3400 |
//
|
3545 |
//
|
3401 |
this->TextName->Dock = System::Windows::Forms::DockStyle::Fill;
|
3546 |
this->TextName->Dock = System::Windows::Forms::DockStyle::Fill;
|
3402 |
this->TextName->Location = System::Drawing::Point(157, 0);
|
3547 |
this->TextName->Location = System::Drawing::Point(157, 0);
|
3403 |
this->TextName->Name = L"TextName";
|
3548 |
this->TextName->Name = L"TextName";
|
3404 |
this->TextName->Size = System::Drawing::Size(599, 20);
|
3549 |
this->TextName->Size = System::Drawing::Size(599, 20);
|
3405 |
this->TextName->TabIndex = 1;
|
3550 |
this->TextName->TabIndex = 1;
|
Line 3464... |
Line 3609... |
3464 |
this->TextVersion->Location = System::Drawing::Point(157, 0);
|
3609 |
this->TextVersion->Location = System::Drawing::Point(157, 0);
|
3465 |
this->TextVersion->Name = L"TextVersion";
|
3610 |
this->TextVersion->Name = L"TextVersion";
|
3466 |
this->TextVersion->Size = System::Drawing::Size(599, 20);
|
3611 |
this->TextVersion->Size = System::Drawing::Size(599, 20);
|
3467 |
this->TextVersion->TabIndex = 1;
|
3612 |
this->TextVersion->TabIndex = 1;
|
3468 |
this->TextVersion->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextVersion_TextChanged);
|
3613 |
this->TextVersion->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextVersion_TextChanged);
|
3469 |
//
|
3614 |
//
|
3470 |
// label3
|
3615 |
// label3
|
3471 |
//
|
3616 |
//
|
3472 |
this->label3->Dock = System::Windows::Forms::DockStyle::Left;
|
3617 |
this->label3->Dock = System::Windows::Forms::DockStyle::Left;
|
3473 |
this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
3618 |
this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
|
3474 |
static_cast<System::Byte>(0)));
|
3619 |
static_cast<System::Byte>(0)));
|
Line 3667... |
Line 3812... |
3667 |
this->Controls->Add(this->panel2);
|
3812 |
this->Controls->Add(this->panel2);
|
3668 |
this->Controls->Add(this->panel1);
|
3813 |
this->Controls->Add(this->panel1);
|
3669 |
this->Controls->Add(this->toolStrip1);
|
3814 |
this->Controls->Add(this->toolStrip1);
|
3670 |
this->Icon = (cli::safe_cast<System::Drawing::Icon^>(resources->GetObject(L"$this.Icon")));
|
3815 |
this->Icon = (cli::safe_cast<System::Drawing::Icon^>(resources->GetObject(L"$this.Icon")));
|
3671 |
this->Name = L"PackageForm";
|
3816 |
this->Name = L"PackageForm";
|
3672 |
this->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
|
3817 |
this->Padding = System::Windows::Forms::Padding(5);
|
3673 |
this->ShowIcon = false;
|
3818 |
this->ShowIcon = false;
|
3674 |
this->ShowInTaskbar = false;
|
3819 |
this->ShowInTaskbar = false;
|
3675 |
this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
|
3820 |
this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
|
3676 |
this->Text = L"Package";
|
3821 |
this->Text = L"Package";
|
3677 |
this->Load += gcnew System::EventHandler(this, &PackageForm::PackageForm_Load);
|
3822 |
this->Load += gcnew System::EventHandler(this, &PackageForm::PackageForm_Load);
|
Line 3761... |
Line 3906... |
3761 |
this->flowLayoutPanel3->PerformLayout();
|
3906 |
this->flowLayoutPanel3->PerformLayout();
|
3762 |
this->PageShipComp->ResumeLayout(false);
|
3907 |
this->PageShipComp->ResumeLayout(false);
|
3763 |
this->panel26->ResumeLayout(false);
|
3908 |
this->panel26->ResumeLayout(false);
|
3764 |
this->ContextShipPart->ResumeLayout(false);
|
3909 |
this->ContextShipPart->ResumeLayout(false);
|
3765 |
this->panel25->ResumeLayout(false);
|
3910 |
this->panel25->ResumeLayout(false);
|
- |
|
3911 |
this->tabGlobals->ResumeLayout(false);
|
- |
|
3912 |
this->contextGlobal->ResumeLayout(false);
|
3766 |
this->panel1->ResumeLayout(false);
|
3913 |
this->panel1->ResumeLayout(false);
|
3767 |
this->panel1->PerformLayout();
|
3914 |
this->panel1->PerformLayout();
|
3768 |
this->panel2->ResumeLayout(false);
|
3915 |
this->panel2->ResumeLayout(false);
|
3769 |
this->panel2->PerformLayout();
|
3916 |
this->panel2->PerformLayout();
|
3770 |
this->panel3->ResumeLayout(false);
|
3917 |
this->panel3->ResumeLayout(false);
|
Line 5464... |
Line 5611... |
5464 |
this->UpdateChanged();
|
5611 |
this->UpdateChanged();
|
5465 |
}
|
5612 |
}
|
5466 |
private: System::Void ComboGameFilter_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
|
5613 |
private: System::Void ComboGameFilter_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
|
5467 |
this->UpdateFileList();
|
5614 |
this->UpdateFileList();
|
5468 |
}
|
5615 |
}
|
- |
|
5616 |
private: System::Void butAddGlobal_Click(System::Object^ sender, System::EventArgs^ e) {
|
- |
|
5617 |
this->AddNewGlobal();
|
- |
|
5618 |
}
|
- |
|
5619 |
private: System::Void butGlobalClear_Click(System::Object^ sender, System::EventArgs^ e) {
|
- |
|
5620 |
m_pPackage->clearGlobals();
|
- |
|
5621 |
this->UpdateGlobals();
|
- |
|
5622 |
this->UpdateChanged();
|
- |
|
5623 |
}
|
5469 |
};
|
5624 |
};
|
5470 |
}
|
5625 |
}
|