proper import
git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@9 3f4676ac-adda-40fd-8265-58d1435b1672
This commit is contained in:
parent
66730fd649
commit
3151e1e342
454 changed files with 57577 additions and 0 deletions
298
trunk/BugReport/BugReportForm.cs
Normal file
298
trunk/BugReport/BugReportForm.cs
Normal file
|
@ -0,0 +1,298 @@
|
|||
// /**
|
||||
// ********
|
||||
// *
|
||||
// * ORIGIONAL CODE BASE IS Copyright (C) 2006-2010 by Alphons van der Heijden
|
||||
// * The code was donated on 4/28/2010 by Alphons van der Heijden
|
||||
// * To Brandon'Dimentox Travanti' Husbands & Malcolm J. Kudra which in turn Liscense under the GPLv2.
|
||||
// * In agreement to Alphons van der Heijden wishes.
|
||||
// *
|
||||
// * The community would like to thank Alphons for all of his hard work, blood sweat and tears.
|
||||
// * Without his work the community would be stuck with crappy editors.
|
||||
// *
|
||||
// * The source code in this file ("Source Code") is provided by The LSLEditor Group
|
||||
// * to you under the terms of the GNU General Public License, version 2.0
|
||||
// * ("GPL"), unless you have obtained a separate licensing agreement
|
||||
// * ("Other License"), formally executed by you and The LSLEditor Group. Terms of
|
||||
// * the GPL can be found in the gplv2.txt document.
|
||||
// *
|
||||
// ********
|
||||
// * GPLv2 Header
|
||||
// ********
|
||||
// * LSLEditor, a External editor for the LSL Language.
|
||||
// * Copyright (C) 2010 The LSLEditor Group.
|
||||
//
|
||||
// * This program is free software; you can redistribute it and/or
|
||||
// * modify it under the terms of the GNU General Public License
|
||||
// * as published by the Free Software Foundation; either version 2
|
||||
// * of the License, or (at your option) any later version.
|
||||
// *
|
||||
// * This program is distributed in the hope that it will be useful,
|
||||
// * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// * GNU General Public License for more details.
|
||||
// *
|
||||
// * You should have received a copy of the GNU General Public License
|
||||
// * along with this program; if not, write to the Free Software
|
||||
// * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
// ********
|
||||
// *
|
||||
// * The above copyright notice and this permission notice shall be included in all
|
||||
// * copies or substantial portions of the Software.
|
||||
// *
|
||||
// ********
|
||||
// */
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using System.Reflection;
|
||||
|
||||
using LSLEditor.org.lsleditor.www;
|
||||
|
||||
|
||||
namespace LSLEditor.BugReport
|
||||
{
|
||||
public partial class BugReportForm : Form
|
||||
{
|
||||
private bool blnComplete;
|
||||
private UploadBugReport ubr;
|
||||
|
||||
private LSLEditorForm parent;
|
||||
|
||||
public BugReportForm(LSLEditorForm parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.parent = parent;
|
||||
this.Icon = parent.Icon;
|
||||
this.textBox1.Text = Properties.Settings.Default.AvatarName;
|
||||
this.textBox2.Text = Properties.Settings.Default.EmailAddress;
|
||||
this.listView1.Columns.Add("ScriptName",this.listView1.Width-30);
|
||||
foreach (Form form in parent.Children)
|
||||
{
|
||||
EditForm editForm = form as EditForm;
|
||||
if (editForm == null || editForm.IsDisposed)
|
||||
continue;
|
||||
ListViewItem lvi = new ListViewItem(editForm.ScriptName);
|
||||
lvi.Checked = false;
|
||||
this.listView1.Items.Add(lvi);
|
||||
}
|
||||
ShowBugReportsList();
|
||||
}
|
||||
|
||||
private void ShowBugReportsList()
|
||||
{
|
||||
if (Properties.Settings.Default.Bugreports == null)
|
||||
return;
|
||||
this.listView2.Items.Clear();
|
||||
foreach (string Handle in Properties.Settings.Default.Bugreports)
|
||||
{
|
||||
long result;
|
||||
if (!long.TryParse(Handle, out result))
|
||||
continue;
|
||||
result *= (long)1e7;
|
||||
DateTime dateTime = new DateTime(result);
|
||||
ListViewItem lvi = new ListViewItem(Handle);
|
||||
lvi.SubItems.Add(dateTime.ToString());
|
||||
lvi.Tag = Handle;
|
||||
this.listView2.Items.Add(lvi);
|
||||
}
|
||||
}
|
||||
|
||||
//close
|
||||
private void button3_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.timer1.Stop();
|
||||
if (ubr != null)
|
||||
ubr.Stop();
|
||||
this.Close();
|
||||
}
|
||||
|
||||
// cancel
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.button2.Enabled = false;
|
||||
this.timer1.Stop();
|
||||
this.progressBar1.Value = 0;
|
||||
if (ubr != null)
|
||||
ubr.Stop();
|
||||
this.button1.Enabled = true;
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
string strMessage = this.textBox3.Text.Trim();
|
||||
if (strMessage == "")
|
||||
{
|
||||
MessageBox.Show("The bug report is empty(?!), it is not send!", "Bug report", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
return;
|
||||
}
|
||||
ubr = new UploadBugReport();
|
||||
this.button1.Enabled = false;
|
||||
this.button2.Enabled = true;
|
||||
this.blnComplete = false;
|
||||
this.timer1.Start();
|
||||
ubr.OnComplete += new UploadBugReport.UploadCompleteHandler(ubr_OnComplete);
|
||||
List<UploadBugReport.FileToUpload> list = new List<UploadBugReport.FileToUpload>();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
Properties.Settings.Default.AvatarName = this.textBox1.Text;
|
||||
Properties.Settings.Default.EmailAddress = this.textBox2.Text;
|
||||
|
||||
sb.AppendFormat("Version: {0} {1}\r\n",
|
||||
this.parent.Text,
|
||||
Assembly.GetExecutingAssembly().GetName().Version.ToString());
|
||||
sb.AppendFormat("Name: {0}\r\n", this.textBox1.Text);
|
||||
sb.AppendFormat("Email: {0}\r\n\r\n", this.textBox2.Text);
|
||||
sb.Append(this.textBox3.Text);
|
||||
list.Add(new UploadBugReport.FileToUpload("bugreport.txt", sb.ToString()));
|
||||
foreach (ListViewItem lvi in this.listView1.Items)
|
||||
{
|
||||
if (!lvi.Checked)
|
||||
continue;
|
||||
string strScriptName = lvi.Text;
|
||||
string strBody = null;
|
||||
foreach (Form form in parent.Children)
|
||||
{
|
||||
EditForm editForm = form as EditForm;
|
||||
if (editForm == null || editForm.IsDisposed)
|
||||
continue;
|
||||
if (editForm.ScriptName == strScriptName)
|
||||
strBody = editForm.SourceCode;
|
||||
}
|
||||
if(strBody != null)
|
||||
list.Add(new UploadBugReport.FileToUpload(strScriptName, strBody));
|
||||
}
|
||||
ubr.UploadAsync(list, this.progressBar1);
|
||||
}
|
||||
|
||||
void ubr_OnComplete(object sender, UploadBugReport.UploadCompleteEventArgs e)
|
||||
{
|
||||
if(e.TotalBytes == -1)
|
||||
MessageBox.Show("There is something wrong. Your bug report has not been sent!!", "Oops...", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
else
|
||||
MessageBox.Show("Your bug report has been sent (" + e.TotalBytes + " bytes)", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
this.blnComplete = true;
|
||||
}
|
||||
|
||||
private void timer1_Tick(object sender, EventArgs e)
|
||||
{
|
||||
if (this.blnComplete)
|
||||
{
|
||||
this.timer1.Stop();
|
||||
|
||||
this.button1.Enabled = true;
|
||||
this.button2.Enabled = false;
|
||||
|
||||
this.progressBar1.Value = 0;
|
||||
this.textBox3.Clear();
|
||||
ShowBugReportsList();
|
||||
this.tabControl1.SelectedIndex = 1;
|
||||
}
|
||||
|
||||
if (ubr != null)
|
||||
{
|
||||
if (!ubr.blnRunning)
|
||||
{
|
||||
this.button1.Enabled = true;
|
||||
this.timer1.Stop();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void listView2_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.listView2.SelectedItems.Count == 0)
|
||||
return;
|
||||
ListViewItem lvi = this.listView2.SelectedItems[0];
|
||||
string Handle = lvi.Tag.ToString();
|
||||
|
||||
Service1 service1 = new Service1();
|
||||
service1.GetStatusCompleted += new GetStatusCompletedEventHandler(service1_GetStatusCompleted);
|
||||
service1.GetStatusAsync(Handle, Handle);
|
||||
}
|
||||
|
||||
void service1_GetStatusCompleted(object sender, GetStatusCompletedEventArgs e)
|
||||
{
|
||||
this.textBox5.Clear();
|
||||
string Handle = e.UserState.ToString();
|
||||
if (e.Error != null)
|
||||
{
|
||||
this.textBox4.Text = "Bug report [" + Handle + "] not available (at this time)";
|
||||
return;
|
||||
}
|
||||
|
||||
string strResult = e.Result;
|
||||
if (strResult == null)
|
||||
{
|
||||
this.textBox5.Text = "Bug report [" + Handle + "] does not exist (anymore)";
|
||||
return;
|
||||
}
|
||||
|
||||
this.textBox5.Text = strResult.Replace("\n", "\r\n");
|
||||
|
||||
Service1 service1 = new Service1();
|
||||
service1.GetBugReportCompleted += new GetBugReportCompletedEventHandler(service1_GetBugReportCompleted);
|
||||
service1.GetBugReportAsync(Handle, Handle);
|
||||
}
|
||||
|
||||
void service1_GetBugReportCompleted(object sender, GetBugReportCompletedEventArgs e)
|
||||
{
|
||||
this.textBox4.Clear();
|
||||
string Handle = e.UserState.ToString();
|
||||
|
||||
if (e.Error != null)
|
||||
{
|
||||
this.textBox4.Text = "Bug report [" + Handle + "] not available (at this time)";
|
||||
return;
|
||||
}
|
||||
|
||||
string strResult = e.Result;
|
||||
if (strResult == null)
|
||||
{
|
||||
this.textBox4.Text = "Bug report [" + Handle + "] does not extist (anymore)";
|
||||
return;
|
||||
}
|
||||
|
||||
this.textBox4.Text = strResult.Replace("\n", "\r\n");
|
||||
}
|
||||
|
||||
private void deleteToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.listView2.SelectedItems.Count == 0)
|
||||
return;
|
||||
|
||||
if (MessageBox.Show("Delete " + this.listView2.SelectedItems.Count + " bugreports?", "Delete Bugreports", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
|
||||
{
|
||||
for(int intI=0; intI<this.listView2.SelectedItems.Count;intI++)
|
||||
{
|
||||
ListViewItem lvi = this.listView2.SelectedItems[intI];
|
||||
string Handle = lvi.Tag.ToString();
|
||||
Properties.Settings.Default.Bugreports.Remove(Handle);
|
||||
}
|
||||
this.textBox4.Clear();
|
||||
this.textBox5.Clear();
|
||||
}
|
||||
ShowBugReportsList();
|
||||
}
|
||||
|
||||
private void button4_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.button4.Text.Contains("uncheck"))
|
||||
{
|
||||
foreach (ListViewItem lvi in this.listView1.Items)
|
||||
lvi.Checked = false;
|
||||
this.button4.Text = "check all";
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (ListViewItem lvi in this.listView1.Items)
|
||||
lvi.Checked = true;
|
||||
this.button4.Text = "uncheck all";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue