Changeset 4068 for trunk/sources/HeuristicLab.MainForm
- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm/3.3
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm/3.3/ActionUserInterfaceItem.cs
r3437 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 27 24 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/ContentAttribute.cs
r3437 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using System.Reflection; 27 26 -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IActionUserInterfaceItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using System.Drawing; 27 23 -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IContentView.cs
r3437 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.ComponentModel;26 23 using HeuristicLab.Common; 27 24 -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IMainForm.cs
r3796 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 using System.Drawing;27 using System.ComponentModel;28 24 using HeuristicLab.Common; 29 25 -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IMenuItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.Drawing;27 22 28 23 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IMenuSeparatorItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 27 23 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IPositionableUserInterfaceItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 23 27 24 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IToolBarItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 27 23 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IToolBarSeparatorItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 27 23 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IUserInterfaceItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.Drawing;27 22 28 23 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/Interfaces/IView.cs
r3437 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.ComponentModel;26 23 27 24 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/MainFormManager.cs
r3557 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;25 using HeuristicLab.Common; 26 26 using HeuristicLab.PluginInfrastructure; 27 using System.Diagnostics;28 using HeuristicLab.Common;29 27 30 28 namespace HeuristicLab.MainForm { … … 162 160 163 161 private static void CheckForContentType(Type contentType) { 164 162 if (!typeof(IContent).IsAssignableFrom(contentType)) 165 163 throw new ArgumentException("DefaultViews are only specified for types of IContent and not for " + contentType + "."); 166 164 } -
trunk/sources/HeuristicLab.MainForm/3.3/MenuSeparatorItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 27 23 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/PositionableUserInterfaceItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using System.Linq; 25 using System.Text;26 24 27 25 namespace HeuristicLab.MainForm { … … 31 29 public virtual IEnumerable<string> Structure { 32 30 get { return Enumerable.Empty<string>(); } 33 } 31 } 34 32 } 35 33 } -
trunk/sources/HeuristicLab.MainForm/3.3/ToolBarSeparatorItem.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 27 23 namespace HeuristicLab.MainForm { 28 public abstract class ToolBarSeparatorItem : PositionableUserInterfaceItem, IToolBarSeparatorItem {24 public abstract class ToolBarSeparatorItem : PositionableUserInterfaceItem, IToolBarSeparatorItem { 29 25 } 30 26 } -
trunk/sources/HeuristicLab.MainForm/3.3/TypeExtension.cs
r3437 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using System.Diagnostics;27 25 28 26 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/ViewAttribute.cs
r3437 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using System.Reflection; 27 24 -
trunk/sources/HeuristicLab.MainForm/3.3/ViewEventArgs.cs
r3437 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 27 24 namespace HeuristicLab.MainForm { -
trunk/sources/HeuristicLab.MainForm/3.3/ViewShownEventArgs.cs
r3437 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 27 23 namespace HeuristicLab.MainForm { … … 33 29 34 30 private bool firstTimeShown; 35 public bool 31 public bool FirstTimeShown { 36 32 get { return this.firstTimeShown; } 37 33 }
Note: See TracChangeset
for help on using the changeset viewer.