Index: src/Common/DelftTools.Controls.Swf/Charting/ChartView.cs
===================================================================
diff -u -r910cccc26d73c3fe1828c6f1f10e44fbe8fa130a -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Controls.Swf/Charting/ChartView.cs (.../ChartView.cs) (revision 910cccc26d73c3fe1828c6f1f10e44fbe8fa130a)
+++ src/Common/DelftTools.Controls.Swf/Charting/ChartView.cs (.../ChartView.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -208,16 +208,6 @@
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public ChartViewZoom Zoom
- {
- get
- {
- return new ChartViewZoom(teeChart.Zoom);
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public ChartCoordinateService ChartCoordinateService
{
get
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/DelftTools.Controls.Swf/Charting/ChartViewZoom.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Common/DelftTools.Controls.Swf/Charting/IChartView.cs
===================================================================
diff -u -r341078d82fcf9051b233068ad0172940aa71cff5 -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Controls.Swf/Charting/IChartView.cs (.../IChartView.cs) (revision 341078d82fcf9051b233068ad0172940aa71cff5)
+++ src/Common/DelftTools.Controls.Swf/Charting/IChartView.cs (.../IChartView.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -43,11 +43,6 @@
///
IChart Chart { get; set; }
- ///
- /// Zoom and Pan move to chart or tools?
- ///
- ChartViewZoom Zoom { get; }
-
bool AllowPanning { get; set; }
///
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/DelftTools.Controls.Swf/DataEditorGenerator/FromType/HideAttribute.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Common/DelftTools.Controls.Swf/DelftTools.Controls.Swf.csproj
===================================================================
diff -u -r55748a3add7607a81a8116d2d249787df907dab5 -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Controls.Swf/DelftTools.Controls.Swf.csproj (.../DelftTools.Controls.Swf.csproj) (revision 55748a3add7607a81a8116d2d249787df907dab5)
+++ src/Common/DelftTools.Controls.Swf/DelftTools.Controls.Swf.csproj (.../DelftTools.Controls.Swf.csproj) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -146,7 +146,6 @@
ChartView.cs
-
@@ -262,7 +261,6 @@
-
Component
Index: src/Common/DelftTools.Controls.Swf/HtmlPageView.cs
===================================================================
diff -u -re82644a65e43b4cfd6c00ea98b2592b2419d0500 -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Controls.Swf/HtmlPageView.cs (.../HtmlPageView.cs) (revision e82644a65e43b4cfd6c00ea98b2592b2419d0500)
+++ src/Common/DelftTools.Controls.Swf/HtmlPageView.cs (.../HtmlPageView.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -3,17 +3,14 @@
using System.Drawing;
using System.Windows.Forms;
using DelftTools.Utils;
-using log4net;
namespace DelftTools.Controls.Swf
{
///
/// Control that shows html page defined by Web link.
///
- public partial class HtmlPageView : WebBrowser, IView
+ public class HtmlPageView : WebBrowser, IView
{
- private static readonly ILog log = LogManager.GetLogger(typeof(HtmlPageView));
-
private Url url;
///
@@ -24,18 +21,6 @@
ScriptErrorsSuppressed = true;
}
- public new Url Url
- {
- get
- {
- return (Url) Data;
- }
- set
- {
- Data = value;
- }
- }
-
///
/// Loads the html page at the specified url.
///
@@ -54,21 +39,6 @@
}
}
- public void NextPage()
- {
- GoForward();
- }
-
- public void PreviousPage()
- {
- GoBack();
- }
-
- public void HomePage()
- {
- GoHome();
- }
-
~HtmlPageView()
{
DisableEventListeners();
Index: src/Common/DelftTools.Controls/ICommand.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Controls/ICommand.cs (.../ICommand.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Controls/ICommand.cs (.../ICommand.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -1,5 +1,3 @@
-using System.Drawing;
-
namespace DelftTools.Controls
{
///
@@ -8,21 +6,11 @@
public interface ICommand
{
///
- /// Name of the Command. This might show up in the toolbar button.
- ///
- string Name { get; }
-
- ///
/// Commands can be disabled if they cannot be executed.
///
bool Enabled { get; }
///
- /// Image displayed commandtext in interface
- ///
- Image Image { set; get; }
-
- ///
/// Commands can checked if they represent a (boolean) state.
/// HACK: command can't be checked, button associated with command can be checked! Find a better design.
///
Index: src/Common/DelftTools.Shell.Core/Dao/DataAccessListenerBase.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Shell.Core/Dao/DataAccessListenerBase.cs (.../DataAccessListenerBase.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/DelftTools.Shell.Core/Dao/DataAccessListenerBase.cs (.../DataAccessListenerBase.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -3,35 +3,7 @@
public abstract class DataAccessListenerBase : IDataAccessListener
{
public virtual IProjectRepository ProjectRepository { get; set; }
- public abstract object Clone();
- #region Other
-
- public virtual void OnPreLoad(object entity, object[] loadedState, string[] propertyNames) {}
-
- public virtual void OnPostLoad(object entity, object[] state, string[] propertyNames) {}
-
- public virtual bool OnPreUpdate(object entity, object[] state, string[] propertyNames)
- {
- return false;
- }
-
- public virtual bool OnPreInsert(object entity, object[] state, string[] propertyNames)
- {
- return false;
- }
-
- public virtual void OnPostUpdate(object entity, object[] state, string[] propertyNames) {}
-
- public virtual void OnPostInsert(object entity, object[] state, string[] propertyNames) {}
-
- public virtual bool OnPreDelete(object entity, object[] deletedState, string[] propertyNames)
- {
- return false;
- }
-
- public virtual void OnPostDelete(object entity, object[] deletedState, string[] propertyNames) {}
-
- #endregion
+ public abstract object Clone();
}
}
\ No newline at end of file
Index: src/Common/DelftTools.Utils/Collections/Generic/EnumerableList.cs
===================================================================
diff -u -rfbe5d1ac043ae74461b82b0ab71c5388bfbbc58b -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Utils/Collections/Generic/EnumerableList.cs (.../EnumerableList.cs) (revision fbe5d1ac043ae74461b82b0ab71c5388bfbbc58b)
+++ src/Common/DelftTools.Utils/Collections/Generic/EnumerableList.cs (.../EnumerableList.cs) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -11,7 +11,7 @@
/// If _collectionChangeSource is not set, Count will always be processed by Enumerable.
///
///
- public class EnumerableList : IEnumerableList, IEnumerableListCache, INotifyPropertyChange
+ public class EnumerableList : IEnumerableList, INotifyPropertyChange
{
public event PropertyChangedEventHandler PropertyChanged;
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/DelftTools.Utils/Collections/Generic/IEnumerableListCache.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Common/DelftTools.Utils/DelftTools.Utils.csproj
===================================================================
diff -u -r7ed651cfe3a60d98c0b05e5a76adfed65c49b7d6 -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/DelftTools.Utils/DelftTools.Utils.csproj (.../DelftTools.Utils.csproj) (revision 7ed651cfe3a60d98c0b05e5a76adfed65c49b7d6)
+++ src/Common/DelftTools.Utils/DelftTools.Utils.csproj (.../DelftTools.Utils.csproj) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -178,7 +178,6 @@
-
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/IO/GeoTools/ShapefileWriter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Index/Sweepline/SweepLineIndex.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Common/NetTopologySuite/NetTopologySuite.csproj
===================================================================
diff -u -r7ed651cfe3a60d98c0b05e5a76adfed65c49b7d6 -rb2f8d42a10dc057d13f9004c2361e2c90f8b15a3
--- src/Common/NetTopologySuite/NetTopologySuite.csproj (.../NetTopologySuite.csproj) (revision 7ed651cfe3a60d98c0b05e5a76adfed65c49b7d6)
+++ src/Common/NetTopologySuite/NetTopologySuite.csproj (.../NetTopologySuite.csproj) (revision b2f8d42a10dc057d13f9004c2361e2c90f8b15a3)
@@ -200,7 +200,6 @@
-
@@ -222,7 +221,6 @@
-
@@ -256,7 +254,6 @@
-
@@ -332,10 +329,8 @@
-
-
@@ -347,7 +342,6 @@
-
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Noding/OrientedCoordinateArray.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Simplify/DouglasPeuckerLineSimplifier.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Simplify/TaggedLinesSimplifier.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag b2f8d42a10dc057d13f9004c2361e2c90f8b15a3 refers to a dead (removed) revision in file `src/Common/NetTopologySuite/Triangulate/QuadEdge/ITraversalVisitor.cs'.
Fisheye: No comparison available. Pass `N' to diff?