Skip to content

Commit

Permalink
added Xtrareports 2012.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenVandezande committed Apr 28, 2013
1 parent f9cf50f commit e2d8dbc
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 0 deletions.
54 changes: 54 additions & 0 deletions Echoes/Reports/XtraReports2012.2/source/XtraReport.Designer.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
namespace $rootnamespace$;

interface

type
$safeitemrootname$ = public partial class
/// <summary>
/// Required designer variable.
/// </summary>
protected
method Dispose(disposing: System.Boolean); override;
{$REGION Windows Form Designer generated fields}
private
var components: System.ComponentModel.IContainer := nil;
Detail: DevExpress.XtraReports.UI.DetailBand;
TopMargin: DevExpress.XtraReports.UI.TopMarginBand;
BottomMargin: DevExpress.XtraReports.UI.BottomMarginBand;
method InitializeComponent;
{$endregion}
end;

implementation

/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
method $safeitemrootname$.Dispose(disposing: System.Boolean);
begin
if (disposing) and ((components <> nil)) then begin
components.Dispose()
end;
inherited Dispose(disposing)
end;

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
method $safeitemrootname$.InitializeComponent;
begin
self.components := new System.ComponentModel.Container();
self.Detail := new DevExpress.XtraReports.UI.DetailBand();
self.TopMargin := new DevExpress.XtraReports.UI.TopMarginBand();
self.BottomMargin := new DevExpress.XtraReports.UI.BottomMarginBand();
((self) as System.ComponentModel.ISupportInitialize).BeginInit();
self.TopMargin.Height := 100;
self.BottomMargin.Height := 100;
self.Name := '$safeitemrootname$';
self.Bands.AddRange(array of DevExpress.XtraReports.UI.Band([self.Detail, self.TopMargin, self.BottomMargin]));
((self) as System.ComponentModel.ISupportInitialize).EndInit()
end;

end.
25 changes: 25 additions & 0 deletions Echoes/Reports/XtraReports2012.2/source/XtraReport.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
namespace $rootnamespace$;

interface

uses
System,
System.Drawing,
System.Collections,
System.ComponentModel,
DevExpress.XtraReports.UI;

type
$safeitemrootname$ = public partial class(DevExpress.XtraReports.UI.XtraReport)
public
constructor;
end;

implementation

constructor $safeitemrootname$;
begin
InitializeComponent()
end;

end.
46 changes: 46 additions & 0 deletions Echoes/Reports/XtraReports2012.2/source/XtraReport.vstemplate
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<VSTemplate Version="2.0.0" Type="Item" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>XtraReport Class v12.1</Name>
<Description>A class for creating reports using the visual designer</Description>
<Icon>newreport.ico</Icon>
<ProjectType>Oxygene</ProjectType>
<SortOrder>40</SortOrder>
<DefaultName>XtraReport.pas</DefaultName>
</TemplateData>
<TemplateContent>
<References>
<Reference>
<Assembly>System</Assembly>
</Reference>
<Reference>
<Assembly>System.Drawing</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.Data.v12.2</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.Utils.v12.2</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.Charts.v12.2.Core</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.XtraCharts.v12.2</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.XtraPivotGrid.v12.2</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.XtraReports.v12.2</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.XtraRichEdit.v12.2</Assembly>
</Reference>
<Reference>
<Assembly>DevExpress.RichEdit.v12.2.Core</Assembly>
</Reference>
</References>
<ProjectItem ReplaceParameters="true" SubType="Component">XtraReport.pas</ProjectItem>
<ProjectItem ReplaceParameters="true">XtraReport.Designer.pas</ProjectItem>
</TemplateContent>
</VSTemplate>
Binary file not shown.

0 comments on commit e2d8dbc

Please sign in to comment.