| Line 41... |
Line 41... |
| 41 |
#else
|
41 |
#else
|
| 42 |
public ref class PackageForm : public Creator::BaseForm
|
42 |
public ref class PackageForm : public Creator::BaseForm
|
| 43 |
#endif
|
43 |
#endif
|
| 44 |
{
|
44 |
{
|
| 45 |
public:
|
45 |
public:
|
| 46 |
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);
|
46 |
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) : BaseForm(parent, ctrl, page, tool, p, imagelist, set),
|
| 47 |
|
- |
|
| - |
|
47 |
_addGameItem(nullptr),
|
| 48 |
void SetImageLists(ImageList ^smallList, ImageList ^largeList, ImageList ^gameList, ImageList ^fileList)
|
48 |
_removeGameItem(nullptr)
|
| 49 |
{
|
49 |
{
|
| 50 |
BaseForm::SetImageLists(smallList, largeList, gameList);
|
50 |
InitializeComponent();
|
| - |
|
51 |
m_pSettings = set;
|
| - |
|
52 |
_init();
|
| - |
|
53 |
}
|
| 51 |
|
54 |
|
| 52 |
this->ListGames->SmallImageList = this->imageListGames;
|
- |
|
| 53 |
this->ListGames->LargeImageList = this->imageListGames;
|
- |
|
| 54 |
this->ListNames->SmallImageList = this->imageListSmall;
|
- |
|
| 55 |
this->ListMirrors->SmallImageList = this->imageListSmall;
|
- |
|
| 56 |
this->ListWares->SmallImageList = this->imageListSmall;
|
- |
|
| 57 |
this->ListWareText->SmallImageList = this->imageListSmall;
|
- |
|
| 58 |
this->ListShipText->SmallImageList = this->imageListSmall;
|
- |
|
| 59 |
this->ListShipPart->SmallImageList = this->imageListSmall;
|
- |
|
| 60 |
|
- |
|
| 61 |
this->ListNames->LargeImageList = this->imageListLarge;
|
- |
|
| 62 |
this->ListMirrors->LargeImageList = this->imageListLarge;
|
- |
|
| 63 |
this->ListWares->LargeImageList = this->imageListLarge;
|
- |
|
| 64 |
this->ListWareText->LargeImageList = this->imageListLarge;
|
- |
|
| 65 |
this->ListShipText->LargeImageList = this->imageListLarge;
|
- |
|
| 66 |
this->ListShipPart->LargeImageList = this->imageListLarge;
|
- |
|
| 67 |
|
- |
|
| 68 |
this->ButGame->ImageList = this->imageListGames;
|
- |
|
| 69 |
|
- |
|
| 70 |
this->imageListFiles = fileList;
|
- |
|
| 71 |
this->ListFiles->LargeImageList = this->imageListFiles;
|
- |
|
| 72 |
this->ListFiles->SmallImageList = this->imageListFiles;
|
- |
|
| 73 |
|
- |
|
| 74 |
this->Setup();
|
55 |
void _init();
|
| 75 |
}
|
- |
|
| 76 |
|
56 |
|
| - |
|
57 |
void SetImageLists(ImageList ^smallList, ImageList ^largeList, ImageList ^gameList, ImageList ^fileList);
|
| 77 |
CGameDirectories *gameDirectories();
|
58 |
CGameDirectories *gameDirectories();
|
| 78 |
|
59 |
|
| 79 |
void CreateShip() {
|
60 |
void CreateShip() {
|
| 80 |
if ( m_pPackage ) delete m_pPackage;
|
61 |
if ( m_pPackage ) delete m_pPackage;
|
| 81 |
m_pPackage = new CXspFile;
|
62 |
m_pPackage = new CXspFile;
|
| Line 202... |
Line 183... |
| 202 |
CPackages *_pPackages;
|
183 |
CPackages *_pPackages;
|
| 203 |
|
184 |
|
| 204 |
ToolStripMenuItem ^_addGameItem;
|
185 |
ToolStripMenuItem ^_addGameItem;
|
| 205 |
ToolStripMenuItem ^_removeGameItem;
|
186 |
ToolStripMenuItem ^_removeGameItem;
|
| 206 |
|
187 |
|
| 207 |
private: System::Windows::Forms::ContextMenuStrip^ ContextShipText;
|
188 |
private: System::Windows::Forms::ContextMenuStrip^ ContextShipText;
|
| 208 |
private: System::Windows::Forms::ToolStripMenuItem^ addLanguageToolStripMenuItem;
|
189 |
private: System::Windows::Forms::ToolStripMenuItem^ addLanguageToolStripMenuItem;
|
| 209 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipTextSep1;
|
190 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipTextSep1;
|
| 210 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipTextEdit;
|
191 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipTextEdit;
|
| 211 |
|
- |
|
| 212 |
|
- |
|
| 213 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipTextRemove;
|
192 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipTextRemove;
|
| 214 |
|
- |
|
| 215 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipTextSep2;
|
193 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipTextSep2;
|
| 216 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipTextClear;
|
194 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipTextClear;
|
| 217 |
private: System::Windows::Forms::TabPage^ PageRaw;
|
195 |
private: System::Windows::Forms::TabPage^ PageRaw;
|
| 218 |
private: System::Windows::Forms::Panel^ panel23;
|
196 |
private: System::Windows::Forms::Panel^ panel23;
|
| 219 |
private: System::Windows::Forms::RichTextBox^ TextShipData;
|
197 |
private: System::Windows::Forms::RichTextBox^ TextShipData;
|
| 220 |
|
- |
|
| 221 |
private: System::Windows::Forms::CheckBox^ checkBox1;
|
198 |
private: System::Windows::Forms::CheckBox^ checkBox1;
|
| 222 |
private: System::Windows::Forms::Button^ button3;
|
199 |
private: System::Windows::Forms::Button^ button3;
|
| 223 |
private: System::Windows::Forms::Panel^ panel24;
|
200 |
private: System::Windows::Forms::Panel^ panel24;
|
| 224 |
private: System::Windows::Forms::Label^ label17;
|
201 |
private: System::Windows::Forms::Label^ label17;
|
| 225 |
private: System::Windows::Forms::TabPage^ PageShipComp;
|
202 |
private: System::Windows::Forms::TabPage^ PageShipComp;
|
| 226 |
private: System::Windows::Forms::Panel^ panel25;
|
203 |
private: System::Windows::Forms::Panel^ panel25;
|
| 227 |
private: System::Windows::Forms::ComboBox^ ComboShipPart;
|
204 |
private: System::Windows::Forms::ComboBox^ ComboShipPart;
|
| 228 |
|
- |
|
| 229 |
private: System::Windows::Forms::Label^ label18;
|
205 |
private: System::Windows::Forms::Label^ label18;
|
| 230 |
private: System::Windows::Forms::Panel^ panel26;
|
206 |
private: System::Windows::Forms::Panel^ panel26;
|
| 231 |
private: System::Windows::Forms::ListView^ ListShipPart;
|
207 |
private: System::Windows::Forms::ListView^ ListShipPart;
|
| 232 |
|
- |
|
| 233 |
private: System::Windows::Forms::ColumnHeader^ ColumnPart1;
|
208 |
private: System::Windows::Forms::ColumnHeader^ ColumnPart1;
|
| 234 |
private: System::Windows::Forms::ColumnHeader^ ColumnPart2;
|
209 |
private: System::Windows::Forms::ColumnHeader^ ColumnPart2;
|
| 235 |
private: System::Windows::Forms::ColumnHeader^ ColumnPart3;
|
210 |
private: System::Windows::Forms::ColumnHeader^ ColumnPart3;
|
| 236 |
private: System::Windows::Forms::ToolStrip^ toolStrip1;
|
211 |
private: System::Windows::Forms::ToolStrip^ toolStrip1;
|
| 237 |
private: System::Windows::Forms::ToolStripButton^ toolStripButton2;
|
212 |
private: System::Windows::Forms::ToolStripButton^ toolStripButton2;
|
| Line 239... |
Line 214... |
| 239 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator3;
|
214 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator3;
|
| 240 |
private: System::Windows::Forms::ToolStripButton^ toolStripButton1;
|
215 |
private: System::Windows::Forms::ToolStripButton^ toolStripButton1;
|
| 241 |
private: System::Windows::Forms::ContextMenuStrip^ ContextShipPart;
|
216 |
private: System::Windows::Forms::ContextMenuStrip^ ContextShipPart;
|
| 242 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartAdd;
|
217 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartAdd;
|
| 243 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipPartSep1;
|
218 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipPartSep1;
|
| 244 |
|
- |
|
| 245 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartRemove;
|
219 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartRemove;
|
| 246 |
|
- |
|
| 247 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartEdit;
|
220 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartEdit;
|
| 248 |
|
- |
|
| 249 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipPartSep2;
|
221 |
private: System::Windows::Forms::ToolStripSeparator^ ContextShipPartSep2;
|
| 250 |
private: System::Windows::Forms::TabPage^ tabPage4;
|
222 |
private: System::Windows::Forms::TabPage^ tabPage4;
|
| 251 |
private: System::Windows::Forms::ListView^ ListDep;
|
223 |
private: System::Windows::Forms::ListView^ ListDep;
|
| 252 |
private: System::Windows::Forms::ColumnHeader^ columnHeader22;
|
224 |
private: System::Windows::Forms::ColumnHeader^ columnHeader22;
|
| 253 |
private: System::Windows::Forms::ColumnHeader^ columnHeader23;
|
225 |
private: System::Windows::Forms::ColumnHeader^ columnHeader23;
|
| Line 271... |
Line 243... |
| 271 |
private: System::Windows::Forms::ToolStripMenuItem^ importTextToolStripMenuItem;
|
243 |
private: System::Windows::Forms::ToolStripMenuItem^ importTextToolStripMenuItem;
|
| 272 |
private: System::Windows::Forms::ToolStripMenuItem^ fromFileToolStripMenuItem;
|
244 |
private: System::Windows::Forms::ToolStripMenuItem^ fromFileToolStripMenuItem;
|
| 273 |
private: System::Windows::Forms::ToolStripMenuItem^ fromDirectoryToolStripMenuItem;
|
245 |
private: System::Windows::Forms::ToolStripMenuItem^ fromDirectoryToolStripMenuItem;
|
| 274 |
private: System::Windows::Forms::ToolStripMenuItem^ fromModToolStripMenuItem;
|
246 |
private: System::Windows::Forms::ToolStripMenuItem^ fromModToolStripMenuItem;
|
| 275 |
private: System::Windows::Forms::ToolStripMenuItem^ importToolStripMenuItem;
|
247 |
private: System::Windows::Forms::ToolStripMenuItem^ importToolStripMenuItem;
|
| 276 |
|
- |
|
| 277 |
|
- |
|
| 278 |
|
- |
|
| 279 |
private: System::Windows::Forms::ToolTip^ toolTip1;
|
248 |
private: System::Windows::Forms::ToolTip^ toolTip1;
|
| 280 |
private: System::Windows::Forms::ToolTip^ toolTip2;
|
249 |
private: System::Windows::Forms::ToolTip^ toolTip2;
|
| 281 |
|
- |
|
| 282 |
private: System::Windows::Forms::ToolStripMenuItem^ packFileToolStripMenuItem;
|
250 |
private: System::Windows::Forms::ToolStripMenuItem^ packFileToolStripMenuItem;
|
| 283 |
private: System::Windows::Forms::ToolStripMenuItem^ unpackFileToolStripMenuItem;
|
251 |
private: System::Windows::Forms::ToolStripMenuItem^ unpackFileToolStripMenuItem;
|
| 284 |
private: System::Windows::Forms::ToolStripMenuItem^ convertToFakePatchToolStripMenuItem;
|
252 |
private: System::Windows::Forms::ToolStripMenuItem^ convertToFakePatchToolStripMenuItem;
|
| 285 |
private: System::Windows::Forms::ToolStripMenuItem^ convertToNormalModToolStripMenuItem;
|
253 |
private: System::Windows::Forms::ToolStripMenuItem^ convertToNormalModToolStripMenuItem;
|
| 286 |
private: System::Windows::Forms::ToolStripMenuItem^ renameFileToolStripMenuItem;
|
254 |
private: System::Windows::Forms::ToolStripMenuItem^ renameFileToolStripMenuItem;
|
| Line 293... |
Line 261... |
| 293 |
private: System::Windows::Forms::ToolStripButton^ toolStripButton5;
|
261 |
private: System::Windows::Forms::ToolStripButton^ toolStripButton5;
|
| 294 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator5;
|
262 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator5;
|
| 295 |
private: System::Windows::Forms::ToolStripMenuItem^ convertToAutoTextFileToolStripMenuItem;
|
263 |
private: System::Windows::Forms::ToolStripMenuItem^ convertToAutoTextFileToolStripMenuItem;
|
| 296 |
private: System::Windows::Forms::ColumnHeader^ columnHeader25;
|
264 |
private: System::Windows::Forms::ColumnHeader^ columnHeader25;
|
| 297 |
private: System::Windows::Forms::TabPage^ tabPage5;
|
265 |
private: System::Windows::Forms::TabPage^ tabPage5;
|
| 298 |
|
- |
|
| 299 |
private: System::Windows::Forms::GroupBox^ groupBox8;
|
266 |
private: System::Windows::Forms::GroupBox^ groupBox8;
|
| 300 |
private: System::Windows::Forms::Panel^ panel10;
|
267 |
private: System::Windows::Forms::Panel^ panel10;
|
| 301 |
private: System::Windows::Forms::Panel^ panel21;
|
268 |
private: System::Windows::Forms::Panel^ panel21;
|
| 302 |
private: System::Windows::Forms::ComboBox^ ComboVersion;
|
269 |
private: System::Windows::Forms::ComboBox^ ComboVersion;
|
| 303 |
private: System::Windows::Forms::TextBox^ TextExactVersion;
|
270 |
private: System::Windows::Forms::TextBox^ TextExactVersion;
|
| 304 |
private: System::Windows::Forms::Button^ ButGame;
|
271 |
private: System::Windows::Forms::Button^ ButGame;
|
| 305 |
|
- |
|
| 306 |
private: System::Windows::Forms::ListView^ ListGames;
|
272 |
private: System::Windows::Forms::ListView^ ListGames;
|
| 307 |
private: System::Windows::Forms::ColumnHeader^ columnHeader26;
|
273 |
private: System::Windows::Forms::ColumnHeader^ columnHeader26;
|
| 308 |
private: System::Windows::Forms::ColumnHeader^ columnHeader27;
|
274 |
private: System::Windows::Forms::ColumnHeader^ columnHeader27;
|
| 309 |
|
- |
|
| 310 |
private: System::Windows::Forms::Button^ ButGameAdd;
|
275 |
private: System::Windows::Forms::Button^ ButGameAdd;
|
| 311 |
private: System::Windows::Forms::ColumnHeader^ columnHeader28;
|
276 |
private: System::Windows::Forms::ColumnHeader^ columnHeader28;
|
| 312 |
private: System::Windows::Forms::ToolStripMenuItem^ ToolGame;
|
277 |
private: System::Windows::Forms::ToolStripMenuItem^ ToolGame;
|
| 313 |
private: System::Windows::Forms::ComboBox^ ComboGameFilter;
|
278 |
private: System::Windows::Forms::ComboBox^ ComboGameFilter;
|
| 314 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartClear;
|
279 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextShipPartClear;
|
| 315 |
|
- |
|
| 316 |
private: System::Windows::Forms::Panel^ panel6;
|
280 |
private: System::Windows::Forms::Panel^ panel6;
|
| 317 |
private: System::Windows::Forms::Button^ ButRemoveFile;
|
281 |
private: System::Windows::Forms::Button^ ButRemoveFile;
|
| 318 |
private: System::Windows::Forms::Button^ button2;
|
282 |
private: System::Windows::Forms::Button^ button2;
|
| 319 |
private: System::Windows::Forms::Button^ button1;
|
283 |
private: System::Windows::Forms::Button^ button1;
|
| 320 |
|
- |
|
| 321 |
private: System::Windows::Forms::ColumnHeader^ columnHeader18;
|
284 |
private: System::Windows::Forms::ColumnHeader^ columnHeader18;
|
| 322 |
private: System::Windows::Forms::Panel^ panel22;
|
285 |
private: System::Windows::Forms::Panel^ panel22;
|
| 323 |
private: System::Windows::Forms::Label^ label15;
|
286 |
private: System::Windows::Forms::Label^ label15;
|
| 324 |
private: System::Windows::Forms::ComboBox^ ComboPluginType;
|
287 |
private: System::Windows::Forms::ComboBox^ ComboPluginType;
|
| 325 |
private: System::Windows::Forms::TabPage^ PageShip;
|
288 |
private: System::Windows::Forms::TabPage^ PageShip;
|
| 326 |
private: System::Windows::Forms::CheckBox^ CheckShipID;
|
289 |
private: System::Windows::Forms::CheckBox^ CheckShipID;
|
| 327 |
private: System::Windows::Forms::FlowLayoutPanel^ flowLayoutPanel2;
|
290 |
private: System::Windows::Forms::FlowLayoutPanel^ flowLayoutPanel2;
|
| 328 |
private: System::Windows::Forms::CheckBox^ CheckSYArgon;
|
291 |
private: System::Windows::Forms::CheckBox^ CheckSYArgon;
|
| 329 |
private: System::Windows::Forms::CheckBox^ CheckSYBoron;
|
292 |
private: System::Windows::Forms::CheckBox^ CheckSYBoron;
|
| 330 |
private: System::Windows::Forms::CheckBox^ CheckSYParanid;
|
293 |
private: System::Windows::Forms::CheckBox^ CheckSYParanid;
|
| 331 |
private: System::Windows::Forms::CheckBox^ CheckSYTeladi;
|
294 |
private: System::Windows::Forms::CheckBox^ CheckSYTeladi;
|
| 332 |
private: System::Windows::Forms::CheckBox^ CheckSYSplit;
|
295 |
private: System::Windows::Forms::CheckBox^ CheckSYSplit;
|
| 333 |
private: System::Windows::Forms::CheckBox^ CheckSYPirate;
|
296 |
private: System::Windows::Forms::CheckBox^ CheckSYPirate;
|
| 334 |
private: System::Windows::Forms::CheckBox^ CheckSYFriend;
|
297 |
private: System::Windows::Forms::CheckBox^ CheckSYFriend;
|
| 335 |
private: System::Windows::Forms::CheckBox^ CheckSYXenon;
|
298 |
private: System::Windows::Forms::CheckBox^ CheckSYXenon;
|
| 336 |
private: System::Windows::Forms::CheckBox^ CheckSYTerran;
|
299 |
private: System::Windows::Forms::CheckBox^ CheckSYTerran;
|
| 337 |
private: System::Windows::Forms::CheckBox^ CheckSYATF;
|
300 |
private: System::Windows::Forms::CheckBox^ CheckSYATF;
|
| 338 |
private: System::Windows::Forms::ListView^ ListShipText;
|
301 |
private: System::Windows::Forms::ListView^ ListShipText;
|
| 339 |
private: System::Windows::Forms::CheckBox^ CheckSYYaki;
|
302 |
private: System::Windows::Forms::CheckBox^ CheckSYYaki;
|
| 340 |
private: System::Windows::Forms::CheckBox^ CheckExistingText;
|
303 |
private: System::Windows::Forms::CheckBox^ CheckExistingText;
|
| 341 |
private: System::Windows::Forms::ColumnHeader^ columnHeader19;
|
304 |
private: System::Windows::Forms::ColumnHeader^ columnHeader19;
|
| 342 |
private: System::Windows::Forms::ColumnHeader^ columnHeader20;
|
305 |
private: System::Windows::Forms::ColumnHeader^ columnHeader20;
|
| 343 |
private: System::Windows::Forms::ColumnHeader^ columnHeader21;
|
306 |
private: System::Windows::Forms::ColumnHeader^ columnHeader21;
|
| 344 |
private: System::Windows::Forms::Panel^ PanelTextID;
|
307 |
private: System::Windows::Forms::Panel^ PanelTextID;
|
| 345 |
private: System::Windows::Forms::NumericUpDown^ NumTextID;
|
308 |
private: System::Windows::Forms::NumericUpDown^ NumTextID;
|
| 346 |
private: System::Windows::Forms::Label^ label6;
|
309 |
private: System::Windows::Forms::Label^ label6;
|
| 347 |
private: System::Windows::Forms::Panel^ PanelShip;
|
310 |
private: System::Windows::Forms::Panel^ PanelShip;
|
| 348 |
private: System::Windows::Forms::TextBox^ TextShipID;
|
311 |
private: System::Windows::Forms::TextBox^ TextShipID;
|
| 349 |
private: System::Windows::Forms::Label^ label16;
|
312 |
private: System::Windows::Forms::Label^ label16;
|
| 350 |
private: System::Windows::Forms::Panel^ panel7;
|
313 |
private: System::Windows::Forms::Panel^ panel7;
|
| 351 |
private: System::Windows::Forms::GroupBox^ groupBox2;
|
314 |
private: System::Windows::Forms::GroupBox^ groupBox2;
|
| 352 |
private: System::Windows::Forms::RichTextBox^ TextDesc;
|
315 |
private: System::Windows::Forms::RichTextBox^ TextDesc;
|
| 353 |
private: System::Windows::Forms::Panel^ panel8;
|
316 |
private: System::Windows::Forms::Panel^ panel8;
|
| 354 |
private: System::Windows::Forms::Label^ label7;
|
317 |
private: System::Windows::Forms::Label^ label7;
|
| 355 |
private: System::Windows::Forms::RadioButton^ RadioTypeUpdate;
|
318 |
private: System::Windows::Forms::RadioButton^ RadioTypeUpdate;
|
| 356 |
private: System::Windows::Forms::RadioButton^ RadioTypeStart;
|
319 |
private: System::Windows::Forms::RadioButton^ RadioTypeStart;
|
| 357 |
private: System::Windows::Forms::RadioButton^ RadioTypeScript;
|
320 |
private: System::Windows::Forms::RadioButton^ RadioTypeScript;
|
| 358 |
private: System::Windows::Forms::FlowLayoutPanel^ flowLayoutPanel1;
|
321 |
private: System::Windows::Forms::FlowLayoutPanel^ flowLayoutPanel1;
|
| 359 |
private: System::Windows::Forms::RadioButton^ RadioTypeLibrary;
|
322 |
private: System::Windows::Forms::RadioButton^ RadioTypeLibrary;
|
| 360 |
private: System::Windows::Forms::RadioButton^ RadioTypePatch;
|
323 |
private: System::Windows::Forms::RadioButton^ RadioTypePatch;
|
| 361 |
|
- |
|
| 362 |
private: System::Windows::Forms::Panel^ panel9;
|
324 |
private: System::Windows::Forms::Panel^ panel9;
|
| 363 |
private: System::Windows::Forms::ComboBox^ ComboType;
|
325 |
private: System::Windows::Forms::ComboBox^ ComboType;
|
| 364 |
private: System::Windows::Forms::TabPage^ PagePackage;
|
326 |
private: System::Windows::Forms::TabPage^ PagePackage;
|
| 365 |
private: System::Windows::Forms::TabPage^ tabPage2;
|
327 |
private: System::Windows::Forms::TabPage^ tabPage2;
|
| 366 |
|
- |
|
| 367 |
|
- |
|
| 368 |
|
- |
|
| 369 |
private: System::Windows::Forms::Panel^ panel12;
|
328 |
private: System::Windows::Forms::Panel^ panel12;
|
| 370 |
|
- |
|
| 371 |
|
- |
|
| 372 |
|
- |
|
| 373 |
private: System::Windows::Forms::Label^ label10;
|
329 |
private: System::Windows::Forms::Label^ label10;
|
| 374 |
private: System::Windows::Forms::Panel^ panel11;
|
330 |
private: System::Windows::Forms::Panel^ panel11;
|
| 375 |
|
- |
|
| 376 |
|
- |
|
| 377 |
private: System::Windows::Forms::Label^ label9;
|
331 |
private: System::Windows::Forms::Label^ label9;
|
| 378 |
|
- |
|
| 379 |
private: System::Windows::Forms::Panel^ panel13;
|
332 |
private: System::Windows::Forms::Panel^ panel13;
|
| 380 |
|
- |
|
| 381 |
|
- |
|
| 382 |
private: System::Windows::Forms::Label^ label11;
|
333 |
private: System::Windows::Forms::Label^ label11;
|
| 383 |
private: System::Windows::Forms::TabPage^ tabPage3;
|
334 |
private: System::Windows::Forms::TabPage^ tabPage3;
|
| 384 |
private: System::Windows::Forms::GroupBox^ groupBox3;
|
335 |
private: System::Windows::Forms::GroupBox^ groupBox3;
|
| 385 |
private: System::Windows::Forms::CheckBox^ CheckOther;
|
336 |
private: System::Windows::Forms::CheckBox^ CheckOther;
|
| 386 |
|
- |
|
| 387 |
private: System::Windows::Forms::Label^ label13;
|
337 |
private: System::Windows::Forms::Label^ label13;
|
| 388 |
private: System::Windows::Forms::TextBox^ TextOtherName;
|
338 |
private: System::Windows::Forms::TextBox^ TextOtherName;
|
| 389 |
|
- |
|
| 390 |
private: System::Windows::Forms::Label^ label12;
|
339 |
private: System::Windows::Forms::Label^ label12;
|
| 391 |
private: System::Windows::Forms::TextBox^ TextOtherAuthor;
|
340 |
private: System::Windows::Forms::TextBox^ TextOtherAuthor;
|
| 392 |
|
- |
|
| 393 |
private: System::Windows::Forms::Button^ ButFromFile;
|
341 |
private: System::Windows::Forms::Button^ ButFromFile;
|
| 394 |
private: System::Windows::Forms::GroupBox^ groupBox4;
|
342 |
private: System::Windows::Forms::GroupBox^ groupBox4;
|
| 395 |
private: System::Windows::Forms::Label^ label14;
|
343 |
private: System::Windows::Forms::Label^ label14;
|
| 396 |
private: System::Windows::Forms::ListView^ ListNames;
|
344 |
private: System::Windows::Forms::ListView^ ListNames;
|
| 397 |
private: System::Windows::Forms::ColumnHeader^ columnHeader7;
|
345 |
private: System::Windows::Forms::ColumnHeader^ columnHeader7;
|
| 398 |
private: System::Windows::Forms::ColumnHeader^ columnHeader8;
|
346 |
private: System::Windows::Forms::ColumnHeader^ columnHeader8;
|
| 399 |
private: System::Windows::Forms::ListView^ ListMirrors;
|
347 |
private: System::Windows::Forms::ListView^ ListMirrors;
|
| 400 |
private: System::Windows::Forms::ColumnHeader^ columnHeader6;
|
348 |
private: System::Windows::Forms::ColumnHeader^ columnHeader6;
|
| 401 |
private: System::Windows::Forms::Panel^ panel14;
|
349 |
private: System::Windows::Forms::Panel^ panel14;
|
| 402 |
|
- |
|
| 403 |
private: System::Windows::Forms::ContextMenuStrip^ ContextMirror;
|
350 |
private: System::Windows::Forms::ContextMenuStrip^ ContextMirror;
|
| 404 |
private: System::Windows::Forms::ContextMenuStrip^ ContextLangName;
|
351 |
private: System::Windows::Forms::ContextMenuStrip^ ContextLangName;
|
| 405 |
private: System::Windows::Forms::ToolStripMenuItem^ addMirrorToolStripMenuItem;
|
352 |
private: System::Windows::Forms::ToolStripMenuItem^ addMirrorToolStripMenuItem;
|
| 406 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator1;
|
353 |
private: System::Windows::Forms::ToolStripSeparator^ toolStripSeparator1;
|
| 407 |
private: System::Windows::Forms::ToolStripMenuItem^ clearAllToolStripMenuItem;
|
354 |
private: System::Windows::Forms::ToolStripMenuItem^ clearAllToolStripMenuItem;
|
| Line 462... |
Line 409... |
| 462 |
private: System::Windows::Forms::ColumnHeader^ columnHeader11;
|
409 |
private: System::Windows::Forms::ColumnHeader^ columnHeader11;
|
| 463 |
private: System::Windows::Forms::ColumnHeader^ columnHeader12;
|
410 |
private: System::Windows::Forms::ColumnHeader^ columnHeader12;
|
| 464 |
private: System::Windows::Forms::ColumnHeader^ columnHeader13;
|
411 |
private: System::Windows::Forms::ColumnHeader^ columnHeader13;
|
| 465 |
private: System::Windows::Forms::ColumnHeader^ columnHeader14;
|
412 |
private: System::Windows::Forms::ColumnHeader^ columnHeader14;
|
| 466 |
private: System::Windows::Forms::ListView^ ListWareText;
|
413 |
private: System::Windows::Forms::ListView^ ListWareText;
|
| 467 |
|
- |
|
| 468 |
private: System::Windows::Forms::ColumnHeader^ columnHeader15;
|
414 |
private: System::Windows::Forms::ColumnHeader^ columnHeader15;
|
| 469 |
private: System::Windows::Forms::ColumnHeader^ columnHeader16;
|
415 |
private: System::Windows::Forms::ColumnHeader^ columnHeader16;
|
| 470 |
private: System::Windows::Forms::ColumnHeader^ columnHeader17;
|
416 |
private: System::Windows::Forms::ColumnHeader^ columnHeader17;
|
| 471 |
private: System::Windows::Forms::ContextMenuStrip^ ContextWare;
|
417 |
private: System::Windows::Forms::ContextMenuStrip^ ContextWare;
|
| 472 |
private: System::Windows::Forms::ToolStripMenuItem^ addWareToolStripMenuItem;
|
418 |
private: System::Windows::Forms::ToolStripMenuItem^ addWareToolStripMenuItem;
|
| 473 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWareSep1;
|
419 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWareSep1;
|
| 474 |
|
- |
|
| 475 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWareEdit;
|
420 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWareEdit;
|
| 476 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWareRemove;
|
421 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWareRemove;
|
| 477 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWareSep2;
|
422 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWareSep2;
|
| 478 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWareClear;
|
423 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWareClear;
|
| 479 |
private: System::Windows::Forms::ContextMenuStrip^ ContextWareText;
|
424 |
private: System::Windows::Forms::ContextMenuStrip^ ContextWareText;
|
| 480 |
private: System::Windows::Forms::ToolStripMenuItem^ addTextToolStripMenuItem;
|
425 |
private: System::Windows::Forms::ToolStripMenuItem^ addTextToolStripMenuItem;
|
| 481 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWTSep1;
|
426 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWTSep1;
|
| 482 |
|
- |
|
| 483 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWTRemove;
|
427 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWTRemove;
|
| 484 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWTEdit;
|
428 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWTEdit;
|
| 485 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWTSep2;
|
429 |
private: System::Windows::Forms::ToolStripSeparator^ ContextWTSep2;
|
| 486 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWTClear;
|
430 |
private: System::Windows::Forms::ToolStripMenuItem^ ContextWTClear;
|
| 487 |
private: System::Windows::Forms::PictureBox^ PicRec5;
|
431 |
private: System::Windows::Forms::PictureBox^ PicRec5;
|
| 488 |
private: System::Windows::Forms::RichTextBox^ TextForum;
|
432 |
private: System::Windows::Forms::RichTextBox^ TextForum;
|
| 489 |
private: System::Windows::Forms::RichTextBox^ TextEmail;
|
433 |
private: System::Windows::Forms::RichTextBox^ TextEmail;
|
| 490 |
private: System::Windows::Forms::RichTextBox^ TextWebsite;
|
434 |
private: System::Windows::Forms::RichTextBox^ TextWebsite;
|
| 491 |
private: System::Windows::Forms::ContextMenuStrip^ ContextFiles;
|
435 |
private: System::Windows::Forms::ContextMenuStrip^ ContextFiles;
|
| 492 |
private: System::Windows::Forms::RichTextBox^ TextWebAddress;
|
436 |
private: System::Windows::Forms::RichTextBox^ TextWebAddress;
|
| 493 |
|
- |
|
| 494 |
|
- |
|
| 495 |
|
- |
|
| 496 |
|
- |
|
| 497 |
private: System::Windows::Forms::ContextMenuStrip^ ContextGames;
|
437 |
private: System::Windows::Forms::ContextMenuStrip^ ContextGames;
|
| 498 |
|
- |
|
| 499 |
private: System::Windows::Forms::ToolStripMenuItem^ testToolStripMenuItem;
|
438 |
private: System::Windows::Forms::ToolStripMenuItem^ testToolStripMenuItem;
|
| 500 |
|
- |
|
| 501 |
private: System::Windows::Forms::GroupBox^ groupBox1;
|
439 |
private: System::Windows::Forms::GroupBox^ groupBox1;
|
| 502 |
private: System::Windows::Forms::TabControl^ tabControl1;
|
440 |
private: System::Windows::Forms::TabControl^ tabControl1;
|
| 503 |
private: System::Windows::Forms::TabPage^ tabPage1;
|
441 |
private: System::Windows::Forms::TabPage^ tabPage1;
|
| - |
|
442 |
private: System::Windows::Forms::Panel^ panel1;
|
| - |
|
443 |
private: System::Windows::Forms::TextBox^ TextName;
|
| - |
|
444 |
private: System::Windows::Forms::Label^ label1;
|
| - |
|
445 |
private: System::Windows::Forms::Panel^ panel2;
|
| - |
|
446 |
private: System::Windows::Forms::TextBox^ TextAuthor;
|
| - |
|
447 |
private: System::Windows::Forms::Label^ label2;
|
| - |
|
448 |
private: System::Windows::Forms::Panel^ panel3;
|
| - |
|
449 |
private: System::Windows::Forms::TextBox^ TextVersion;
|
| - |
|
450 |
private: System::Windows::Forms::Label^ label3;
|
| - |
|
451 |
private: System::Windows::Forms::Panel^ panel4;
|
| - |
|
452 |
private: System::Windows::Forms::Label^ label4;
|
| - |
|
453 |
private: System::Windows::Forms::ListView^ ListFiles;
|
| - |
|
454 |
private: System::Windows::Forms::Panel^ panel5;
|
| - |
|
455 |
private: System::Windows::Forms::ComboBox^ ComboFileType;
|
| - |
|
456 |
private: System::Windows::Forms::Label^ label5;
|
| - |
|
457 |
private: System::Windows::Forms::DateTimePicker^ CreationDate;
|
| - |
|
458 |
private: System::Windows::Forms::ColumnHeader^ columnHeader1;
|
| - |
|
459 |
private: System::Windows::Forms::ColumnHeader^ columnHeader2;
|
| - |
|
460 |
private: System::Windows::Forms::ColumnHeader^ columnHeader3;
|
| - |
|
461 |
private: System::Windows::Forms::ColumnHeader^ columnHeader4;
|
| - |
|
462 |
private: System::Windows::Forms::ColumnHeader^ columnHeader5;
|
| - |
|
463 |
private: System::ComponentModel::IContainer^ components;
|
| 504 |
|
464 |
|
| 505 |
private: System::Windows::Forms::Panel^ panel1;
|
- |
|
| 506 |
private: System::Windows::Forms::TextBox^ TextName;
|
- |
|
| 507 |
private: System::Windows::Forms::Label^ label1;
|
- |
|
| 508 |
private: System::Windows::Forms::Panel^ panel2;
|
- |
|
| 509 |
private: System::Windows::Forms::TextBox^ TextAuthor;
|
- |
|
| 510 |
private: System::Windows::Forms::Label^ label2;
|
- |
|
| 511 |
private: System::Windows::Forms::Panel^ panel3;
|
- |
|
| 512 |
private: System::Windows::Forms::TextBox^ TextVersion;
|
- |
|
| 513 |
|
- |
|
| 514 |
private: System::Windows::Forms::Label^ label3;
|
- |
|
| 515 |
private: System::Windows::Forms::Panel^ panel4;
|
- |
|
| 516 |
|
- |
|
| 517 |
private: System::Windows::Forms::Label^ label4;
|
- |
|
| 518 |
private: System::Windows::Forms::ListView^ ListFiles;
|
- |
|
| 519 |
|
- |
|
| 520 |
private: System::Windows::Forms::Panel^ panel5;
|
- |
|
| 521 |
private: System::Windows::Forms::ComboBox^ ComboFileType;
|
- |
|
| 522 |
private: System::Windows::Forms::Label^ label5;
|
- |
|
| 523 |
private: System::Windows::Forms::DateTimePicker^ CreationDate;
|
- |
|
| 524 |
private: System::Windows::Forms::ColumnHeader^ columnHeader1;
|
- |
|
| 525 |
private: System::Windows::Forms::ColumnHeader^ columnHeader2;
|
- |
|
| 526 |
private: System::Windows::Forms::ColumnHeader^ columnHeader3;
|
- |
|
| 527 |
private: System::Windows::Forms::ColumnHeader^ columnHeader4;
|
- |
|
| 528 |
private: System::Windows::Forms::ColumnHeader^ columnHeader5;
|
- |
|
| 529 |
private: System::ComponentModel::IContainer^ components;
|
- |
|
| 530 |
/// <summary>
|
465 |
/// <summary>
|
| 531 |
/// Required designer variable.
|
466 |
/// Required designer variable.
|
| 532 |
/// </summary>
|
467 |
/// </summary>
|
| 533 |
|
- |
|
| 534 |
|
468 |
|
| 535 |
#pragma region Windows Form Designer generated code
|
469 |
#pragma region Windows Form Designer generated code
|
| 536 |
/// <summary>
|
470 |
/// <summary>
|
| 537 |
/// Required method for Designer support - do not modify
|
471 |
/// Required method for Designer support - do not modify
|
| 538 |
/// the contents of this method with the code editor.
|
472 |
/// the contents of this method with the code editor.
|
| Line 1019... |
Line 953... |
| 1019 |
this->ContextFileSep1, this->ContextFileEdit, this->ContextFileDelete, this->renameFileToolStripMenuItem, this->toolStripSeparator5,
|
953 |
this->ContextFileSep1, this->ContextFileEdit, this->ContextFileDelete, this->renameFileToolStripMenuItem, this->toolStripSeparator5,
|
| 1020 |
this->ToolGame, this->packFileToolStripMenuItem, this->unpackFileToolStripMenuItem, this->convertToFakePatchToolStripMenuItem,
|
954 |
this->ToolGame, this->packFileToolStripMenuItem, this->unpackFileToolStripMenuItem, this->convertToFakePatchToolStripMenuItem,
|
| 1021 |
this->convertToAutoTextFileToolStripMenuItem, this->convertToNormalModToolStripMenuItem, this->ContextFileSep2, this->ContextFileClear
|
955 |
this->convertToAutoTextFileToolStripMenuItem, this->convertToNormalModToolStripMenuItem, this->ContextFileSep2, this->ContextFileClear
|
| 1022 |
});
|
956 |
});
|
| 1023 |
this->ContextFiles->Name = L"ContextFiles";
|
957 |
this->ContextFiles->Name = L"ContextFiles";
|
| 1024 |
this->ContextFiles->Size = System::Drawing::Size(260, 468);
|
958 |
this->ContextFiles->Size = System::Drawing::Size(260, 440);
|
| 1025 |
this->ContextFiles->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextFiles_Opening);
|
959 |
this->ContextFiles->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextFiles_Opening);
|
| 1026 |
//
|
960 |
//
|
| 1027 |
// addFileToolStripMenuItem
|
961 |
// addFileToolStripMenuItem
|
| 1028 |
//
|
962 |
//
|
| 1029 |
this->addFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addFileToolStripMenuItem.Image")));
|
963 |
this->addFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addFileToolStripMenuItem.Image")));
|
| Line 3711... |
Line 3645... |
| 3711 |
this->panel4->Size = System::Drawing::Size(1007, 25);
|
3645 |
this->panel4->Size = System::Drawing::Size(1007, 25);
|
| 3712 |
this->panel4->TabIndex = 5;
|
3646 |
this->panel4->TabIndex = 5;
|
| 3713 |
//
|
3647 |
//
|
| 3714 |
// CreationDate
|
3648 |
// CreationDate
|
| 3715 |
//
|
3649 |
//
|
| 3716 |
this->CreationDate->Checked = false;
|
- |
|
| 3717 |
this->CreationDate->Dock = System::Windows::Forms::DockStyle::Fill;
|
3650 |
this->CreationDate->Dock = System::Windows::Forms::DockStyle::Fill;
|
| 3718 |
this->CreationDate->Location = System::Drawing::Point(209, 0);
|
3651 |
this->CreationDate->Location = System::Drawing::Point(209, 0);
|
| 3719 |
this->CreationDate->Margin = System::Windows::Forms::Padding(4);
|
3652 |
this->CreationDate->Margin = System::Windows::Forms::Padding(4);
|
| 3720 |
this->CreationDate->Name = L"CreationDate";
|
3653 |
this->CreationDate->Name = L"CreationDate";
|
| 3721 |
this->CreationDate->RightToLeft = System::Windows::Forms::RightToLeft::No;
|
3654 |
this->CreationDate->RightToLeft = System::Windows::Forms::RightToLeft::No;
|
| 3722 |
this->CreationDate->Size = System::Drawing::Size(798, 22);
|
3655 |
this->CreationDate->Size = System::Drawing::Size(798, 22);
|
| 3723 |
this->CreationDate->TabIndex = 2;
|
3656 |
this->CreationDate->TabIndex = 2;
|
| - |
|
3657 |
this->CreationDate->Checked = true;
|
| 3724 |
this->CreationDate->Value = System::DateTime(2009, 12, 8, 19, 52, 0, 0);
|
3658 |
this->CreationDate->Value = System::DateTime(2009, 12, 8, 19, 52, 0, 0);
|
| 3725 |
this->CreationDate->ValueChanged += gcnew System::EventHandler(this, &PackageForm::CreationDate_ValueChanged);
|
3659 |
this->CreationDate->ValueChanged += gcnew System::EventHandler(this, &PackageForm::CreationDate_ValueChanged);
|
| 3726 |
//
|
3660 |
//
|
| 3727 |
// label4
|
3661 |
// label4
|
| 3728 |
//
|
3662 |
//
|