Browse Source

Cleanup

reports
Peter Forstmeier 13 years ago
parent
commit
39957473aa
  1. 1
      src/AddIns/Misc/Reporting/ICSharpCode.Reporting/ICSharpCode.Reporting.csproj
  2. 8
      src/AddIns/Misc/Reporting/ICSharpCode.Reporting/Src/Interfaces/IPrintableObject.cs
  3. 2
      src/AddIns/Misc/Reporting/ICSharpCode.Reporting/Src/Interfaces/IReportContainer.cs
  4. 40
      src/AddIns/Misc/Reporting/ICSharpCode.Reporting/Src/Items/ReportObject.cs

1
src/AddIns/Misc/Reporting/ICSharpCode.Reporting/ICSharpCode.Reporting.csproj

@ -79,7 +79,6 @@ @@ -79,7 +79,6 @@
<Compile Include="Src\Items\BaseTextItem.cs" />
<Compile Include="Src\Items\PrintableItem.cs" />
<Compile Include="Src\Items\ReportContainer.cs" />
<Compile Include="Src\Items\ReportObject.cs" />
<Compile Include="Src\Items\ReportModel.cs" />
<Compile Include="Src\Items\ReportSettings.cs" />
<Compile Include="Src\PageBuilder\BasePageBuilder.cs" />

8
src/AddIns/Misc/Reporting/ICSharpCode.Reporting/Src/Interfaces/IPrintableObject.cs

@ -15,18 +15,14 @@ namespace ICSharpCode.Reporting.Interfaces @@ -15,18 +15,14 @@ namespace ICSharpCode.Reporting.Interfaces
/// <summary>
/// Description of IPrintObject.
/// </summary>
public interface IReportObject
{
public interface IReportObject {
string Name{get;set;}
Size Size {get;set;}
Point Location {get;set;}
}
public interface IPrintableObject {
string Name{get;set;}
Size Size {get;set;}
Point Location {get;set;}
public interface IPrintableObject:IReportObject {
IExportColumn CreateExportColumn();
}

2
src/AddIns/Misc/Reporting/ICSharpCode.Reporting/Src/Interfaces/IReportContainer.cs

@ -19,7 +19,5 @@ namespace ICSharpCode.Reporting.Interfaces @@ -19,7 +19,5 @@ namespace ICSharpCode.Reporting.Interfaces
public interface IReportContainer :IPrintableObject
{
List<IPrintableObject> Items {get;}
// IExportContainer CreateExportColumn();
// IExportColumn CreateExportColumn();
}
}

40
src/AddIns/Misc/Reporting/ICSharpCode.Reporting/Src/Items/ReportObject.cs

@ -1,40 +0,0 @@ @@ -1,40 +0,0 @@
/*
* Created by SharpDevelop.
* User: Peter Forstmeier
* Date: 06.04.2013
* Time: 20:15
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Drawing;
using ICSharpCode.Reporting.Interfaces;
using ICSharpCode.Reporting.Interfaces.Export;
namespace ICSharpCode.Reporting.Items
{
/// <summary>
/// Description of ReportItem.
/// </summary>
/*
public class ReportObject : IReportObject
{
public ReportObject()
{
}
public string Name { get; set; }
public Point Location { get; set; }
public Size Size { get; set; }
}
*/
}
Loading…
Cancel
Save