web browser + fix shiftorium merge conflict

This commit is contained in:
Michael 2017-05-23 20:36:16 -04:00
parent 660c42a19c
commit 44a4de1c17
5 changed files with 379 additions and 3 deletions

View file

@ -0,0 +1,153 @@
namespace ShiftOS.WinForms.Applications
{
partial class WebBrowser
{
/// <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 Component 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.flcontrols = new System.Windows.Forms.FlowLayoutPanel();
this.btnback = new System.Windows.Forms.Button();
this.btnforward = new System.Windows.Forms.Button();
this.txturl = new System.Windows.Forms.TextBox();
this.btngo = new System.Windows.Forms.Button();
this.pnlcanvas = new System.Windows.Forms.Panel();
this.wbmain = new System.Windows.Forms.WebBrowser();
this.flcontrols.SuspendLayout();
this.pnlcanvas.SuspendLayout();
this.SuspendLayout();
//
// flcontrols
//
this.flcontrols.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.flcontrols.Controls.Add(this.btnback);
this.flcontrols.Controls.Add(this.btnforward);
this.flcontrols.Controls.Add(this.txturl);
this.flcontrols.Controls.Add(this.btngo);
this.flcontrols.Dock = System.Windows.Forms.DockStyle.Top;
this.flcontrols.Location = new System.Drawing.Point(0, 0);
this.flcontrols.Name = "flcontrols";
this.flcontrols.Size = new System.Drawing.Size(539, 29);
this.flcontrols.TabIndex = 2;
//
// btnback
//
this.btnback.AutoSize = true;
this.btnback.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btnback.Location = new System.Drawing.Point(3, 3);
this.btnback.Name = "btnback";
this.btnback.Size = new System.Drawing.Size(23, 23);
this.btnback.TabIndex = 0;
this.btnback.Text = "<";
this.btnback.UseVisualStyleBackColor = true;
this.btnback.Click += new System.EventHandler(this.btnback_Click);
//
// btnforward
//
this.btnforward.AutoSize = true;
this.btnforward.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btnforward.Location = new System.Drawing.Point(32, 3);
this.btnforward.Name = "btnforward";
this.btnforward.Size = new System.Drawing.Size(23, 23);
this.btnforward.TabIndex = 1;
this.btnforward.Text = ">";
this.btnforward.UseVisualStyleBackColor = true;
this.btnforward.Click += new System.EventHandler(this.btnforward_Click);
//
// txturl
//
this.txturl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txturl.Location = new System.Drawing.Point(61, 3);
this.txturl.Name = "txturl";
this.txturl.Size = new System.Drawing.Size(435, 20);
this.txturl.TabIndex = 2;
this.txturl.WordWrap = false;
this.txturl.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txturl_KeyDown);
//
// btngo
//
this.btngo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btngo.AutoSize = true;
this.btngo.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btngo.Location = new System.Drawing.Point(502, 3);
this.btngo.Name = "btngo";
this.btngo.Size = new System.Drawing.Size(31, 23);
this.btngo.TabIndex = 3;
this.btngo.Text = "Go";
this.btngo.UseVisualStyleBackColor = true;
this.btngo.Click += new System.EventHandler(this.btngo_Click);
//
// pnlcanvas
//
this.pnlcanvas.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pnlcanvas.Controls.Add(this.wbmain);
this.pnlcanvas.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlcanvas.Location = new System.Drawing.Point(0, 29);
this.pnlcanvas.Name = "pnlcanvas";
this.pnlcanvas.Size = new System.Drawing.Size(539, 374);
this.pnlcanvas.TabIndex = 3;
//
// wbmain
//
this.wbmain.AllowWebBrowserDrop = false;
this.wbmain.Dock = System.Windows.Forms.DockStyle.Fill;
this.wbmain.IsWebBrowserContextMenuEnabled = false;
this.wbmain.Location = new System.Drawing.Point(0, 0);
this.wbmain.MinimumSize = new System.Drawing.Size(20, 20);
this.wbmain.Name = "wbmain";
this.wbmain.ScriptErrorsSuppressed = true;
this.wbmain.Size = new System.Drawing.Size(537, 372);
this.wbmain.TabIndex = 0;
this.wbmain.WebBrowserShortcutsEnabled = false;
this.wbmain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbmain_Navigated);
this.wbmain.NewWindow += new System.ComponentModel.CancelEventHandler(this.wbmain_NewWindow);
//
// WebBrowser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.pnlcanvas);
this.Controls.Add(this.flcontrols);
this.Name = "WebBrowser";
this.Size = new System.Drawing.Size(539, 403);
this.flcontrols.ResumeLayout(false);
this.flcontrols.PerformLayout();
this.pnlcanvas.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.FlowLayoutPanel flcontrols;
private System.Windows.Forms.Button btnback;
private System.Windows.Forms.Button btnforward;
private System.Windows.Forms.TextBox txturl;
private System.Windows.Forms.Button btngo;
private System.Windows.Forms.Panel pnlcanvas;
private System.Windows.Forms.WebBrowser wbmain;
}
}

View file

@ -0,0 +1,97 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ShiftOS.Engine;
namespace ShiftOS.WinForms.Applications
{
[WinOpen("web_browser")]
[AppscapeEntry("Web Browser", "We're going surfing on the Internet! This application allows you to break the bounds of the Digital Society and connect to the outer Internet inside ShiftOS.",
4096, 10000, "color_depth_24_bits", "Networking")]
[Launcher("Web Browser", false, null, "Networking")]
[DefaultTitle("Web Browser")]
[DefaultIcon("iconShiftnet")]
public partial class WebBrowser : UserControl, IShiftOSWindow
{
public WebBrowser()
{
InitializeComponent();
uiupdate = new Timer();
uiupdate.Tick += (o, a) =>
{
btnback.Location = new Point(2, 2);
btnforward.Location = new Point(btnback.Left + btnback.Width + 2, 2);
txturl.Location = new Point(btnforward.Left + btnforward.Width + 2, 2);
txturl.Width = flcontrols.Width - btnback.Width - 2 - btnforward.Width - 2 - (btngo.Width * 2) - 2;
btngo.Location = new Point(flcontrols.Width - btngo.Width - 2, 2);
btnback.Enabled = wbmain.CanGoBack;
btnforward.Enabled = wbmain.CanGoForward;
};
uiupdate.Interval = 100;
}
Timer uiupdate = null;
public void OnLoad()
{
uiupdate.Start();
wbmain.Url = new Uri("http://getshiftos.ml/");
}
public void OnSkinLoad()
{
}
public bool OnUnload()
{
uiupdate.Stop();
return true;
}
public void OnUpgrade()
{
}
private void btnback_Click(object sender, EventArgs e)
{
wbmain.GoBack();
}
private void btnforward_Click(object sender, EventArgs e)
{
wbmain.GoForward();
}
private void btngo_Click(object sender, EventArgs e)
{
wbmain.Navigate(txturl.Text);
}
private void wbmain_NewWindow(object sender, CancelEventArgs e)
{
e.Cancel = true;
if (Shiftorium.UpgradeInstalled("web_browser_new_window"))
{
AppearanceManager.SetupWindow(new WebBrowser());
}
}
private void txturl_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
btngo_Click(sender, EventArgs.Empty);
}
private void wbmain_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
txturl.Text = wbmain.Url.ToString();
AppearanceManager.SetWindowTitle(this, wbmain.DocumentTitle + " - " + NameChangerBackend.GetNameRaw(this.GetType()));
}
}
}

View file

@ -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>

View file

@ -8,8 +8,6 @@
Category: "Enhancements",
},
{
<<<<<<< HEAD
=======
Name: "Shift Progress Bar",
Cost: 150,
Description: "Want to customize the look of all ShiftOS Progress Bars? Buy this upgrade today and you'll get the ability to set the foreground and background color of the progress bar, and many more things!.",
@ -24,7 +22,6 @@
Category: "Customization"
},
{
>>>>>>> 9999324bd7751f536741c108322766421dae1a52
Name: "GUI Based Login Screen",
Cost: 500,
Description: "Tired of using the text-based login screen in ShiftOS? Well, we have a functioning window manager, and a functioning desktop, why not use these tools to create a functioning and awesome-looking login screen?",

View file

@ -274,6 +274,12 @@
<Compile Include="Applications\VideoPlayer.Designer.cs">
<DependentUpon>VideoPlayer.cs</DependentUpon>
</Compile>
<Compile Include="Applications\WebBrowser.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Applications\WebBrowser.Designer.cs">
<DependentUpon>WebBrowser.cs</DependentUpon>
</Compile>
<Compile Include="Applications\WidgetManagerFrontend.cs">
<SubType>UserControl</SubType>
</Compile>
@ -523,6 +529,9 @@
<EmbeddedResource Include="Applications\VideoPlayer.resx">
<DependentUpon>VideoPlayer.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Applications\WebBrowser.resx">
<DependentUpon>WebBrowser.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Applications\WidgetManagerFrontend.resx">
<DependentUpon>WidgetManagerFrontend.cs</DependentUpon>
</EmbeddedResource>