1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.IO;
|
---|
24 | using System.Reflection;
|
---|
25 | using System.Windows.Forms;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Core.Views {
|
---|
28 | public partial class InfoBox : Form {
|
---|
29 | public string Caption {
|
---|
30 | get { return this.Text; }
|
---|
31 | set {
|
---|
32 | if (InvokeRequired)
|
---|
33 | Invoke(new Action<string>(x => this.Caption = x), value);
|
---|
34 | else
|
---|
35 | this.Text = value;
|
---|
36 | }
|
---|
37 | }
|
---|
38 |
|
---|
39 | protected string embeddedResourceName;
|
---|
40 | public string EmbeddedResourceName {
|
---|
41 | get { return embeddedResourceName; }
|
---|
42 | set {
|
---|
43 | if (InvokeRequired)
|
---|
44 | Invoke(new Action<string>(x => this.EmbeddedResourceName = x), value);
|
---|
45 | else {
|
---|
46 | embeddedResourceName = value;
|
---|
47 | LoadEmbeddedResource(embeddedResourceName);
|
---|
48 | }
|
---|
49 | }
|
---|
50 | }
|
---|
51 |
|
---|
52 | public InfoBox() {
|
---|
53 | InitializeComponent();
|
---|
54 | }
|
---|
55 |
|
---|
56 | public InfoBox(string caption, string embeddedResourceName)
|
---|
57 | : this() {
|
---|
58 | Caption = caption;
|
---|
59 | EmbeddedResourceName = embeddedResourceName;
|
---|
60 | }
|
---|
61 |
|
---|
62 | protected virtual void LoadEmbeddedResource(string name) {
|
---|
63 | Assembly assembly = Assembly.GetCallingAssembly();
|
---|
64 | try {
|
---|
65 | using (Stream stream = assembly.GetManifestResourceStream(name))
|
---|
66 | infoRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
|
---|
67 | }
|
---|
68 | catch (Exception ex) {
|
---|
69 | infoRichTextBox.Text = "Error: Could not load info text. Exception is: " + Environment.NewLine + ex.ToString();
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | protected virtual void okButton_Click(object sender, EventArgs e) {
|
---|
74 | Close();
|
---|
75 | }
|
---|
76 | }
|
---|
77 | }
|
---|