Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm/3.2/ToolBarSeparatorItemBase.cs @ 2541

Last change on this file since 2541 was 2541, checked in by mkommend, 14 years ago

adapted MainForm to fire an initialized event and renamed the event in ViewBase to Initialized (ticket #771)

File size: 1.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.MainForm {
7  public abstract class ToolBarSeparatorItemBase : IToolBarSeparatorItem {
8    public abstract int Position { get; }
9
10    public IEnumerable<string> Structure {
11      get { return new List<string>(); }
12    }
13
14    public string Name {
15      get { return string.Empty; }
16    }
17
18    public System.Drawing.Image Image {
19      get { return null; }
20    }
21
22    public string ToolTipText {
23      get { return string.Empty; }
24    }
25
26    public void Execute() {
27      throw new NotImplementedException();
28    }
29
30    public void ActiveViewChanged(object sender, EventArgs e) {
31      throw new NotImplementedException();
32    }
33
34    public void ViewChanged(object sender, EventArgs e) {
35      throw new NotImplementedException();
36    }
37
38    public void MainFormChanged(object sender, EventArgs e) {
39      throw new NotImplementedException();
40    }
41
42    public void MainFormInitialized(object sender, EventArgs e) {
43      throw new NotImplementedException();
44    }
45  }
46}
Note: See TracBrowser for help on using the repository browser.