Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2530 was 2514, checked in by mkommend, 15 years ago

added ability to generate separators in between menu- and toolbaritems (ticket #771)

File size: 1007 bytes
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}
Note: See TracBrowser for help on using the repository browser.