Oops, forgot to check in new discohawk files

This commit is contained in:
andres.delikat 2011-08-31 02:23:27 +00:00
parent a16cd68fa5
commit 03ff095c2c
3 changed files with 1261 additions and 0 deletions

91
DiscoHawk/MainDiscoForm.Designer.cs generated Normal file
View File

@ -0,0 +1,91 @@
namespace BizHawk
{
partial class MainDiscoForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainDiscoForm));
this.ExitButton = new System.Windows.Forms.Button();
this.lblMagicDragArea = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.lblMagicDragArea.SuspendLayout();
this.SuspendLayout();
//
// ExitButton
//
this.ExitButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.ExitButton.Location = new System.Drawing.Point(281, 316);
this.ExitButton.Name = "ExitButton";
this.ExitButton.Size = new System.Drawing.Size(75, 23);
this.ExitButton.TabIndex = 0;
this.ExitButton.Text = "E&xit";
this.ExitButton.UseVisualStyleBackColor = true;
this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click);
//
// lblMagicDragArea
//
this.lblMagicDragArea.Controls.Add(this.label1);
this.lblMagicDragArea.Location = new System.Drawing.Point(84, 12);
this.lblMagicDragArea.Name = "lblMagicDragArea";
this.lblMagicDragArea.Size = new System.Drawing.Size(200, 100);
this.lblMagicDragArea.TabIndex = 1;
this.lblMagicDragArea.DragDrop += new System.Windows.Forms.DragEventHandler(this.lblMagicDragArea_DragDrop);
this.lblMagicDragArea.DragEnter += new System.Windows.Forms.DragEventHandler(this.lblMagicDragArea_DragEnter);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(47, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(106, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Drag here for MAGIC";
//
// MainDiscoForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(368, 351);
this.Controls.Add(this.lblMagicDragArea);
this.Controls.Add(this.ExitButton);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MainDiscoForm";
this.Text = "DiscoHawk";
this.Load += new System.EventHandler(this.MainDiscoForm_Load);
this.lblMagicDragArea.ResumeLayout(false);
this.lblMagicDragArea.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button ExitButton;
private System.Windows.Forms.Panel lblMagicDragArea;
private System.Windows.Forms.Label label1;
}
}

View File

@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using BizHawk.DiscSystem;
namespace BizHawk
{
public partial class MainDiscoForm : Form
{
public MainDiscoForm()
{
InitializeComponent();
}
private class DiscRecord
{
public Disc Disc;
public string BaseName;
}
private void MainDiscoForm_Load(object sender, EventArgs e)
{
}
private void ExitButton_Click(object sender, EventArgs e)
{
this.Close();
}
private void lblMagicDragArea_DragDrop(object sender, DragEventArgs e)
{
}
private void lblMagicDragArea_DragEnter(object sender, DragEventArgs e)
{
}
}
}

1124
DiscoHawk/MainDiscoForm.resx Normal file

File diff suppressed because it is too large Load Diff