From 4015ed44d80848393e42fb7ece7fbbd70f7f6d13 Mon Sep 17 00:00:00 2001 From: "SND\\eagleeyestudios_cp" Date: Sat, 15 Sep 2012 22:54:18 +0000 Subject: [PATCH] Content Compiler: - Implemented quick tour (can be started form the FirstStartScreen) - fixed wrong alignment of menuState --- .../ANX.ContentCompiler.GUI.csproj | 14 +- .../Dialogues/FirstStartScreen.Designer.cs | 6 +- .../Dialogues/FirstStartScreen.cs | 9 +- .../MainWindow.Designer.cs | 134 ++++++++++++++++ Tools/ANXContentCompilerGUI/MainWindow.cs | 121 +++++++++++++- .../Properties/Resources.Designer.cs | 20 +++ .../Properties/Resources.resx | 6 + .../Resources/red-arrow_left.png | Bin 0 -> 6755 bytes .../Resources/red-arrow_right.png | Bin 0 -> 7028 bytes .../ShowStrings.Designer.cs | 144 +++++++++++++++++ Tools/ANXContentCompilerGUI/ShowStrings.resx | 147 ++++++++++++++++++ 11 files changed, 591 insertions(+), 10 deletions(-) create mode 100644 Tools/ANXContentCompilerGUI/Resources/red-arrow_left.png create mode 100644 Tools/ANXContentCompilerGUI/Resources/red-arrow_right.png create mode 100644 Tools/ANXContentCompilerGUI/ShowStrings.Designer.cs create mode 100644 Tools/ANXContentCompilerGUI/ShowStrings.resx diff --git a/Tools/ANXContentCompilerGUI/ANX.ContentCompiler.GUI.csproj b/Tools/ANXContentCompilerGUI/ANX.ContentCompiler.GUI.csproj index f5cd0bb9..4caf8cc8 100644 --- a/Tools/ANXContentCompilerGUI/ANX.ContentCompiler.GUI.csproj +++ b/Tools/ANXContentCompilerGUI/ANX.ContentCompiler.GUI.csproj @@ -136,6 +136,11 @@ + + True + True + ShowStrings.resx + UserControl @@ -166,9 +171,6 @@ ErrorLogScreen.cs - - MainWindow.cs - ResXFileCodeGenerator Resources.Designer.cs @@ -179,6 +181,10 @@ Resources.resx True + + ResXFileCodeGenerator + ShowStrings.Designer.cs + @@ -193,6 +199,8 @@ + + diff --git a/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.Designer.cs b/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.Designer.cs index 791b79b3..31a34f04 100644 --- a/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.Designer.cs +++ b/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.Designer.cs @@ -30,7 +30,6 @@ namespace ANX.ContentCompiler.GUI.Dialogues /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FirstStartScreen)); this.labelTour = new System.Windows.Forms.Label(); this.labelSkip = new System.Windows.Forms.Label(); this.button1 = new System.Windows.Forms.Button(); @@ -98,6 +97,7 @@ namespace ANX.ContentCompiler.GUI.Dialogues this.button2.TabIndex = 6; this.button2.Text = "Take Tour"; this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.Button2Click); // // button3 // @@ -126,7 +126,7 @@ namespace ANX.ContentCompiler.GUI.Dialogues // // pictureBoxArrowLeft // - this.pictureBoxArrowLeft.Image = ((System.Drawing.Image)(Resources.arrow_left)); + this.pictureBoxArrowLeft.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.arrow_left; this.pictureBoxArrowLeft.Location = new System.Drawing.Point(176, 274); this.pictureBoxArrowLeft.Name = "pictureBoxArrowLeft"; this.pictureBoxArrowLeft.Size = new System.Drawing.Size(118, 114); @@ -136,7 +136,7 @@ namespace ANX.ContentCompiler.GUI.Dialogues // // pictureBoxArrowRight // - this.pictureBoxArrowRight.Image = ((System.Drawing.Image)(Resources.arrow_right)); + this.pictureBoxArrowRight.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.arrow_right; this.pictureBoxArrowRight.Location = new System.Drawing.Point(317, 274); this.pictureBoxArrowRight.Name = "pictureBoxArrowRight"; this.pictureBoxArrowRight.Size = new System.Drawing.Size(119, 114); diff --git a/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.cs b/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.cs index df1d07ad..297c6c0a 100644 --- a/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.cs +++ b/Tools/ANXContentCompilerGUI/Dialogues/FirstStartScreen.cs @@ -4,8 +4,8 @@ using ANX.Framework.NonXNA.Development; namespace ANX.ContentCompiler.GUI.Dialogues { [Developer("SilentWarrior/Eagle Eye Studios")] - [PercentageComplete(80)] //TODO: Implement tour in MainWindow and launch it from here! - [TestState(TestStateAttribute.TestState.Untested)] + [PercentageComplete(100)] //TODO: Implement tour in MainWindow and launch it from here! + [TestState(TestStateAttribute.TestState.Tested)] public partial class FirstStartScreen : Form { public FirstStartScreen() @@ -20,5 +20,10 @@ namespace ANX.ContentCompiler.GUI.Dialogues button2.FlatAppearance.MouseDownBackColor = Settings.AccentColor3; button3.FlatAppearance.MouseDownBackColor = Settings.AccentColor3; } + + private void Button2Click(object sender, System.EventArgs e) + { + MainWindow.Instance.StartShow(); + } } } \ No newline at end of file diff --git a/Tools/ANXContentCompilerGUI/MainWindow.Designer.cs b/Tools/ANXContentCompilerGUI/MainWindow.Designer.cs index 9887d2c0..4c16f460 100644 --- a/Tools/ANXContentCompilerGUI/MainWindow.Designer.cs +++ b/Tools/ANXContentCompilerGUI/MainWindow.Designer.cs @@ -33,6 +33,9 @@ namespace ANX.ContentCompiler.GUI { this.components = new System.ComponentModel.Container(); this.splitContainerMenuLayout = new System.Windows.Forms.SplitContainer(); + this.show_pictureBoxRibbon = new System.Windows.Forms.PictureBox(); + this.show_pictureBoxMenu = new System.Windows.Forms.PictureBox(); + this.show_pictureBoxErrorLog = new System.Windows.Forms.PictureBox(); this.ribbonTextBox = new ANX.ContentCompiler.GUI.Controls.RibbonTextBox(); this.ribbonButtonHelp = new ANX.ContentCompiler.GUI.Controls.RibbonButton(); this.ribbonButtonWeb = new ANX.ContentCompiler.GUI.Controls.RibbonButton(); @@ -44,6 +47,7 @@ namespace ANX.ContentCompiler.GUI this.buttonMenu = new System.Windows.Forms.Button(); this.labelTitle = new System.Windows.Forms.Label(); this.splitContainerFileTree = new System.Windows.Forms.SplitContainer(); + this.show_pictureBoxSmiley = new System.Windows.Forms.PictureBox(); this.labelFileTree = new System.Windows.Forms.Label(); this.treeView = new System.Windows.Forms.TreeView(); this.treeViewContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); @@ -53,24 +57,36 @@ namespace ANX.ContentCompiler.GUI this.treeViewItemRename = new System.Windows.Forms.ToolStripMenuItem(); this.treeViewItemDelete = new System.Windows.Forms.ToolStripMenuItem(); this.splitContainerProperties = new System.Windows.Forms.SplitContainer(); + this.show_labelDesc = new System.Windows.Forms.Label(); + this.show_pictureBoxProperties = new System.Windows.Forms.PictureBox(); + this.show_pictureBoxProjectExplorer = new System.Windows.Forms.PictureBox(); this.editingState = new ANX.ContentCompiler.GUI.States.EditingState(); this.startState = new ANX.ContentCompiler.GUI.States.StartState(); + this.show_pictureBoxMainPanel = new System.Windows.Forms.PictureBox(); this.labelProperties = new System.Windows.Forms.Label(); this.propertyGrid = new System.Windows.Forms.PropertyGrid(); + this.show_timer = new System.Windows.Forms.Timer(this.components); this.menuState = new ANX.ContentCompiler.GUI.States.MenuState(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerMenuLayout)).BeginInit(); this.splitContainerMenuLayout.Panel1.SuspendLayout(); this.splitContainerMenuLayout.Panel2.SuspendLayout(); this.splitContainerMenuLayout.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxRibbon)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxMenu)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxErrorLog)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerFileTree)).BeginInit(); this.splitContainerFileTree.Panel1.SuspendLayout(); this.splitContainerFileTree.Panel2.SuspendLayout(); this.splitContainerFileTree.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxSmiley)).BeginInit(); this.treeViewContextMenu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerProperties)).BeginInit(); this.splitContainerProperties.Panel1.SuspendLayout(); this.splitContainerProperties.Panel2.SuspendLayout(); this.splitContainerProperties.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxProperties)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxProjectExplorer)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxMainPanel)).BeginInit(); this.SuspendLayout(); // // splitContainerMenuLayout @@ -85,6 +101,9 @@ namespace ANX.ContentCompiler.GUI // // splitContainerMenuLayout.Panel1 // + this.splitContainerMenuLayout.Panel1.Controls.Add(this.show_pictureBoxRibbon); + this.splitContainerMenuLayout.Panel1.Controls.Add(this.show_pictureBoxMenu); + this.splitContainerMenuLayout.Panel1.Controls.Add(this.show_pictureBoxErrorLog); this.splitContainerMenuLayout.Panel1.Controls.Add(this.ribbonTextBox); this.splitContainerMenuLayout.Panel1.Controls.Add(this.ribbonButtonHelp); this.splitContainerMenuLayout.Panel1.Controls.Add(this.ribbonButtonWeb); @@ -103,6 +122,39 @@ namespace ANX.ContentCompiler.GUI this.splitContainerMenuLayout.SplitterDistance = 99; this.splitContainerMenuLayout.TabIndex = 0; // + // show_pictureBoxRibbon + // + this.show_pictureBoxRibbon.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.red_arrow_left; + this.show_pictureBoxRibbon.Location = new System.Drawing.Point(357, 22); + this.show_pictureBoxRibbon.Name = "show_pictureBoxRibbon"; + this.show_pictureBoxRibbon.Size = new System.Drawing.Size(115, 72); + this.show_pictureBoxRibbon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxRibbon.TabIndex = 12; + this.show_pictureBoxRibbon.TabStop = false; + this.show_pictureBoxRibbon.Visible = false; + // + // show_pictureBoxMenu + // + this.show_pictureBoxMenu.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.red_arrow_left; + this.show_pictureBoxMenu.Location = new System.Drawing.Point(90, -1); + this.show_pictureBoxMenu.Name = "show_pictureBoxMenu"; + this.show_pictureBoxMenu.Size = new System.Drawing.Size(52, 36); + this.show_pictureBoxMenu.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxMenu.TabIndex = 11; + this.show_pictureBoxMenu.TabStop = false; + this.show_pictureBoxMenu.Visible = false; + // + // show_pictureBoxErrorLog + // + this.show_pictureBoxErrorLog.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.red_arrow_right; + this.show_pictureBoxErrorLog.Location = new System.Drawing.Point(411, 22); + this.show_pictureBoxErrorLog.Name = "show_pictureBoxErrorLog"; + this.show_pictureBoxErrorLog.Size = new System.Drawing.Size(115, 72); + this.show_pictureBoxErrorLog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxErrorLog.TabIndex = 5; + this.show_pictureBoxErrorLog.TabStop = false; + this.show_pictureBoxErrorLog.Visible = false; + // // ribbonTextBox // this.ribbonTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); @@ -240,6 +292,7 @@ namespace ANX.ContentCompiler.GUI // // splitContainerFileTree.Panel1 // + this.splitContainerFileTree.Panel1.Controls.Add(this.show_pictureBoxSmiley); this.splitContainerFileTree.Panel1.Controls.Add(this.labelFileTree); this.splitContainerFileTree.Panel1.Controls.Add(this.treeView); // @@ -250,6 +303,17 @@ namespace ANX.ContentCompiler.GUI this.splitContainerFileTree.SplitterDistance = 221; this.splitContainerFileTree.TabIndex = 0; // + // show_pictureBoxSmiley + // + this.show_pictureBoxSmiley.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.Deleket_Smileys_8; + this.show_pictureBoxSmiley.Location = new System.Drawing.Point(89, 394); + this.show_pictureBoxSmiley.Name = "show_pictureBoxSmiley"; + this.show_pictureBoxSmiley.Size = new System.Drawing.Size(127, 122); + this.show_pictureBoxSmiley.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxSmiley.TabIndex = 2; + this.show_pictureBoxSmiley.TabStop = false; + this.show_pictureBoxSmiley.Visible = false; + // // labelFileTree // this.labelFileTree.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) @@ -350,11 +414,15 @@ namespace ANX.ContentCompiler.GUI // // splitContainerProperties.Panel1 // + this.splitContainerProperties.Panel1.Controls.Add(this.show_labelDesc); + this.splitContainerProperties.Panel1.Controls.Add(this.show_pictureBoxProperties); + this.splitContainerProperties.Panel1.Controls.Add(this.show_pictureBoxProjectExplorer); this.splitContainerProperties.Panel1.Controls.Add(this.editingState); this.splitContainerProperties.Panel1.Controls.Add(this.startState); // // splitContainerProperties.Panel2 // + this.splitContainerProperties.Panel2.Controls.Add(this.show_pictureBoxMainPanel); this.splitContainerProperties.Panel2.Controls.Add(this.labelProperties); this.splitContainerProperties.Panel2.Controls.Add(this.propertyGrid); this.splitContainerProperties.Panel2.ForeColor = System.Drawing.Color.White; @@ -362,6 +430,40 @@ namespace ANX.ContentCompiler.GUI this.splitContainerProperties.SplitterDistance = 366; this.splitContainerProperties.TabIndex = 0; // + // show_labelDesc + // + this.show_labelDesc.Font = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.show_labelDesc.ForeColor = System.Drawing.Color.Red; + this.show_labelDesc.Location = new System.Drawing.Point(0, 388); + this.show_labelDesc.Name = "show_labelDesc"; + this.show_labelDesc.Size = new System.Drawing.Size(361, 137); + this.show_labelDesc.TabIndex = 11; + this.show_labelDesc.Text = "Explanation goes here."; + this.show_labelDesc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.show_labelDesc.Visible = false; + // + // show_pictureBoxProperties + // + this.show_pictureBoxProperties.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.red_arrow_right; + this.show_pictureBoxProperties.Location = new System.Drawing.Point(246, 195); + this.show_pictureBoxProperties.Name = "show_pictureBoxProperties"; + this.show_pictureBoxProperties.Size = new System.Drawing.Size(115, 72); + this.show_pictureBoxProperties.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxProperties.TabIndex = 10; + this.show_pictureBoxProperties.TabStop = false; + this.show_pictureBoxProperties.Visible = false; + // + // show_pictureBoxProjectExplorer + // + this.show_pictureBoxProjectExplorer.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.red_arrow_left; + this.show_pictureBoxProjectExplorer.Location = new System.Drawing.Point(-1, 157); + this.show_pictureBoxProjectExplorer.Name = "show_pictureBoxProjectExplorer"; + this.show_pictureBoxProjectExplorer.Size = new System.Drawing.Size(115, 81); + this.show_pictureBoxProjectExplorer.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxProjectExplorer.TabIndex = 4; + this.show_pictureBoxProjectExplorer.TabStop = false; + this.show_pictureBoxProjectExplorer.Visible = false; + // // editingState // this.editingState.Dock = System.Windows.Forms.DockStyle.Fill; @@ -382,6 +484,17 @@ namespace ANX.ContentCompiler.GUI this.startState.TabIndex = 0; this.startState.Visible = false; // + // show_pictureBoxMainPanel + // + this.show_pictureBoxMainPanel.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.red_arrow_left; + this.show_pictureBoxMainPanel.Location = new System.Drawing.Point(0, 186); + this.show_pictureBoxMainPanel.Name = "show_pictureBoxMainPanel"; + this.show_pictureBoxMainPanel.Size = new System.Drawing.Size(115, 81); + this.show_pictureBoxMainPanel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.show_pictureBoxMainPanel.TabIndex = 3; + this.show_pictureBoxMainPanel.TabStop = false; + this.show_pictureBoxMainPanel.Visible = false; + // // labelProperties // this.labelProperties.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) @@ -417,6 +530,11 @@ namespace ANX.ContentCompiler.GUI this.propertyGrid.ViewForeColor = System.Drawing.Color.White; this.propertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.PropertyGridPropertyValueChanged); // + // show_timer + // + this.show_timer.Interval = 2000; + this.show_timer.Tick += new System.EventHandler(this.ShowTimerTick); + // // menuState // this.menuState.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) @@ -451,15 +569,22 @@ namespace ANX.ContentCompiler.GUI this.splitContainerMenuLayout.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainerMenuLayout)).EndInit(); this.splitContainerMenuLayout.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxRibbon)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxMenu)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxErrorLog)).EndInit(); this.splitContainerFileTree.Panel1.ResumeLayout(false); this.splitContainerFileTree.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainerFileTree)).EndInit(); this.splitContainerFileTree.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxSmiley)).EndInit(); this.treeViewContextMenu.ResumeLayout(false); this.splitContainerProperties.Panel1.ResumeLayout(false); this.splitContainerProperties.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainerProperties)).EndInit(); this.splitContainerProperties.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxProperties)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxProjectExplorer)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.show_pictureBoxMainPanel)).EndInit(); this.ResumeLayout(false); } @@ -492,6 +617,15 @@ namespace ANX.ContentCompiler.GUI public Controls.RibbonTextBox ribbonTextBox; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem folderToolStripMenuItem; + private System.Windows.Forms.PictureBox show_pictureBoxErrorLog; + private System.Windows.Forms.PictureBox show_pictureBoxProjectExplorer; + private System.Windows.Forms.PictureBox show_pictureBoxMainPanel; + private System.Windows.Forms.PictureBox show_pictureBoxRibbon; + private System.Windows.Forms.PictureBox show_pictureBoxMenu; + private System.Windows.Forms.PictureBox show_pictureBoxProperties; + private System.Windows.Forms.Label show_labelDesc; + private System.Windows.Forms.Timer show_timer; + private System.Windows.Forms.PictureBox show_pictureBoxSmiley; } } diff --git a/Tools/ANXContentCompilerGUI/MainWindow.cs b/Tools/ANXContentCompilerGUI/MainWindow.cs index 1cd609ea..55674000 100644 --- a/Tools/ANXContentCompilerGUI/MainWindow.cs +++ b/Tools/ANXContentCompilerGUI/MainWindow.cs @@ -12,7 +12,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.ContentCompiler.GUI { [Developer("SilentWarrior/Eagle Eye Studios")] - [PercentageComplete(80)] //TODO: Implement Tour, Preview, Renaming of Folders! + [PercentageComplete(90)] //TODO: Preview, Renaming of Folders! [TestState(TestStateAttribute.TestState.Tested)] public partial class MainWindow : Form { @@ -31,7 +31,7 @@ namespace ANX.ContentCompiler.GUI private bool _menuMode; private bool _mouseDown; private readonly string[] _args; - + private int _showCounter = 0; #endregion #region Properties @@ -713,5 +713,122 @@ namespace ANX.ContentCompiler.GUI RemoveFolder(treeView.SelectedNode.Name); } #endregion + + #region TourMethods + public void StartShow() + { + propertyGrid.Visible = false; + treeView.Visible = false; + editingState.Visible = false; + startState.Visible = false; + ribbonButtonClean.Enabled = false; + ribbonButtonHelp.Enabled = false; + ribbonButtonLoad.Enabled = false; + ribbonButtonNew.Enabled = false; + ribbonButtonSave.Enabled = false; + ribbonButtonWeb.Enabled = false; + ribbonTextBox.Enabled = false; + buttonMenu.Enabled = false; + + show_timer.Start(); + } + + public void EndShow() + { + show_timer.Stop(); + show_labelDesc.Visible = false; + show_pictureBoxSmiley.Visible = false; + + propertyGrid.Visible = true; + treeView.Visible = true; + startState.Visible = true; + ribbonButtonClean.Enabled = true; + ribbonButtonHelp.Enabled = true; + ribbonButtonLoad.Enabled = true; + ribbonButtonNew.Enabled = true; + ribbonButtonSave.Enabled = true; + ribbonButtonWeb.Enabled = true; + ribbonTextBox.Enabled = true; + buttonMenu.Enabled = true; + } + + private void ShowTimerTick(object sender, EventArgs e) + { + switch(_showCounter) + { + case 0: + show_timer.Interval = 8000; + startState.Visible = false; + show_pictureBoxSmiley.Visible = true; + show_labelDesc.Visible = true; + show_labelDesc.Text = ShowStrings.Start; + break; + case 1: + show_timer.Interval = 6000; + show_labelDesc.Text = ShowStrings.Start2; + break; + case 2: + show_timer.Interval = 9000; + show_pictureBoxMainPanel.Visible = true; + show_labelDesc.Text = ShowStrings.ActionPanel; + editingState.Enabled = false; + editingState.Visible = true; + break; + case 3: + show_timer.Interval = 9000; + editingState.Enabled = true; + editingState.Visible = false; + show_pictureBoxMainPanel.Visible = false; + show_pictureBoxProjectExplorer.Visible = true; + show_pictureBoxSmiley.BackColor = Settings.DarkMainColor; + show_labelDesc.Text = ShowStrings.TreeView; + treeView.Visible = true; + treeView.Enabled = false; + break; + case 4: + show_timer.Interval = 8000; + treeView.Enabled = true; + treeView.Visible = false; + show_pictureBoxSmiley.BackColor = Settings.MainColor; + show_pictureBoxProjectExplorer.Visible = false; + show_pictureBoxProperties.Visible = true; + show_labelDesc.Text = ShowStrings.PropertyGrid; + propertyGrid.Visible = true; + propertyGrid.Enabled = false; + break; + case 5: + show_timer.Interval = 6000; + propertyGrid.Visible = false; + propertyGrid.Enabled = true; + show_pictureBoxProperties.Visible = false; + show_pictureBoxRibbon.Visible = true; + show_labelDesc.Text = ShowStrings.RibbonButtons; + break; + case 6: + show_timer.Interval = 8000; + show_pictureBoxRibbon.Visible = false; + show_pictureBoxMenu.Visible = true; + show_labelDesc.Text = ShowStrings.Menu; + break; + case 7: + show_timer.Interval = 11000; + show_pictureBoxMenu.Visible = false; + show_pictureBoxErrorLog.Visible = true; + show_labelDesc.Text = ShowStrings.LogBox; + break; + case 8: + show_timer.Interval = 7000; + show_pictureBoxErrorLog.Visible = false; + show_labelDesc.Text = ShowStrings.End; + break; + case 9: + show_timer.Interval = 2000; + EndShow(); + break; + } + _showCounter++; + } + + #endregion } } \ No newline at end of file diff --git a/Tools/ANXContentCompilerGUI/Properties/Resources.Designer.cs b/Tools/ANXContentCompilerGUI/Properties/Resources.Designer.cs index 9ac058c7..fb8affc8 100644 --- a/Tools/ANXContentCompilerGUI/Properties/Resources.Designer.cs +++ b/Tools/ANXContentCompilerGUI/Properties/Resources.Designer.cs @@ -189,5 +189,25 @@ namespace ANX.ContentCompiler.GUI.Properties { return ((System.Drawing.Bitmap)(obj)); } } + + /// + /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap red_arrow_left { + get { + object obj = ResourceManager.GetObject("red_arrow_left", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap red_arrow_right { + get { + object obj = ResourceManager.GetObject("red_arrow_right", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } } } diff --git a/Tools/ANXContentCompilerGUI/Properties/Resources.resx b/Tools/ANXContentCompilerGUI/Properties/Resources.resx index 44ffe5b4..127ef322 100644 --- a/Tools/ANXContentCompilerGUI/Properties/Resources.resx +++ b/Tools/ANXContentCompilerGUI/Properties/Resources.resx @@ -157,4 +157,10 @@ ..\Resources\arrow2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\red-arrow_left.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\red-arrow_right.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/Tools/ANXContentCompilerGUI/Resources/red-arrow_left.png b/Tools/ANXContentCompilerGUI/Resources/red-arrow_left.png new file mode 100644 index 0000000000000000000000000000000000000000..780aae0a7f7eedacda9fd2340823dea2d0b94042 GIT binary patch literal 6755 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 O4M165L#|fFD(rtr-5H+% literal 0 HcmV?d00001 diff --git a/Tools/ANXContentCompilerGUI/ShowStrings.Designer.cs b/Tools/ANXContentCompilerGUI/ShowStrings.Designer.cs new file mode 100644 index 00000000..08582c1f --- /dev/null +++ b/Tools/ANXContentCompilerGUI/ShowStrings.Designer.cs @@ -0,0 +1,144 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.17929 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace ANX.ContentCompiler.GUI { + using System; + + + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class ShowStrings { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ShowStrings() { + } + + /// + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ANX.ContentCompiler.GUI.ShowStrings", typeof(ShowStrings).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This is the Action Panel. In this central place you can find depending on your situation the most common actions. ähnelt. + /// + internal static string ActionPanel { + get { + return ResourceManager.GetString("ActionPanel", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Cave Johnson - we're done here! If you have further questions, click the Help button in the top area! ähnelt. + /// + internal static string End { + get { + return ResourceManager.GetString("End", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die When building your project, you can see the Log output here. This box enables you to detect build errors quickly. You can expand the log by clicking on the down-pointing arrow on the right. ähnelt. + /// + internal static string LogBox { + get { + return ResourceManager.GetString("LogBox", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die More detailed actions can be found in the File Menu which you can open by clicking on this button. ähnelt. + /// + internal static string Menu { + get { + return ResourceManager.GetString("Menu", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die In the Property Grid you can change the options or parameters of the object you selected in the Project Explorer. ähnelt. + /// + internal static string PropertyGrid { + get { + return ResourceManager.GetString("PropertyGrid", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die These buttons provide you quick access to some general and common actions. ähnelt. + /// + internal static string RibbonButtons { + get { + return ResourceManager.GetString("RibbonButtons", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Hi and welcome to the ANX Content Compiler! The Content Compiler enables you to convert your media files to XNB files that can be read by the ANX Content Pipeline. ähnelt. + /// + internal static string Start { + get { + return ResourceManager.GetString("Start", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This quick tour will guide you through the main components of the User Interface. ähnelt. + /// + internal static string Start2 { + get { + return ResourceManager.GetString("Start2", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This is the Project Explorer. Here you can see and select all files & folders that your project contains. By clicking on them, you can manipulate them in the Property Grid. ähnelt. + /// + internal static string TreeView { + get { + return ResourceManager.GetString("TreeView", resourceCulture); + } + } + } +} diff --git a/Tools/ANXContentCompilerGUI/ShowStrings.resx b/Tools/ANXContentCompilerGUI/ShowStrings.resx new file mode 100644 index 00000000..1e8d1c8e --- /dev/null +++ b/Tools/ANXContentCompilerGUI/ShowStrings.resx @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This is the Action Panel. In this central place you can find depending on your situation the most common actions. + + + Cave Johnson - we're done here! If you have further questions, click the Help button in the top area! + + + When building your project, you can see the Log output here. This box enables you to detect build errors quickly. You can expand the log by clicking on the down-pointing arrow on the right. + + + More detailed actions can be found in the File Menu which you can open by clicking on this button. + + + In the Property Grid you can change the options or parameters of the object you selected in the Project Explorer. + + + These buttons provide you quick access to some general and common actions. + + + Hi and welcome to the ANX Content Compiler! The Content Compiler enables you to convert your media files to XNB files that can be read by the ANX Content Pipeline. + + + This quick tour will guide you through the main components of the User Interface. + + + This is the Project Explorer. Here you can see and select all files & folders that your project contains. By clicking on them, you can manipulate them in the Property Grid. + + \ No newline at end of file