Last change
on this file since 2620 was
2541,
checked in by mkommend, 15 years ago
|
adapted MainForm to fire an initialized event and renamed the event in ViewBase to Initialized (ticket #771)
|
File size:
1.1 KB
|
Rev | Line | |
---|
[2514] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace 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 | }
|
---|
[2541] | 41 |
|
---|
| 42 | public void MainFormInitialized(object sender, EventArgs e) {
|
---|
| 43 | throw new NotImplementedException();
|
---|
| 44 | }
|
---|
[2514] | 45 | }
|
---|
| 46 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.