Skip to content

Commit

Permalink
Update for gitignore. Fixed a couple of bugs with selecting recording…
Browse files Browse the repository at this point in the history
…s. Updated ffmpeg.
  • Loading branch information
ispysoftware committed Feb 13, 2017
1 parent 8b82d74 commit 5fae638
Show file tree
Hide file tree
Showing 968 changed files with 355,130 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/obj/
Wix/**/bin/
Wix/**/obj/
Wix/Bootstrap32/bin/Release/
Wix/Bootstrap32/bin/Debug/
Wix/Bootstrap64/bin/Release/
Wix/Bootstrap64/bin/Debug/
.vs/
packages/
FFmpeg.AutoGen/bin/
FFmpeg.AutoGen/obj/
DLLS/managed/
[Bb]in
[Dd]ebug*/
[Rr]elease*/

# Readmes
Plugins/*
!Plugins/readme.txt
VLC64/*
!VLC64/readme.txt

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
*.GhostDoc.xml

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db
7 changes: 7 additions & 0 deletions .gitignore.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
bin/
obj/
wix/ispy32/obj
wix/ispy64/obj
wix/ispy32/bin
wix/ispy64/bin
.vs
6 changes: 6 additions & 0 deletions .nuget/NuGet.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>
202 changes: 202 additions & 0 deletions AboutForm.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
using System;
using System.ComponentModel;
using System.Windows.Forms;

namespace iSpyApplication
{
/// <summary>
/// Summary description for AboutForm.
/// </summary>
public class AboutForm : Form
{
private Label _lblCopyright;
private PictureBox _pictureBox1;
private Label _lblVersion;
private Button _btnOk;
private LinkLabel linkLabel1;
private TableLayoutPanel tableLayoutPanel1;

/// <summary>
/// Required designer variable.
/// </summary>
private Container components = null;

public AboutForm( )
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
RenderResources();
//
// TODO: Add any constructor code after InitializeComponent call
//
}

private void RenderResources()
{
_lblVersion.Text = string.Format("{0}{1} v{2}",
Application.ProductName, Program.Platform != "x86" ? " 64" : "",
Application.ProductVersion);

Helper.SetTitle(this);

_lblCopyright.Text = "Copyright \u00a9 2007-" + Helper.Now.Year+" DeveloperInABox";
}



/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(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()
{
this._lblCopyright = new System.Windows.Forms.Label();
this._pictureBox1 = new System.Windows.Forms.PictureBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this._btnOk = new System.Windows.Forms.Button();
this._lblVersion = new System.Windows.Forms.Label();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this._pictureBox1)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// _lblCopyright
//
this._lblCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this._lblCopyright.Location = new System.Drawing.Point(174, 25);
this._lblCopyright.Name = "_lblCopyright";
this._lblCopyright.Size = new System.Drawing.Size(249, 25);
this._lblCopyright.TabIndex = 13;
this._lblCopyright.Text = "Copyright © 2016 DeveloperInABox";
this._lblCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// _pictureBox1
//
this._pictureBox1.Image = global::iSpyApplication.Properties.Resources.ispy;
this._pictureBox1.Location = new System.Drawing.Point(3, 3);
this._pictureBox1.Name = "_pictureBox1";
this.tableLayoutPanel1.SetRowSpan(this._pictureBox1, 5);
this._pictureBox1.Size = new System.Drawing.Size(152, 142);
this._pictureBox1.TabIndex = 17;
this._pictureBox1.TabStop = false;
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(174, 50);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Padding = new System.Windows.Forms.Padding(3);
this.linkLabel1.Size = new System.Drawing.Size(154, 23);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "www.iSpyConnect.com";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// _btnOk
//
this._btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this._btnOk.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this._btnOk.Location = new System.Drawing.Point(333, 78);
this._btnOk.Name = "_btnOk";
this._btnOk.Size = new System.Drawing.Size(90, 26);
this._btnOk.TabIndex = 19;
this._btnOk.Text = "OK";
this._btnOk.UseVisualStyleBackColor = true;
this._btnOk.Click += new System.EventHandler(this.BtnOkClick);
//
// _lblVersion
//
this._lblVersion.AutoSize = true;
this._lblVersion.Location = new System.Drawing.Point(174, 0);
this._lblVersion.Name = "_lblVersion";
this._lblVersion.Size = new System.Drawing.Size(56, 17);
this._lblVersion.TabIndex = 18;
this._lblVersion.Text = "Version";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.17595F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 59.82405F));
this.tableLayoutPanel1.Controls.Add(this._pictureBox1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this._lblVersion, 1, 0);
this.tableLayoutPanel1.Controls.Add(this._lblCopyright, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.linkLabel1, 1, 2);
this.tableLayoutPanel1.Controls.Add(this._btnOk, 1, 3);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(8, 8);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 5;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(426, 129);
this.tableLayoutPanel1.TabIndex = 22;
//
// AboutForm
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(442, 145);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutForm";
this.Padding = new System.Windows.Forms.Padding(8);
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About";
this.Load += new System.EventHandler(this.AboutFormLoad);
((System.ComponentModel.ISupportInitialize)(this._pictureBox1)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);

}
#endregion

private void AboutFormLoad(object sender, EventArgs e)
{

}

private void LinkLabel2LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
MainForm.StartBrowser(MainForm.Website+"/");
}

private void BtnOkClick(object sender, EventArgs e)
{
Close();
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
MainForm.StartBrowser("http://www.ispyconnect.com");
}


}
}
120 changes: 120 additions & 0 deletions AboutForm.resx
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
Loading

0 comments on commit 5fae638

Please sign in to comment.