Last change
on this file since 2668 was
2656,
checked in by swagner, 15 years ago
|
Committing first results of the refactoring of HeuristicLab.Core and related plugins (#95)
|
File size:
1.3 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Windows.Forms;
|
---|
6 | using System.Drawing;
|
---|
7 | using HeuristicLab.MainForm;
|
---|
8 | using HeuristicLab.MainForm.WindowsForms;
|
---|
9 | using HeuristicLab.Common.Resources;
|
---|
10 | using HeuristicLab.Core;
|
---|
11 | using HeuristicLab.Core.Views;
|
---|
12 |
|
---|
13 | namespace HeuristicLab.Optimizer {
|
---|
14 | internal class SaveAllToolBarItem : HeuristicLab.MainForm.WindowsForms.ToolBarItemBase, IOptimizerUserInterfaceItemProvider {
|
---|
15 | public override string Name {
|
---|
16 | get { return "Save All"; }
|
---|
17 | }
|
---|
18 | public override string ToolTipText {
|
---|
19 | get { return "Save All Files"; }
|
---|
20 | }
|
---|
21 | public override int Position {
|
---|
22 | get { return 40; }
|
---|
23 | }
|
---|
24 | public override Image Image {
|
---|
25 | get { return Resources.SaveAllIcon; }
|
---|
26 | }
|
---|
27 |
|
---|
28 | public override void MainFormInitialized(object sender, EventArgs e) {
|
---|
29 | ToolStripItem.Enabled = false;
|
---|
30 | }
|
---|
31 | public override void ActiveViewChanged(object sender, EventArgs e) {
|
---|
32 | var views = from v in MainFormManager.MainForm.Views
|
---|
33 | where v is IObjectView
|
---|
34 | where CreatableAttribute.IsCreatable(((IObjectView)v).Object.GetType())
|
---|
35 | select v;
|
---|
36 | ToolStripItem.Enabled = views.FirstOrDefault() != null;
|
---|
37 | }
|
---|
38 |
|
---|
39 | public override void Execute() {
|
---|
40 | FileManager.SaveAll();
|
---|
41 | }
|
---|
42 | }
|
---|
43 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.