Last change
on this file since 2591 was
2546,
checked in by swagner, 15 years ago
|
Continued work on Optimizer and on adapting all views to the new MainForm concept (#770)
|
File size:
1.5 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.MenuItems {
|
---|
14 | internal class SaveMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItemBase, IOptimizerUserInterfaceItemProvider {
|
---|
15 | public override string Name {
|
---|
16 | get { return "&Save"; }
|
---|
17 | }
|
---|
18 | public override IEnumerable<string> Structure {
|
---|
19 | get { return new string[] { "&File" }; }
|
---|
20 | }
|
---|
21 | public override int Position {
|
---|
22 | get { return 1300; }
|
---|
23 | }
|
---|
24 | public override ToolStripItemDisplayStyle ToolStripItemDisplayStyle {
|
---|
25 | get { return ToolStripItemDisplayStyle.ImageAndText; }
|
---|
26 | }
|
---|
27 | public override Image Image {
|
---|
28 | get { return Resources.SaveIcon; }
|
---|
29 | }
|
---|
30 | public override Keys ShortCutKeys {
|
---|
31 | get { return Keys.Control | Keys.S; }
|
---|
32 | }
|
---|
33 |
|
---|
34 | public override void MainFormInitialized(object sender, EventArgs e) {
|
---|
35 | ToolStripItem.Enabled = false;
|
---|
36 | }
|
---|
37 | public override void ActiveViewChanged(object sender, EventArgs e) {
|
---|
38 | IItemView activeView = MainFormManager.MainForm.ActiveView as IItemView;
|
---|
39 | ToolStripItem.Enabled = ((activeView != null) && (CreatableAttribute.IsCreatable(activeView.Item.GetType())));
|
---|
40 | }
|
---|
41 |
|
---|
42 | public override void Execute() {
|
---|
43 | FileManager.Save();
|
---|
44 | }
|
---|
45 | }
|
---|
46 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.