1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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.Windows.Forms;
|
---|
24 | using HeuristicLab.Clients.Hive.SlaveCore.Views.Properties;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Core.Views;
|
---|
28 | using HeuristicLab.MainForm;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
|
---|
31 | [View("LogView: Displays logged messages from the slave core.")]
|
---|
32 | [Content(typeof(SlaveItem), IsDefaultView = false)]
|
---|
33 | public partial class LogView : ItemView {
|
---|
34 | public new SlaveItem Content {
|
---|
35 | get { return (SlaveItem)base.Content; }
|
---|
36 | set {
|
---|
37 | if (base.Content != value) {
|
---|
38 | base.Content = value;
|
---|
39 | }
|
---|
40 | }
|
---|
41 | }
|
---|
42 |
|
---|
43 | private ILog log;
|
---|
44 |
|
---|
45 | public LogView() {
|
---|
46 | InitializeComponent();
|
---|
47 | log = new ThreadSafeLog(Settings.Default.MaxLogCount);
|
---|
48 | hlLogView.Content = log;
|
---|
49 | }
|
---|
50 |
|
---|
51 | #region Register Content Events
|
---|
52 | protected override void DeregisterContentEvents() {
|
---|
53 | Content.SlaveMessageLogged -= new System.EventHandler<EventArgs<string>>(Content_SlaveMessageLogged);
|
---|
54 |
|
---|
55 | base.DeregisterContentEvents();
|
---|
56 | }
|
---|
57 |
|
---|
58 | protected override void RegisterContentEvents() {
|
---|
59 | base.RegisterContentEvents();
|
---|
60 |
|
---|
61 | Content.SlaveMessageLogged += new System.EventHandler<EventArgs<string>>(Content_SlaveMessageLogged);
|
---|
62 | }
|
---|
63 | #endregion
|
---|
64 |
|
---|
65 | protected override void OnContentChanged() {
|
---|
66 | base.OnContentChanged();
|
---|
67 | }
|
---|
68 |
|
---|
69 | protected override void SetEnabledStateOfControls() {
|
---|
70 | base.SetEnabledStateOfControls();
|
---|
71 | }
|
---|
72 |
|
---|
73 | #region Event Handlers
|
---|
74 | void Content_SlaveMessageLogged(object sender, EventArgs<string> e) {
|
---|
75 | log.LogMessage(e.Value);
|
---|
76 | }
|
---|
77 |
|
---|
78 | private void LogView_Load(object sender, EventArgs e) {
|
---|
79 | chkShowBalloonTips.Checked = Settings.Default.ShowBalloonTips;
|
---|
80 | }
|
---|
81 |
|
---|
82 | private void chkShowBalloonTips_CheckedChanged(object sender, EventArgs e) {
|
---|
83 | if (Settings.Default.ShowBalloonTips != chkShowBalloonTips.Checked) {
|
---|
84 | Settings.Default.ShowBalloonTips = chkShowBalloonTips.Checked;
|
---|
85 | Settings.Default.Save();
|
---|
86 | }
|
---|
87 | }
|
---|
88 | #endregion
|
---|
89 | }
|
---|
90 | }
|
---|