GUI/ReportForm.cs
author moel.mich
Sat, 24 Jul 2010 20:15:49 +0000
changeset 158 119693c3b7d1
child 206 1fa8eddc24a7
permissions -rw-r--r--
Replaced the SplitContainer with SplitContainerAdv. Now the panels are directly resized and the splitter can be drawn nicely.
moel@150
     1
/*
moel@150
     2
  
moel@150
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@150
     4
moel@150
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@150
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@150
     7
  the License. You may obtain a copy of the License at
moel@150
     8
 
moel@150
     9
  http://www.mozilla.org/MPL/
moel@150
    10
moel@150
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@150
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@150
    13
  for the specific language governing rights and limitations under the License.
moel@150
    14
moel@150
    15
  The Original Code is the Open Hardware Monitor code.
moel@150
    16
moel@150
    17
  The Initial Developer of the Original Code is 
moel@150
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@150
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2010
moel@150
    20
  the Initial Developer. All Rights Reserved.
moel@150
    21
moel@150
    22
  Contributor(s):
moel@150
    23
moel@150
    24
  Alternatively, the contents of this file may be used under the terms of
moel@150
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@150
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@150
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@150
    28
  of those above. If you wish to allow use of your version of this file only
moel@150
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@150
    30
  use your version of this file under the terms of the MPL, indicate your
moel@150
    31
  decision by deleting the provisions above and replace them with the notice
moel@150
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@150
    33
  the provisions above, a recipient may use your version of this file under
moel@150
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@150
    35
 
moel@150
    36
*/
moel@150
    37
moel@150
    38
using System;
moel@150
    39
using System.Collections.Generic;
moel@150
    40
using System.ComponentModel;
moel@150
    41
using System.Drawing;
moel@150
    42
using System.IO;
moel@150
    43
using System.Net;
moel@150
    44
using System.Text;
moel@150
    45
using System.Web;
moel@150
    46
using System.Windows.Forms;
moel@150
    47
moel@150
    48
namespace OpenHardwareMonitor.GUI {
moel@150
    49
  public partial class ReportForm : Form {
moel@150
    50
moel@150
    51
    private string report;
moel@150
    52
moel@150
    53
    public ReportForm() {
moel@150
    54
      InitializeComponent();
moel@150
    55
      try {
moel@150
    56
        titleLabel.Font = new Font(SystemFonts.DefaultFont, FontStyle.Bold);      
moel@150
    57
        reportTextBox.Font = new Font(FontFamily.GenericMonospace,
moel@150
    58
          SystemFonts.DefaultFont.Size);
moel@150
    59
      } catch { }
moel@150
    60
    }
moel@150
    61
moel@150
    62
    public string Report {
moel@150
    63
      get { return report; }
moel@150
    64
      set { 
moel@150
    65
        report = value;
moel@150
    66
        reportTextBox.Text = report;
moel@150
    67
      }      
moel@150
    68
    }
moel@150
    69
moel@150
    70
    private void sendButton_Click(object sender, EventArgs e) {
moel@150
    71
      Version version = typeof(CrashForm).Assembly.GetName().Version;
moel@150
    72
      WebRequest request = WebRequest.Create(
moel@150
    73
        "http://openhardwaremonitor.org/report.php");
moel@150
    74
      request.Method = "POST";
moel@150
    75
      request.Timeout = 5000;
moel@150
    76
      request.ContentType = "application/x-www-form-urlencoded";
moel@150
    77
moel@150
    78
      string report =
moel@150
    79
        "type=hardware&" + 
moel@150
    80
        "version=" + HttpUtility.UrlEncode(version.ToString()) + "&" +
moel@150
    81
        "report=" + HttpUtility.UrlEncode(reportTextBox.Text) + "&" +
moel@150
    82
        "comment=" + HttpUtility.UrlEncode(commentTextBox.Text) + "&" +
moel@150
    83
        "email=" + HttpUtility.UrlEncode(emailTextBox.Text);
moel@150
    84
      byte[] byteArray = Encoding.UTF8.GetBytes(report);
moel@150
    85
      request.ContentLength = byteArray.Length;
moel@150
    86
moel@150
    87
      try {
moel@150
    88
        Stream dataStream = request.GetRequestStream();
moel@150
    89
        dataStream.Write(byteArray, 0, byteArray.Length);
moel@150
    90
        dataStream.Close();
moel@150
    91
moel@150
    92
        WebResponse response = request.GetResponse();
moel@150
    93
        dataStream = response.GetResponseStream();
moel@150
    94
        StreamReader reader = new StreamReader(dataStream);
moel@150
    95
        string responseFromServer = reader.ReadToEnd();
moel@150
    96
        reader.Close();
moel@150
    97
        dataStream.Close();
moel@150
    98
        response.Close();
moel@150
    99
moel@150
   100
        Close();
moel@150
   101
      } catch (WebException) {
moel@150
   102
        MessageBox.Show("Sending the hardware report failed.", "Error",
moel@150
   103
          MessageBoxButtons.OK, MessageBoxIcon.Error);
moel@150
   104
      }
moel@150
   105
    }
moel@150
   106
  }  
moel@150
   107
}