From 8957f146d98cea73d2f530d62ce2691b9303bd39 Mon Sep 17 00:00:00 2001 From: jrtechs Date: Sun, 31 Jan 2016 08:27:11 -0500 Subject: [PATCH] Initial Form design --- Skype History Viewer.sln | 22 +++ Skype History Viewer/App.config | 6 + Skype History Viewer/Form1.Designer.cs | 145 ++++++++++++++++++ Skype History Viewer/Form1.cs | 20 +++ Skype History Viewer/Form1.resx | 120 +++++++++++++++ Skype History Viewer/Program.cs | 22 +++ .../Properties/AssemblyInfo.cs | 36 +++++ .../Properties/Resources.Designer.cs | 71 +++++++++ .../Properties/Resources.resx | 117 ++++++++++++++ .../Properties/Settings.Designer.cs | 30 ++++ .../Properties/Settings.settings | 7 + .../Skype History Viewer.csproj | 90 +++++++++++ 12 files changed, 686 insertions(+) create mode 100644 Skype History Viewer.sln create mode 100644 Skype History Viewer/App.config create mode 100644 Skype History Viewer/Form1.Designer.cs create mode 100644 Skype History Viewer/Form1.cs create mode 100644 Skype History Viewer/Form1.resx create mode 100644 Skype History Viewer/Program.cs create mode 100644 Skype History Viewer/Properties/AssemblyInfo.cs create mode 100644 Skype History Viewer/Properties/Resources.Designer.cs create mode 100644 Skype History Viewer/Properties/Resources.resx create mode 100644 Skype History Viewer/Properties/Settings.Designer.cs create mode 100644 Skype History Viewer/Properties/Settings.settings create mode 100644 Skype History Viewer/Skype History Viewer.csproj diff --git a/Skype History Viewer.sln b/Skype History Viewer.sln new file mode 100644 index 0000000..b0eccac --- /dev/null +++ b/Skype History Viewer.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skype History Viewer", "Skype History Viewer\Skype History Viewer.csproj", "{09D9B937-FC58-4DE8-B4F7-BC59B767B76F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {09D9B937-FC58-4DE8-B4F7-BC59B767B76F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {09D9B937-FC58-4DE8-B4F7-BC59B767B76F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {09D9B937-FC58-4DE8-B4F7-BC59B767B76F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {09D9B937-FC58-4DE8-B4F7-BC59B767B76F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Skype History Viewer/App.config b/Skype History Viewer/App.config new file mode 100644 index 0000000..88fa402 --- /dev/null +++ b/Skype History Viewer/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Skype History Viewer/Form1.Designer.cs b/Skype History Viewer/Form1.Designer.cs new file mode 100644 index 0000000..025b6ee --- /dev/null +++ b/Skype History Viewer/Form1.Designer.cs @@ -0,0 +1,145 @@ +namespace Skype_History_Viewer +{ + partial class FrmMain + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.lstUsers = new System.Windows.Forms.ListBox(); + this.lstChat = new System.Windows.Forms.ListBox(); + this.cmdExportAll = new System.Windows.Forms.Button(); + this.cmdExport = new System.Windows.Forms.Button(); + this.cmdAdd = new System.Windows.Forms.Button(); + this.cmdClear = new System.Windows.Forms.Button(); + this.chTime = new System.Windows.Forms.CheckBox(); + this.chUser = new System.Windows.Forms.CheckBox(); + this.SuspendLayout(); + // + // lstUsers + // + this.lstUsers.FormattingEnabled = true; + this.lstUsers.Location = new System.Drawing.Point(25, 15); + this.lstUsers.Name = "lstUsers"; + this.lstUsers.Size = new System.Drawing.Size(180, 264); + this.lstUsers.TabIndex = 0; + // + // lstChat + // + this.lstChat.FormattingEnabled = true; + this.lstChat.Location = new System.Drawing.Point(227, 14); + this.lstChat.Name = "lstChat"; + this.lstChat.Size = new System.Drawing.Size(756, 615); + this.lstChat.TabIndex = 1; + // + // cmdExportAll + // + this.cmdExportAll.Location = new System.Drawing.Point(25, 568); + this.cmdExportAll.Name = "cmdExportAll"; + this.cmdExportAll.Size = new System.Drawing.Size(152, 61); + this.cmdExportAll.TabIndex = 2; + this.cmdExportAll.Text = "Export All To Text File"; + this.cmdExportAll.UseVisualStyleBackColor = true; + // + // cmdExport + // + this.cmdExport.Location = new System.Drawing.Point(25, 501); + this.cmdExport.Name = "cmdExport"; + this.cmdExport.Size = new System.Drawing.Size(152, 61); + this.cmdExport.TabIndex = 3; + this.cmdExport.Text = "Export Selected to Text File"; + this.cmdExport.UseVisualStyleBackColor = true; + // + // cmdAdd + // + this.cmdAdd.Location = new System.Drawing.Point(25, 367); + this.cmdAdd.Name = "cmdAdd"; + this.cmdAdd.Size = new System.Drawing.Size(152, 61); + this.cmdAdd.TabIndex = 4; + this.cmdAdd.Text = "View History for Selected User"; + this.cmdAdd.UseVisualStyleBackColor = true; + // + // cmdClear + // + this.cmdClear.Location = new System.Drawing.Point(25, 434); + this.cmdClear.Name = "cmdClear"; + this.cmdClear.Size = new System.Drawing.Size(152, 61); + this.cmdClear.TabIndex = 5; + this.cmdClear.Text = "Clear"; + this.cmdClear.UseVisualStyleBackColor = true; + // + // chTime + // + this.chTime.AutoSize = true; + this.chTime.Location = new System.Drawing.Point(13, 297); + this.chTime.Name = "chTime"; + this.chTime.Size = new System.Drawing.Size(129, 17); + this.chTime.TabIndex = 6; + this.chTime.Text = "Include a Time Stamp"; + this.chTime.UseVisualStyleBackColor = true; + // + // chUser + // + this.chUser.AutoSize = true; + this.chUser.Location = new System.Drawing.Point(13, 320); + this.chUser.Name = "chUser"; + this.chUser.Size = new System.Drawing.Size(208, 17); + this.chUser.TabIndex = 7; + this.chUser.Text = "Include a User Tag Infront of Message"; + this.chUser.UseVisualStyleBackColor = true; + // + // FrmMain + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(995, 646); + this.Controls.Add(this.chUser); + this.Controls.Add(this.chTime); + this.Controls.Add(this.cmdClear); + this.Controls.Add(this.cmdAdd); + this.Controls.Add(this.cmdExport); + this.Controls.Add(this.cmdExportAll); + this.Controls.Add(this.lstChat); + this.Controls.Add(this.lstUsers); + this.Name = "FrmMain"; + this.Text = "Skype History Viewer by Jrtechs"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.ListBox lstUsers; + private System.Windows.Forms.ListBox lstChat; + private System.Windows.Forms.Button cmdExportAll; + private System.Windows.Forms.Button cmdExport; + private System.Windows.Forms.Button cmdAdd; + private System.Windows.Forms.Button cmdClear; + private System.Windows.Forms.CheckBox chTime; + private System.Windows.Forms.CheckBox chUser; + } +} + diff --git a/Skype History Viewer/Form1.cs b/Skype History Viewer/Form1.cs new file mode 100644 index 0000000..66a4dc6 --- /dev/null +++ b/Skype History Viewer/Form1.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Skype_History_Viewer +{ + public partial class FrmMain : Form + { + public FrmMain() + { + InitializeComponent(); + } + } +} diff --git a/Skype History Viewer/Form1.resx b/Skype History Viewer/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Skype History Viewer/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/Skype History Viewer/Program.cs b/Skype History Viewer/Program.cs new file mode 100644 index 0000000..0f35aa5 --- /dev/null +++ b/Skype History Viewer/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Skype_History_Viewer +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FrmMain()); + } + } +} diff --git a/Skype History Viewer/Properties/AssemblyInfo.cs b/Skype History Viewer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..593c3ca --- /dev/null +++ b/Skype History Viewer/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Skype History Viewer")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Skype History Viewer")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("09d9b937-fc58-4de8-b4f7-bc59b767b76f")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Skype History Viewer/Properties/Resources.Designer.cs b/Skype History Viewer/Properties/Resources.Designer.cs new file mode 100644 index 0000000..39ebdaf --- /dev/null +++ b/Skype History Viewer/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Skype_History_Viewer.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Skype_History_Viewer.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Skype History Viewer/Properties/Resources.resx b/Skype History Viewer/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Skype History Viewer/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Skype History Viewer/Properties/Settings.Designer.cs b/Skype History Viewer/Properties/Settings.Designer.cs new file mode 100644 index 0000000..5d571f7 --- /dev/null +++ b/Skype History Viewer/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Skype_History_Viewer.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Skype History Viewer/Properties/Settings.settings b/Skype History Viewer/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Skype History Viewer/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Skype History Viewer/Skype History Viewer.csproj b/Skype History Viewer/Skype History Viewer.csproj new file mode 100644 index 0000000..e6bc11b --- /dev/null +++ b/Skype History Viewer/Skype History Viewer.csproj @@ -0,0 +1,90 @@ + + + + + Debug + AnyCPU + {09D9B937-FC58-4DE8-B4F7-BC59B767B76F} + WinExe + Properties + Skype_History_Viewer + Skype History Viewer + v4.5.2 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + \ No newline at end of file