Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.MainForm.WindowsForms/3.3/Dialogs/InfoBox.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
22using System;
23using System.IO;
24using System.Reflection;
25using System.Windows.Forms;
26
27namespace HeuristicLab.MainForm.WindowsForms {
28  public partial class InfoBox : Form {
29    protected string embeddedResourceName;
30    protected IView parentView;
31
32    public InfoBox(string caption, string embeddedResourceName, IView parentView) {
33      InitializeComponent();
34      this.Text = caption;
35      this.parentView = parentView;
36      this.embeddedResourceName = embeddedResourceName;
37    }
38
39    protected virtual void LoadEmbeddedResource() {
40      string extension = Path.GetExtension(embeddedResourceName);
41      Assembly assembly = Assembly.GetAssembly(parentView.GetType());
42      try {
43        using (Stream stream = assembly.GetManifestResourceStream(embeddedResourceName)) {
44          if (extension == ".rtf") {
45            infoRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
46          } else if (extension == ".txt") {
47            infoRichTextBox.LoadFile(stream, RichTextBoxStreamType.UnicodePlainText);
48          } else {
49            infoRichTextBox.Text = "Error: Unsupported help format: " + extension;
50          }
51        }
52      } catch (Exception ex) {
53        infoRichTextBox.Text = "Error: Could not load help text. Exception is: " + Environment.NewLine + ex.ToString();
54      }
55    }
56
57    private void InfoBox_Load(object sender, EventArgs e) {
58      LoadEmbeddedResource();
59    }
60
61    private void infoRichTextBox_LinkClicked(object sender, LinkClickedEventArgs e) {
62      System.Diagnostics.Process.Start(e.LinkText);
63    }
64  }
65}
Note: See TracBrowser for help on using the repository browser.